From 0fb6edcf5ff6a6af916fc2cb6de856e6ae742a22 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Mon, 30 Oct 2017 10:17:12 +0000 Subject: [PATCH] Changelog/release notes for #3979 and #3983 --- CHANGELOG.txt | 2 ++ docs/releases/2.0.rst | 2 ++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 60e167933e..8efc460046 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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) ~~~~~~~~~~~~~~~~~ diff --git a/docs/releases/2.0.rst b/docs/releases/2.0.rst index 4c7576b1b5..559a0f34de 100644 --- a/docs/releases/2.0.rst +++ b/docs/releases/2.0.rst @@ -14,6 +14,7 @@ Other features ~~~~~~~~~~~~~~ * Moved Wagtail API v1 implementation (``wagtail.contrib.api``) to an `external app `_ (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