diff --git a/CHANGELOG.txt b/CHANGELOG.txt index aa2ffc72b4..fc4746f447 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -28,6 +28,7 @@ Changelog * Update the minimum version of `djangorestframework` to 3.15.1 (Sage Abdullah) * Add support for related fields in generic `IndexView.list_display` (Abdelrahman Hamada) * 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) * 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) diff --git a/docs/releases/6.1.md b/docs/releases/6.1.md index b5fb466d16..a60e6224c1 100644 --- a/docs/releases/6.1.md +++ b/docs/releases/6.1.md @@ -39,6 +39,7 @@ depth: 1 * Add support for related fields in generic `IndexView.list_display` (Abdelrahman Hamada) * Improve page fetching logic and cache route results per request. You can now use `Page.route_for_request()` to find the page route, 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) ### Bug fixes