Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps wagtail from 6.2 to 7.1.2.

Release notes

Sourced from wagtail's releases.

7.1.2

  • Fix: Allow label_format to be set to an empty string to hide the block summary label (Sage Abdullah)
  • Fix: Better support userbar loading on multi-site through site hosts (Sage Abdullah)
  • Fix: Prevent error on custom generic create and edit views without a header icon (Sage Abdullah)
  • Fix: Use the correct origin when computing content metrics via cross-origin communications (Sage Abdullah)
  • Docs: Link to django-treebeard's Node.move() in Page.move() documentation (Baptiste Mispelon)

7.1.1

  • Fix: Ensure the add comment keyboard shortcut is disabled when keyboard shortcuts are disabled in user preferences (Dhruvi Patel)
  • Fix: Fix crash when the Wagtail API is accessed without rest_framework installed (Vijay Raj)
  • Fix: Fix failure of FieldPanel and TitleFieldPanel with read_only=True (Sage Abdullah)
  • Fix: Fix broken Javascript interactions on nested inline panels (Matt Westcott, Sage Abdullah)
  • Fix: Fix rendering of StructBlock with custom form templates (Sage Abdullah)
  • Fix: Prevent crash when previewing a form page with an empty field type (Sage Abdullah)
  • Docs: Fix cross-reference links to the TypeDoc-generated docs (Sage Abdullah)
  • Docs: Refine readthedocs' search indexing for releases and client-side code (Sage Abdullah)
  • Docs: Add section about closing stale pull requests to the issue tracking documentation (Thibaud Colas, Sage Abdullah, LB (Ben) Johnston)
  • Docs: Add backporting policy for UI and accessibility fixes with updated "active support" and "security support" definitions (Thibaud Colas, Sage Abdullah, Scott Cranfill)

7.1

  • Allow configuring permissions for site settings on a per-site basis (Matt Westcott)
  • Add iHeart oEmbed provider (Storm Heg)
  • Add locale-aware NumberColumn to display numbers in universal listings (Baptiste Mispelon)
  • Add ability for the header breadcrumbs to save their open/closed state across navigation & refresh (Srishti Jaiswal)
  • Update Twitter oEmbed provider to recognize x.com links (manu)
  • Render listing buttons as template components (Sage Abdullah)
  • Define default GenericRelations for RevisionMixin and WorkflowMixin, to avoid issues with deletion cascades (Sage Abdullah)
  • Document and relocate the init_new_page signal (Maciek Baron)
  • Use requests to access oEmbed endpoints, for more robust SSL certificate handling (Matt Westcott)
  • Ensure that bulk deletion views respect protected foreign keys (Sage Abdullah)
  • Add minimum length validation for RichTextBlock and RichTextField (Alec Baron)
  • Allow SnippetChooserBlock's icon to take precedence over SnippetViewSet.icon (Matt Westcott)
  • Allow searching the users index on custom fields (Paul Craciunoiu, Sage Abdullah)
  • Support preserve-svg in Jinja2 image tags (Vishesh Garg)
  • Recognize preserve-svg as a filter when calling Image.get_rendition directly (Richard Allen)
  • Add support for preserve-svg for Image.get_renditions, picture, and srcset_image tags (Matt Westcott)
  • Include TypedTableBlock content when indexing for search (Charan T M)
  • Preserve query parameters when redirecting from the API find view to the detail view (Andrew Hosgood)
  • Add 'Edit' button to success message after copying page (Dhruvi Patel)
  • Restrict file dialog in multiple image uploader to the allowed image file types (Mustopha Mubarak O)
  • Raise clear error when non-StreamBlock is used as top-level block in StreamField (Clifford Gama)
  • Refactor user bar rendering to better support headless websites (Sage Abdullah)
  • Add type-to-confirm step when deleting large numbers of pages through bulk actions (Rachel Smith)
  • Add NoFutureDateValidator to validate against dates in the future (Talha Rizwan)
  • Extract separate background_position_x and background_position_y properties from AbstractRendition.background_position_style (Chiemezuo Akujobi)
  • Add support for translated string concatenation in the locale selector when switching between a model's language in the admin (Matt Westcott, Ellie Walsh-O'Neill)
  • Switch to check / cross icons for users’ active state in users listing (Sage Abdullah)
  • Add a keyboard shortcut to easily toggle the visibility of the minimap side panel (Dhruvi Patel)
  • Add a new user profile setting to disable Wagtail’s custom keyboard shortcuts (Dhruvi Patel)
  • Add API for extracting preview page content (Sage Abdullah)

... (truncated)

Changelog

Sourced from wagtail's changelog.

