From be6526e95d787fa41f03581db5b2df3340fe3128 Mon Sep 17 00:00:00 2001 From: Matt Westcott <matt@west.co.tt> Date: Tue, 12 Apr 2022 13:09:59 +0100 Subject: [PATCH] Release note for #8271 --- CHANGELOG.txt | 1 + docs/releases/3.0.md | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index ba2b33f939..27cbd44e8a 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -48,6 +48,7 @@ Changelog * Implement new slim page editor header with breadcrumb (Steven Steinwand, Karl Hobley) * Add the ability for choices to be separated by new lines instead of just commas within the form builder, commas will still be supported if used (Abdulmajeed Isa) * Add internationalisation UI to modeladmin (Andrés Martano) + * Support chunking in `PageQuerySet.specific()` to reduce memory consumption (Andy Babic) * Fix: When using `simple_translations` ensure that the user is redirected to the page edit view when submitting for a single locale (Mitchel Cabuloy) * Fix: When previewing unsaved changes to `Form` pages, ensure that all added fields are correctly shown in the preview (Joshua Munn) * Fix: When Documents (e.g. PDFs) have been configured to be served inline via `WAGTAILDOCS_CONTENT_TYPES` & `WAGTAILDOCS_INLINE_CONTENT_TYPES` ensure that the filename is correctly set in the `Content-Disposition` header so that saving the files will use the correct filename (John-Scott Atlakson) diff --git a/docs/releases/3.0.md b/docs/releases/3.0.md index 323e91d449..19352ed911 100644 --- a/docs/releases/3.0.md +++ b/docs/releases/3.0.md @@ -77,6 +77,7 @@ class LandingPage(Page): * Add [`wagtail_update_image_renditions` management command](wagtail_update_image_renditions) to regenerate image renditions or purge all existing renditions (Hitansh Shah, Onno Timmerman, Damian Moore) * Add the ability for choices to be separated by new lines instead of just commas within the form builder, commas will still be supported if used (Abdulmajeed Isa) * Add internationalisation UI to modeladmin (Andrés Martano) + * Support chunking in `PageQuerySet.specific()` to reduce memory consumption (Andy Babic) ### Bug fixes