Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump wagtail from 4.0.4 to 6.4.1 #1541

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 24, 2025

Bumps wagtail from 4.0.4 to 6.4.1.

Release notes

Sourced from wagtail's releases.

6.4.1

  • Fix: Prevent error when filtering by locale and searching with Elasticsearch (Sage Abdullah)
  • Fix: Support searching none() querysets (Matt Westcott)
  • Fix: Correctly handle UUID primary keys when invoking background tasks (Matt Westcott)
  • Fix: Fix regression where nested sub-menu items would not be visible (Sage Abdullah)
  • Fix: Ensure the top of the minimap correctly adjusts when resizing the browser viewport (Thibaud Colas)
  • Fix: Remove obsolete SubqueryConstraint check in search backends, for provisional Django 5.2 compatibility (Sage Abdullah)
  • Fix: Add missing “Close” label to the upgrade notification dismiss button (Sage Abdullah)
  • Fix: Fix white text on white background in previews for sites that use color-scheme without a background-color (Sage Abdullah)
  • Docs: Fix typo in the headless documentation page (Mahmoud Nasser)
  • Docs: Fix typo in Page.get_route_paths docstring (Baptiste Mispelon)
  • Docs: Upgrade sphinx-wagtail-theme to v6.5.0 (Sage Abdullah)
  • Maintenance: Remove upper version boundary for django-filter (Dan Braghis)
  • Maintenance: Relax upper version boundaries for django-taggit and beautifulsoup4 (Matt Westcott)

6.4

  • Support for background tasks using django-tasks (Jake Howard)
  • Add search terms report (Noah van der Meer, Sage Abdullah)
  • Add the ability to apply basic Page QuerySet optimizations to specific() sub-queries using select_related & prefetch_related (Andy Babic)
  • Increase DATA_UPLOAD_MAX_NUMBER_FIELDS in project template (Matt Westcott)
  • Stop invalid Site hostname records from breaking preview (Matt Westcott)
  • Set sensible defaults for InlinePanel heading and label (Matt Westcott)
  • Limit tags autocompletion to 10 items and add delay to avoid performance issues with large number of matching tags (Aayushman Singh)
  • Add the ability to restrict what types of requests a Pages supports via allowed_http_methods (Andy Babic)
  • Allow plain strings in panel definitions as shorthand for FieldPanel / InlinePanel (Matt Westcott)
  • Only allow selection of valid new parents within the copy Page view (Mauro Soche)
  • Add on_serve_page hook to modify the serving chain of pages (Krystian Magdziarz, Dawid Bugajewski)
  • Add support for WAGTAIL_GRAVATAR_PROVIDER_URL URLs with query string parameters (Ayaan Qadri, Guilhem Saurel)
  • Add get_avatar_url hook to customise user avatars (James Harrington)
  • Set content security policy (CSP) headers to block embedded content when serving images and documents (Jake Howard, with thanks to Ali İltizar for the initial report)
  • Add page as a third parameter to the construct_wagtail_userbar hook (claudobahn)
  • Enable breadcrumbs in revisions compare view (Sage Abdullah)
  • Skip loading of unused JavaScript to speed up 404 page rendering (Sage Abdullah)
  • Replace l18n library with JavaScript Intl API for time zone options in Account view (Sage Abdullah)
  • Use explicit label for defaulting to server language in account settings (Sage Abdullah)
  • Add support for specifying an operator on Fuzzy queries (Tom Usher)
  • Remove support for Safari 15 (Thibaud Colas)
  • Populate the ImageBlock alt text from the image’s default alt text when selecting a new image (Matt Westcott)
  • Prevent main menu from re-rendering when clicking outside while the menu is closed (Sage Abdullah)
  • Fill in the ImageBlock alt text from the image’s default alt text when converting from ImageChooserBlock (Cynthia Kiser)
  • Make sure typing text at the bottom of the page editor always scrolls enough to keep the text into view (Jatin Bhardwaj)
  • Add StreamField and InlinePanel interfaces support for drag-and-drop reordering of items (Thibaud Colas, Sage Abdullah)
  • Add previews support for StreamField blocks inside the block picker (Sage Abdullah, Thibaud Colas)
  • Fix: Improve handling of translations for bulk page action confirmation messages (Matt Westcott)
  • Fix: Ensure custom rich text feature icons are correctly handled when provided as a list of SVG paths (Temidayo Azeez, Joel William, LB (Ben) Johnston)
  • Fix: Prevent error on lazily loading StreamField blocks after the stream has been modified (Stefan Hammer)
  • Fix: Fix sub-menus within the main menu cannot be closed on mobile (Bojan Mihelac)
  • Fix: Fix animation overflow transition when navigating through subpages in the sidebar page explorer (manu)
  • Fix: Ensure form builder supports custom admin form validation (John-Scott Atlakson, LB (Ben) Johnston)
  • Fix: Ensure form builder correctly checks for duplicate field names when using a custom related name (John-Scott Atlakson, LB (Ben) Johnston)

