0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-29 01:22:07 +01:00

Release note for #11749

This commit is contained in:
Matt Westcott 2024-04-17 16:23:54 +01:00
parent d71cf79520
commit 1ec62a6c2d
3 changed files with 3 additions and 0 deletions

View File

@ -33,6 +33,7 @@ Changelog
* Improve page fetching logic and cache route results per request (Gordon Pendleton)
* Optimise rewriting of links / embeds in rich text using bulk database lookups (Andy Chosak)
* Add normalization mechanism to StreamField so that assignments and defaults can be passed in a wider range of data types (Joshua Munn, Matt Westcott)
* Allow specifying a `STORAGES` alias name for `WAGTAILIMAGES_RENDITION_STORAGE` (Alex Baron)
* Fix: Fix typo in `__str__` for MySQL search index (Jake Howard)
* Fix: Ensure that unit tests correctly check for migrations in all core Wagtail apps (Matt Westcott)
* Fix: Correctly handle `date` objects on `human_readable_date` template tag (Jhonatan Lopes)

View File

@ -813,6 +813,7 @@
* Ihar Marhitych
* Sebastian Muthwill
* Drikus Roor
* Alex Baron
## Translators

View File

@ -44,6 +44,7 @@ depth: 1
and `Page.find_for_request()` to find the page given a request object and a URL path. Results are cached on `request._wagtail_route_for_request` (Gordon Pendleton)
* Optimise rewriting of links / embeds in rich text using bulk database lookups (Andy Chosak)
* Add normalization mechanism to StreamField so that assignments and defaults can be passed in a wider range of data types (Joshua Munn, Matt Westcott)
* Allow specifying a `STORAGES` alias name for `WAGTAILIMAGES_RENDITION_STORAGE` (Alex Baron)
### Bug fixes