diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 34ac9cc385..d3f3ec51bb 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -13,6 +13,7 @@ Changelog * Added `last_published_at` field to the Page model (Matt Westcott) * Added `show_in_menus_default` flag on page models, to allow "show in menus" to be checked by default (LB (Ben Johnston)) * "Copy page" form now validates against copying to a destination where the user does not have permission (Henk-Jan van Hasselaar) + * Allows reverse relations in `RelatedFields` for elasticsearch & PostgreSQL search backends (Lucas Moeskops, Bertrand Bordage) * Fix: Unauthenticated AJAX requests to admin views now return 403 rather than redirecting to the login page (Karl Hobley) * Fix: `TableBlock` options `afterChange`, `afterCreateCol`, `afterCreateRow`, `afterRemoveCol`, `afterRemoveRow` and `contextMenu` can now be overridden (Loic Teixeira) * Fix: The lastmod field returned by wagtailsitemaps now shows the last published date rather than the date of the last draft edit (Matt Westcott) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 2af8daf7de..7072e7dd6e 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -241,6 +241,7 @@ Contributors * Alice Rose * John Franey * Marc Tudurí +* Lucas Moeskops Translators =========== diff --git a/docs/releases/1.11.rst b/docs/releases/1.11.rst index 43b1d0f63c..cee9ff5650 100644 --- a/docs/releases/1.11.rst +++ b/docs/releases/1.11.rst @@ -58,6 +58,7 @@ Other features * Added ``last_published_at`` field to the Page model (Matt Westcott) * Added ``show_in_menus_default`` flag on page models, to allow "show in menus" to be checked by default (LB (Ben Johnston)) * "Copy page" form now validates against copying to a destination where the user does not have permission (Henk-Jan van Hasselaar) + * Allows reverse relations in ``RelatedFields`` for elasticsearch & PostgreSQL search backends (Lucas Moeskops, Bertrand Bordage) Bug fixes ~~~~~~~~~