Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps wagtail from 6.2 to 7.0.2.

Release notes

Sourced from wagtail's releases.

7.0.2

  • Fix: Prevent error when restoring scroll position for cross-domain preview iframe (Sage Abdullah)
  • Fix: Remove ngram parser on MySQL that prevented autocomplete search from returning results (Vince Salvino)
  • Fix: Ensure the editing of translation alias pages correctly shows links to the source page if the alias was created from a draft (Dan Braghis)

7.0.1

  • Fix: Fix type hints for register_filter_adapter_class parameters (Sébastien Corbin)
  • Fix: Use correct URL when redirecting back to the listing after filtering and deleting form submissions (Sage Abdullah)
  • Fix: Fix broken migration when ListBlock is defined with a child_block kwarg (Matt Westcott)
  • Fix: Fix saving of empty values in EmbedBlock (Matt Westcott)
  • Fix: Sanitize request data when logging method not allowed (Jake Howard)
  • Docs: Use tuple instead of set in UniqueConstraint examples for a custom rendition model to avoid spurious migrations (Alec Baron)
  • Docs: Document how to turn off StreamField block previews (Shlomo Markowitz)
  • Maintenance: Use utf8mb4 charset and collation for MySQL test database (Sage Abdullah)

7.0 LTS

  • Add formal support for Django 5.2 (Matt Westcott)
  • Allow validation of required fields to be deferred on saving drafts (Matt Westcott, Sage Abdullah)
  • Add WAGTAIL_ prefix to Wagtail-specific tag settings (Aayushman Singh)
  • Implement normalize on TypedTableBlock to assist with setting default and preview_value (Sage Abdullah)
  • Apply normalization when modifying a StreamBlock's value to assist with programmatic changes to StreamField (Matt Westcott)
  • Allow a custom image rendition model to define its unique constraint with models.UniqueConstraint instead of unique_together (Oliver Parker, Cynthia Kiser, Sage Abdullah)
  • Default to the standard tokenizer on Elasticsearch, to correctly handle numbers as tokens (Matt Westcott)
  • Add color-scheme meta tag to Wagtail admin (Ashish Nagmoti)
  • Add the ability to set the default privacy restriction for new pages using get_default_privacy_setting (Shlomo Markowitz)
  • Improve performance of batch purging page urls in the frontend cache, avoiding n+1 query issues (Andy Babic)
  • Add better support and documentation for overriding or extending icons used in the in the userbar (Sébastien Corbin)
  • List the comments action, if comments are enabled, within the admin keyboard shortcuts dialog (Dhruvi Patel)
  • Add better support and documentation for overriding the default field widgets used within form pages (Baptiste Mispelon)
  • Allow workflow tasks to specify a template for the action modal via get_template_for_action (Sage Abdullah)
  • Change 'Publish' button label to 'Schedule to publish' if go-live schedule is set (Sage Abdullah)
  • Exclude snippets that have their own menu items from the "Snippets" menu (Andy Chosak, Matt Westcott)
  • Introduce new designs for listings and chooser pagination (except page chooser) (Jordan Teichmann, Sage Abdullah)
  • Add default "Locale" column to listings and choosers of translatable models (Dan Braghis, Sage Abdullah)
  • Apply current content's locale in choosers by default and add the ability to clear the locale filter (Dan Braghis)
  • Hide add locale button when no more languages are available (Dan Braghis)
  • Allow customizing InspectView field display value via methods on the view (Dan Braghis)
  • Make rendering of active listing filters extensible, to support additional filter types (Sage Abdullah)
  • Fix: Take preferred language into account for translatable strings in client-side code (Bernhard Bliem, Sage Abdullah)
  • Fix: Do not show the content type column as sortable when searching pages (Srishti Jaiswal, Sage Abdullah)
  • Fix: Support simple subqueries for in and exact lookup on Elasticsearch (Sage Abdullah)
  • Fix: Force preview panel scroll behavior to instant to avoid flickering (Sage Abdullah)
  • Fix: Support translating with the preferred language for rich text formatting labels (Bernhard Bliem, Sage Abdullah)
  • Fix: Make "Actions" label translatable within the rich text toolbar (Bernhard Bliem, Sage Abdullah)
  • Fix: Fix incorrect "Views (past week)" heading on promoted search results listing (Baptiste Mispelon)
  • Fix: Ensure InlinePanel will be correctly ordered after the first save when min_num is used (Elhussein Almasri, Joel William)
  • Fix: Avoid deprecation warnings about URLField assume_scheme on Django 5.x (Sage Abdullah)
  • Fix: Fix setup.cfg syntax for setuptools v78 (Sage Abdullah)
  • Fix: Ensure ImproperlyConfigured is thrown from db_field on unbound FieldPanels as intended (Matt Westcott)
  • Fix: Refine the positioning of the add comment button next to select, radio, checkbox fields and between field row columns (Srishti Jaiswal)