7.1.2 (23.10.2025)


 * Fix: Allow `label_format` to be set to an empty string to hide the block summary label (Sage Abdullah)
 * Fix: Better support userbar loading on multi-site through site hosts (Sage Abdullah)
 * Fix: Prevent error on custom generic create and edit views without a header icon (Sage Abdullah)
 * Fix: Use the correct origin when computing content metrics via cross-origin communications (Sage Abdullah)
 * Docs: Link to django-treebeard's `Node.move()` in `Page.move()` documentation (Baptiste Mispelon)

7.1.1 (28.08.2025)

  • Fix: Ensure the add comment keyboard shortcut is disabled when keyboard shortcuts are disabled in user preferences (Dhruvi Patel)
  • Fix: Fix crash when the Wagtail API is accessed without rest_framework installed (Vijay Raj)
  • Fix: Fix failure of FieldPanel and TitleFieldPanel with read_only=True (Sage Abdullah)
  • Fix: Fix broken Javascript interactions on nested inline panels (Matt Westcott, Sage Abdullah)
  • Fix: Fix rendering of StructBlock with custom form templates (Sage Abdullah)
  • Fix: Prevent crash when previewing a form page with an empty field type (Sage Abdullah)
  • Docs: Fix cross-reference links to the TypeDoc-generated docs (Sage Abdullah)
  • Docs: Refine readthedocs' search indexing for releases and client-side code (Sage Abdullah)
  • Docs: Add section about closing stale pull requests to the issue tracking documentation (Thibaud Colas, Sage Abdullah, LB (Ben) Johnston)
  • Docs: Add backporting policy for UI and accessibility fixes with updated "active support" and "security support" definitions (Thibaud Colas, Sage Abdullah, Scott Cranfill)

7.1 (04.08.2025)


 * Allow configuring permissions for site settings on a per-site basis (Matt Westcott)
 * Add iHeart oEmbed provider (Storm Heg)
 * Add locale-aware `NumberColumn` to display numbers in universal listings (Baptiste Mispelon)
 * Add ability for the header breadcrumbs to save their open/closed state across navigation & refresh (Srishti Jaiswal)
 * Update Twitter oEmbed provider to recognize x.com links (manu)
 * Render listing buttons as template components (Sage Abdullah)
 * Define default `GenericRelations` for `RevisionMixin` and `WorkflowMixin`, to avoid issues with deletion cascades (Sage Abdullah)
 * Document and relocate the `init_new_page` signal (Maciek Baron)
 * Use `requests` to access oEmbed endpoints, for more robust SSL certificate handling (Matt Westcott)
 * Ensure that bulk deletion views respect protected foreign keys (Sage Abdullah)
 * Add minimum length validation for `RichTextBlock` and `RichTextField` (Alec Baron)
 * Allow `SnippetChooserBlock`'s `icon` to take precedence over `SnippetViewSet.icon` (Matt Westcott)
 * Allow searching the users index on custom fields (Paul Craciunoiu, Sage Abdullah)
 * Support `preserve-svg` in Jinja2 image tags (Vishesh Garg)
 * Recognize `preserve-svg` as a filter when calling `Image.get_rendition` directly (Richard Allen)
 * Add support for `preserve-svg` for `Image.get_renditions`, picture, and srcset_image tags (Matt Westcott)
 * Include `TypedTableBlock` content when indexing for search (Charan T M)
 * Preserve query parameters when redirecting from the API `find` view to the `detail` view (Andrew Hosgood)
 * Add 'Edit' button to success message after copying page (Dhruvi Patel)
 * Restrict file dialog in multiple image uploader to the allowed image file types (Mustopha Mubarak O)
 * Raise clear error when non-StreamBlock is used as top-level block in StreamField (Clifford Gama)
 * Refactor user bar rendering to better support headless websites (Sage Abdullah)
 * Add type-to-confirm step when deleting large numbers of pages through bulk actions (Rachel Smith)
</tr></table> 

... (truncated)

Commits
  • 5ae0ce1 Fill in release date for 7.1.2
  • 268f93f Version bump to 7.1.2
  • 9a2e59d Fix content metrics integration when the admin is accessed from a different h...
  • f54dc9f Release notes for #13436
  • 5d469d7 Prevent error on custom generic create and edit views without a header_icon
  • 3f1036b Add release notes for v7.0.4
  • 54903dd Move incorrectly-placed 7.1.2 changelog entry
  • a159c79 Release notes #14415
  • 19b4039 Fall back to WAGTAILADMIN_BASE_URL when building URLs in the userbar if reque...
  • 1838912 Use the request's original host as the userbar origin before falling back to ...
  • Additional commits viewable in compare view

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.1.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.1.2)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Oct 24, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 5, 2025

Superseded by #2326.

@dependabot dependabot bot closed this Nov 5, 2025
@dependabot dependabot bot deleted the dependabot/pip/wagtail-7.1.2 branch November 5, 2025 13:02
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.

1 participant