0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-25 05:02:57 +01:00

Changelog and release notes for #3940 and #3968

This commit is contained in:
Karl Hobley 2017-10-25 11:56:39 +01:00
parent 3b585665c9
commit 328e337395
2 changed files with 4 additions and 1 deletions

View File

@ -8,7 +8,8 @@ Changelog
* Added hidden field to the form builder (Ross Crawford-d'Heureuse)
* Image usage count now shows on delete confirmation page when WAGTAIL_USAGE_COUNT_ENABLED is active (Kees Hink)
* Fix: Do not remove stopwords when generating slugs from non-ASCII titles, to avoid issues with incorrect word boundaries (Sævar Öfjörð Magnússon)
* Fix: The PostgreSQL search backend now preserves ordering of the `QuerySet` when searching with `order_by_relevance=False` (Bertrand Bordage)
* Fix: Using `modeladmin_register` as a decorator no longer replaces the decorated class with `None` (Tim Heap)
1.13 (16.10.2017)
~~~~~~~~~~~~~~~~~

View File

@ -21,6 +21,8 @@ Bug fixes
~~~~~~~~~
* Do not remove stopwords when generating slugs from non-ASCII titles, to avoid issues with incorrect word boundaries (Sævar Öfjörð Magnússon)
* The PostgreSQL search backend now preserves ordering of the ``QuerySet`` when searching with ``order_by_relevance=False`` (Bertrand Bordage)
* Using ``modeladmin_register`` as a decorator no longer replaces the decorated class with ``None`` (Tim Heap)
Upgrade considerations