wagtail/docs/releases/6.3.md

72 wiersze
2.8 KiB
Markdown
Czysty Zwykły widok Historia

2024-07-22 12:23:02 +00:00
# Wagtail 6.3 release notes - IN DEVELOPMENT
_Unreleased_
```{contents}
---
local:
depth: 1
---
```
## What's new
2024-08-07 15:06:39 +00:00
### Django 5.1 support
This release adds formal support for Django 5.1.
2024-07-22 12:23:02 +00:00
### Other features
* Formalize support for MariaDB (Sage Abdullah, Daniel Black)
2024-07-22 16:21:58 +00:00
* Redirect to the last viewed listing page after deleting form submissions (Matthias Brück)
* Provide `getTextLabel` method on date / time StreamField blocks (Vaughn Dickson)
* Purge frontend cache when modifying redirects (Jake Howard)
2024-09-13 08:23:59 +00:00
* Migrate workflow history views to universal listings (Sage Abdullah)
2024-09-16 08:27:23 +00:00
* Refactor documents views to use universal designs (Sage Abdullah)
2024-09-16 19:27:12 +00:00
* Refactor images views to use universal designs (Sage Abdullah)
2024-09-16 13:23:59 +00:00
* Implement universal listings for workflow usage and page type usage views (Sage Abdullah)
2024-07-22 12:23:02 +00:00
### Bug fixes
2024-08-06 16:52:21 +00:00
* Prevent page type business rules from blocking reordering of pages (Andy Babic, Sage Abdullah)
2024-08-13 19:23:56 +00:00
* Improve layout of object permissions table (Sage Abdullah)
2024-08-21 13:46:59 +00:00
* Fix typo in aria-label attribute of page explorer navigation link (Sébastien Corbin)
* Reinstate transparency indicator on image chooser widgets (Sébastien Corbin)
2024-09-06 10:46:08 +00:00
* Remove table headers that have no text (Matt Westcott)
2024-09-12 18:18:12 +00:00
* Fix broken link to user search (Shlomo Markowitz)
2024-07-22 12:23:02 +00:00
### Documentation
2024-07-23 09:15:30 +00:00
* Upgrade Sphinx to 7.3 (Matt Westcott)
* Document how to [customize date/time format settings](wagtail_date_time_formats) (Vince Salvino)
* Create a new documentation section for [deployment](deployment_guide) and move `fly.io` deployment from the tutorial to this section (Vince Salvino)
2024-09-11 18:47:02 +00:00
* Clarify process for UserViewSet customisation (Sage Abdullah)
2024-07-23 09:15:30 +00:00
2024-07-22 12:23:02 +00:00
### Maintenance
2024-07-23 09:15:30 +00:00
* Removed support for Python 3.8 (Matt Westcott)
* Drop `pytz` dependency in favour of `zoneinfo.available_timezones` (Sage Abdullah)
* Relax `django-taggit` dependency to allow 6.0 (Matt Westcott)
2024-08-23 14:54:02 +00:00
* Improve page listing performance (Sage Abdullah)
* Phase out usage of `SECRET_KEY` in version and icon hashes (Jake Howard)
2024-08-27 13:13:47 +00:00
* Audit all use of localized and non-localized numbers in templates (Matt Westcott)
* Refactor StreamField `get_prep_value` for closer alignment with JSONField (Sage Abdullah)
2024-09-06 10:41:00 +00:00
* Move search implementation logic from generic `IndexView` to `BaseListingView` (Sage Abdullah)
2024-09-06 10:46:08 +00:00
* Upgrade Puppeteer integration tests for reliability (Matt Westcott)
2024-09-06 11:13:15 +00:00
* Restore ability to use `.in_bulk()` on specific querysets under Django 5.2a0 (Sage Abdullah)
* Add generated `test-media` to .gitignore (Shlomo Markowitz)
2024-07-22 12:23:02 +00:00
## Upgrade considerations - changes affecting all projects
## Upgrade considerations - deprecation of old functionality
2024-07-22 13:58:47 +00:00
### Removed support for Python 3.8
Python 3.8 is no longer supported as of this release; please upgrade to Python 3.9 or above before upgrading Wagtail.
2024-07-22 12:23:02 +00:00
## Upgrade considerations - changes affecting Wagtail customisations
## Upgrade considerations - changes to undocumented internals