Release note for #10972 in 5.2

pull/11046/head
Matt Westcott 2023-10-13 15:39:12 +01:00
rodzic 805685d72c
commit 78f93af5c8
4 zmienionych plików z 9 dodań i 0 usunięć

Wyświetl plik

@ -56,6 +56,7 @@ Changelog
* Fix: Ensure that pages in moderation show as "Live + In Moderation" in the page explorer rather than "Live + Draft" (Sage Abdullah)
* Fix: Prevent error when updating reference index for objects with a lazy ParentalKey-related object (Chris Shaw)
* Fix: Ignore conflicts when inserting reference index entries to prevent race conditions causing uniqueness errors (Chris Shaw)
* Fix: Populate the correct return value when creating a new snippet within the snippet chooser (claudobahn)
* Docs: Document `WAGTAILADMIN_BASE_URL` on "Integrating Wagtail into a Django project" page (Shreshth Srivastava)
* Docs: Replace incorrect screenshot for authors listing on tutorial (Shreshth Srivastava)
* Docs: Add documentation for building non-model-based choosers using the _queryish_ library (Matt Westcott)
@ -107,6 +108,9 @@ Changelog
~~~~~~~~~~~~~~~~~~
* Fix: Fix `SnippetBulkAction` not respecting `models` definition (Sandro Rodrigues)
* Fix: Correctly quote non-numeric primary keys on snippet inspect view (Sage Abdullah)
* Fix: Prevent crash on snippet inspect view when displaying a null foreign key to an image (Sage Abdullah)
* Fix: Populate the correct return value when creating a new snippet within the snippet chooser (claudobahn)
5.1.2 (25.09.2023)

Wyświetl plik

@ -746,6 +746,7 @@
* Chiemezuo Akujobi
* Krish Soni
* Chris Shaw
* claudobahn
## Translators

Wyświetl plik

@ -14,3 +14,6 @@ depth: 1
### Bug fixes
* Fix `SnippetBulkAction` not respecting `models` definition (Sandro Rodrigues)
* Correctly quote non-numeric primary keys on snippet inspect view (Sage Abdullah)
* Prevent crash on snippet inspect view when displaying a null foreign key to an image (Sage Abdullah)
* Populate the correct return value when creating a new snippet within the snippet chooser (claudobahn)

Wyświetl plik

@ -72,6 +72,7 @@ depth: 1
* Ensure that pages in moderation show as "Live + In Moderation" in the page explorer rather than "Live + Draft" (Sage Abdullah)
* Prevent error when updating reference index for objects with a lazy ParentalKey-related object (Chris Shaw)
* Ignore conflicts when inserting reference index entries to prevent race conditions causing uniqueness errors (Chris Shaw)
* Populate the correct return value when creating a new snippet within the snippet chooser (claudobahn)
### Documentation