From 5598910a2bdbbeefcbeb2e6083bafbd61ee8a7a0 Mon Sep 17 00:00:00 2001 From: Mikalai Radchuk Date: Wed, 31 Aug 2016 14:12:59 +0300 Subject: [PATCH] Release notes for #2573 --- CHANGELOG.txt | 1 + docs/releases/1.7.rst | 8 ++++++++ docs/topics/search/backends.rst | 2 ++ 3 files changed, 11 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 49e543bab..297acf0e3 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -8,6 +8,7 @@ Changelog * Unpublishing a page now gives the option to unpublish subpages too (Jordi Joan) * The Wagtail version number can now be obtained as a tuple using `from wagtail import VERSION` (Tim Heap) * ``send_mail`` logic has been moved from ``AbstractEmailForm.process_form_submission`` into ``AbstractEmailForm.send_mail``. Now it's easier to override this logic (Tim Leguijt) + * Elasticsearch 2 support (Karl Hobley) * Fix: Migrations for wagtailcore and project template are now reversible (Benjamin Bach) * Fix: The default image format label text ('Full width', 'Left-aligned', 'Right-aligned') is now localised (Mikalai Radchuk) * Fix: Text on the front-end 'password required' form is now marked for translation (Janneke Janssen) diff --git a/docs/releases/1.7.rst b/docs/releases/1.7.rst index a57d73573..c57cf44c6 100644 --- a/docs/releases/1.7.rst +++ b/docs/releases/1.7.rst @@ -26,6 +26,14 @@ Unpublishing subpages Unpublishing a page now gives the option to unpublish its subpages at the same time. This feature was developed by Jordi Joan. +Elasticsearch 2 support +~~~~~~~~~~~~~~~~~~~~~~~ + +Wagtail now supports Elasticsearch 2. Note that you need to change backend in ``WAGTAILSEARCH_BACKENDS``, if you wish to switch to Elasticsearch 2. This feature was developed by Karl Hobley. + +See: :ref:`wagtailsearch_backends_elasticsearch` + + Minor features ~~~~~~~~~~~~~~ diff --git a/docs/topics/search/backends.rst b/docs/topics/search/backends.rst index 057e5b61a..3bbac1c8f 100644 --- a/docs/topics/search/backends.rst +++ b/docs/topics/search/backends.rst @@ -79,6 +79,8 @@ It also doesn't support: If any of these features are important to you, we recommend using Elasticsearch instead. +.. _wagtailsearch_backends_elasticsearch: + Elasticsearch Backend ---------------------