... (truncated)

Changelog

Sourced from wagtail's changelog.

6.4.1 (21.02.2025)


 * Fix: Prevent error when filtering by locale and searching with Elasticsearch (Sage Abdullah)
 * Fix: Support searching `none()` querysets (Matt Westcott)
 * Fix: Correctly handle UUID primary keys when invoking background tasks (Matt Westcott)
 * Fix: Fix regression where nested sub-menu items would not be visible (Sage Abdullah)
 * Fix: Ensure the top of the minimap correctly adjusts when resizing the browser viewport (Thibaud Colas)
 * Fix: Remove obsolete SubqueryConstraint check in search backends, for provisional Django 5.2 compatibility (Sage Abdullah)
 * Fix: Add missing “Close” label to the upgrade notification dismiss button (Sage Abdullah)
 * Fix: Fix white text on white background in previews for sites that use color-scheme without a background-color (Sage Abdullah)
 * Docs: Fix typo in the headless documentation page (Mahmoud Nasser)
 * Docs: Fix typo in `Page.get_route_paths` docstring (Baptiste Mispelon)
 * Docs: Upgrade sphinx-wagtail-theme to v6.5.0 (Sage Abdullah)
 * Maintenance: Remove upper version boundary for django-filter (Dan Braghis)
 * Maintenance: Relax upper version boundaries for django-taggit and beautifulsoup4 (Matt Westcott)

6.4 (03.02.2025)


 * Support for background tasks using `django-tasks` (Jake Howard)
 * Add search terms report (Noah van der Meer, Sage Abdullah)
 * Add the ability to apply basic Page QuerySet optimizations to `specific()` sub-queries using `select_related` & `prefetch_related` (Andy Babic)
 * Increase `DATA_UPLOAD_MAX_NUMBER_FIELDS` in project template (Matt Westcott)
 * Stop invalid Site hostname records from breaking preview (Matt Westcott)
 * Set sensible defaults for InlinePanel heading and label (Matt Westcott)
 * Limit tags autocompletion to 10 items and add delay to avoid performance issues with large number of matching tags (Aayushman Singh)
 * Add the ability to restrict what types of requests a Pages supports via `allowed_http_methods` (Andy Babic)
 * Allow plain strings in panel definitions as shorthand for `FieldPanel` / `InlinePanel` (Matt Westcott)
 * Only allow selection of valid new parents within the copy Page view (Mauro Soche)
 * Add `on_serve_page` hook to modify the serving chain of pages (Krystian Magdziarz, Dawid Bugajewski)
 * Add support for `WAGTAIL_GRAVATAR_PROVIDER_URL` URLs with query string parameters (Ayaan Qadri, Guilhem Saurel)
 * Add `get_avatar_url` hook to customise user avatars (James Harrington)
 * Set content security policy (CSP) headers to block embedded content when serving images and documents (Jake Howard, with thanks to Ali İltizar for the initial report)
 * Add `page` as a third parameter to the `construct_wagtail_userbar` hook (claudobahn)
 * Enable breadcrumbs in revisions compare view (Sage Abdullah)
 * Skip loading of unused JavaScript to speed up 404 page rendering (Sage Abdullah)
 * Replace l18n library with JavaScript Intl API for time zone options in Account view (Sage Abdullah)
 * Use explicit label for defaulting to server language in account settings (Sage Abdullah)
 * Add support for specifying an operator on `Fuzzy` queries (Tom Usher)
 * Remove support for Safari 15 (Thibaud Colas)
 * Populate the ImageBlock alt text from the image’s default alt text when selecting a new image (Matt Westcott)
 * Prevent main menu from re-rendering when clicking outside while the menu is closed (Sage Abdullah)
 * Fill in the ImageBlock alt text from the image’s default alt text when converting from ImageChooserBlock (Cynthia Kiser)
 * Make sure typing text at the bottom of the page editor always scrolls enough to keep the text into view (Jatin Bhardwaj)
 * Add StreamField and InlinePanel interfaces support for drag-and-drop reordering of items (Thibaud Colas, Sage Abdullah)
 * Add previews support for StreamField blocks inside the block picker (Sage Abdullah, Thibaud Colas)
 * Fix: Improve handling of translations for bulk page action confirmation messages (Matt Westcott)
 * Fix: Ensure custom rich text feature icons are correctly handled when provided as a list of SVG paths (Temidayo Azeez, Joel William, LB (Ben) Johnston)
