Changelog/release notes for #3979 and #3983

pull/3972/merge
Karl Hobley 2017-10-30 10:17:12 +00:00
rodzic c3022c23b5
commit 0fb6edcf5f
2 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -6,6 +6,7 @@ Changelog
* Removed support for Python 2.7, Django 1.8 and Django 1.10
* Moved Wagtail API v1 implementation (`wagtail.contrib.api`) to an external app (https://github.com/wagtail/wagtailapi_legacy) (Karl Hobley)
* The page chooser now searches all fields of a page, instead of just the title (Bertrand Bordage)
* Implement ordering by date in form submission view (LB (Ben Johnston))
* Elasticsearch scroll API is now used when fetching more than 100 search results (Karl Hobley)
* Added hidden field to the form builder (Ross Crawford-d'Heureuse)
@ -17,6 +18,7 @@ Changelog
* Fix: Using `modeladmin_register` as a decorator no longer replaces the decorated class with `None` (Tim Heap)
* Fix: Fixed crash in XML sitemap generator when all pages on the site are private (Stein Strindhaug)
* Fix: The `{% routablepageurl %}` template tag no longer generates invalid URLs when the `WAGTAIL_APPEND_SLASH` setting was set to `False` (Venelin Stoykov)
* Fix: The "View live" button is no longer shown if the page doesn't have a routable URL (Tim Heap)
1.13 (16.10.2017)
~~~~~~~~~~~~~~~~~

Wyświetl plik

@ -14,6 +14,7 @@ Other features
~~~~~~~~~~~~~~
* Moved Wagtail API v1 implementation (``wagtail.contrib.api``) to an `external app <https://github.com/wagtail/wagtailapi_legacy>`_ (Karl Hobley)
* The page chooser now searches all fields of a page, instead of just the title (Bertrand Bordage)
* Implement ordering by date in form submission view (LB (Ben Johnston))
* Elasticsearch scroll API is now used when fetching more than 100 search results (Karl Hobley)
* Added hidden field to the form builder (Ross Crawford-d'Heureuse)
@ -29,6 +30,7 @@ Bug fixes
* Using ``modeladmin_register`` as a decorator no longer replaces the decorated class with ``None`` (Tim Heap)
* Fixed crash in XML sitemap generator when all pages on the site are private (Stein Strindhaug)
* The ``{% routablepageurl %}`` template tag no longer generates invalid URLs when the ``WAGTAIL_APPEND_SLASH`` setting was set to ``False`` (Venelin Stoykov)
* The "View live" button is no longer shown if the page doesn't have a routable URL (Tim Heap)
Upgrade considerations