... (truncated)

Changelog

Sourced from wagtail's changelog.

7.0.2 (24.07.2025)


 * Fix: Prevent error when restoring scroll position for cross-domain preview iframe (Sage Abdullah)
 * Fix: Remove ngram parser on MySQL that prevented autocomplete search from returning results (Vince Salvino)
 * Fix: Ensure the editing of translation alias pages correctly shows links to the source page if the alias was created from a draft (Dan Braghis)

7.0.1 (12.06.2025)

  • Fix: Fix type hints for register_filter_adapter_class parameters (Sébastien Corbin)
  • Fix: Use correct URL when redirecting back to the listing after filtering and deleting form submissions (Sage Abdullah)
  • Fix: Fix broken migration when ListBlock is defined with a child_block kwarg (Matt Westcott)
  • Fix: Fix saving of empty values in EmbedBlock (Matt Westcott)
  • Fix: Sanitize request data when logging method not allowed (Jake Howard)
  • Docs: Use tuple instead of set in UniqueConstraint examples for a custom rendition model to avoid spurious migrations (Alec Baron)
  • Docs: Document how to turn off StreamField block previews (Shlomo Markowitz)
  • Maintenance: Use utf8mb4 charset and collation for MySQL test database (Sage Abdullah)

7.0 LTS (06.05.2025)


 * Add formal support for Django 5.2 (Matt Westcott)
 * Allow validation of required fields to be deferred on saving drafts (Matt Westcott, Sage Abdullah)
 * Add `WAGTAIL_` prefix to Wagtail-specific tag settings (Aayushman Singh)
 * Implement `normalize` on `TypedTableBlock` to assist with setting `default` and `preview_value` (Sage Abdullah)
 * Apply normalization when modifying a `StreamBlock`'s value to assist with programmatic changes to `StreamField` (Matt Westcott)
 * Allow a custom image rendition model to define its unique constraint with `models.UniqueConstraint` instead of `unique_together` (Oliver Parker, Cynthia Kiser, Sage Abdullah)
 * Default to the `standard` tokenizer on Elasticsearch, to correctly handle numbers as tokens (Matt Westcott)
 * Add color-scheme meta tag to Wagtail admin (Ashish Nagmoti)
 * Add the ability to set the default privacy restriction for new pages using `get_default_privacy_setting` (Shlomo Markowitz)
 * Improve performance of batch purging page urls in the frontend cache, avoiding n+1 query issues (Andy Babic)
 * Add better support and documentation for overriding or extending icons used in the in the userbar (Sébastien Corbin)
 * List the comments action, if comments are enabled, within the admin keyboard shortcuts dialog (Dhruvi Patel)
 * Add better support and documentation for overriding the default field widgets used within form pages (Baptiste Mispelon)
 * Allow workflow tasks to specify a template for the action modal via `get_template_for_action` (Sage Abdullah)
 * Change 'Publish' button label to 'Schedule to publish' if go-live schedule is set (Sage Abdullah)
 * Exclude snippets that have their own menu items from the "Snippets" menu (Andy Chosak, Matt Westcott)
 * Introduce new designs for listings and chooser pagination (except page chooser) (Jordan Teichmann, Sage Abdullah)
 * Add default "Locale" column to listings and choosers of translatable models (Dan Braghis, Sage Abdullah)
 * Apply current content's locale in choosers by default and add the ability to clear the locale filter (Dan Braghis)
 * Hide add locale button when no more languages are available (Dan Braghis)
 * Allow customizing `InspectView` field display value via methods on the view (Dan Braghis)
 * Make rendering of active listing filters extensible, to support additional filter types (Sage Abdullah)
 * Fix: Take preferred language into account for translatable strings in client-side code (Bernhard Bliem, Sage Abdullah)
 * Fix: Do not show the content type column as sortable when searching pages (Srishti Jaiswal, Sage Abdullah)
 * Fix: Support simple subqueries for `in` and `exact` lookup on Elasticsearch (Sage Abdullah)
 * Fix: Force preview panel scroll behavior to instant to avoid flickering (Sage Abdullah)
 * Fix: Support translating with the preferred language for rich text formatting labels (Bernhard Bliem, Sage Abdullah)
</tr></table> 

... (truncated)

Commits

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 6.2 to 7.0.2.
- [Release notes](https://github.com/wagtail/wagtail/releases)
- [Changelog](https://github.com/wagtail/wagtail/blob/main/CHANGELOG.txt)
- [Commits](wagtail/wagtail@v6.2...v7.0.2)

---
updated-dependencies:
- dependency-name: wagtail
  dependency-version: 7.0.2
  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 Jul 24, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 5, 2025

Superseded by #2244.

@dependabot dependabot bot closed this Aug 5, 2025
@dependabot dependabot bot deleted the dependabot/pip/wagtail-7.0.2 branch August 5, 2025 18:21
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