</tr></table> 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>

<ul>
<li><a href="https://github.com/wagtail/wagtail/commit/4a46644b7b8cf93fb2f3e60e03cb99136427123d&quot;&gt;&lt;code&gt;4a46644&lt;/code&gt;&lt;/a> Fill in release date for 6.4.1</li>
<li><a href="https://github.com/wagtail/wagtail/commit/da281c398cf58237340fe3aace603e315d7e736b&quot;&gt;&lt;code&gt;da281c3&lt;/code&gt;&lt;/a> Version bump to 6.4.1</li>
<li><a href="https://github.com/wagtail/wagtail/commit/ad46c58b25940951bdb26925a2105ee5c13efcbb&quot;&gt;&lt;code&gt;ad46c58&lt;/code&gt;&lt;/a> Fetch new translations from Transifex</li>
<li><a href="https://github.com/wagtail/wagtail/commit/2ce320a4d22dc0c71ede3203ab91f01eb486a907&quot;&gt;&lt;code&gt;2ce320a&lt;/code&gt;&lt;/a> Release notes for <a href="https://redirect.github.com/wagtail/wagtail/issues/12782&quot;&gt;#12782&lt;/a&gt;&lt;/li>
<li><a href="https://github.com/wagtail/wagtail/commit/eadfe429f84c0f5fa1eebd72874c6627bcdccce6&quot;&gt;&lt;code&gt;eadfe42&lt;/code&gt;&lt;/a> Fix white text on white background in previews for sites that use color-schem...</li>
<li><a href="https://github.com/wagtail/wagtail/commit/60c5773f3c7bd8032090f49b5b0899f49b0f74c0&quot;&gt;&lt;code&gt;60c5773&lt;/code&gt;&lt;/a> Add release notes for <a href="https://redirect.github.com/wagtail/wagtail/issues/12903&quot;&gt;#12903&lt;/a&gt;&lt;/li>
<li><a href="https://github.com/wagtail/wagtail/commit/e45db970f7312484518ae6058e608c04858a0aea&quot;&gt;&lt;code&gt;e45db97&lt;/code&gt;&lt;/a> Add missing aria-label to upgrade banner dismiss button</li>
<li><a href="https://github.com/wagtail/wagtail/commit/8f2fc1dba20d55568e3d1f43449d8b280d63fed4&quot;&gt;&lt;code&gt;8f2fc1d&lt;/code&gt;&lt;/a> Release note for <a href="https://redirect.github.com/wagtail/wagtail/issues/12905&quot;&gt;#12905&lt;/a> in 6.4.1</li>
<li><a href="https://github.com/wagtail/wagtail/commit/807db9bef20155cc78485fed2aefb67e2094f7c1&quot;&gt;&lt;code&gt;807db9b&lt;/code&gt;&lt;/a> Fix typo in docstring</li>
<li><a href="https://github.com/wagtail/wagtail/commit/6dfb96d0b41753a38ba5880efd2a310eff4242ed&quot;&gt;&lt;code&gt;6dfb96d&lt;/code&gt;&lt;/a> Release note for <a href="https://redirect.github.com/wagtail/wagtail/issues/12907&quot;&gt;#12907&lt;/a> in 6.4.1</li>
<li>Additional commits viewable in <a href="https://github.com/wagtail/wagtail/compare/v4.0.4...v6.4.1&quot;&gt;compare view</a></li>
</ul>
</details>

<br />

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [wagtail](https://github.com/wagtail/wagtail) from 4.0.4 to 6.4.1.
- [Release notes](https://github.com/wagtail/wagtail/releases)
- [Changelog](https://github.com/wagtail/wagtail/blob/main/CHANGELOG.txt)
- [Commits](wagtail/wagtail@v4.0.4...v6.4.1)

---
updated-dependencies:
- dependency-name: wagtail
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Feb 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants