diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 72caab577d..f647cf0aa3 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -4,6 +4,8 @@ Changelog 2.2 (xx.xx.xxx) - IN DEVELOPMENT ~~~~~~~~~~~~~~~ + * Added faceted search using the `.facet()` method (Karl Hobley) + * Added page type filtering and ordering to the Wagtail admin page search (Karl Hobley) * Added another valid AudioBoom oEmbed pattern (Bertrand Bordage) * Added `annotate_score` support to PostgreSQL search backend (Bertrand Bordage) * Pillow's image optimisation is now applied when saving PNG images (Dmitry Vasilev) @@ -17,7 +19,6 @@ Changelog * Increased max length of redirect URL field to 255 (Michael Harrison) * Added documentation for new JS/CSS media files association with Draftail feature definitions (Ed Henderson) * Added accessible colour contrast guidelines to the style guide (Catherine Farman) - * Added faceted search using the `.facet()` method (Karl Hobley) * Admin modal views no longer rely on Javascript `eval()`, for better CSP compliance (Matt Westcott) * Update editor guide for embeds and documents in rich text (Kevin Howbrook) * Improved performance of sitemap generation (Michael van Tellingen, Bertrand Bordage) diff --git a/docs/releases/2.2.rst b/docs/releases/2.2.rst index ffec252404..b9202a0464 100644 --- a/docs/releases/2.2.rst +++ b/docs/releases/2.2.rst @@ -10,6 +10,18 @@ Wagtail 2.2 release notes - IN DEVELOPMENT What's new ========== +Faceted search +~~~~~~~~~~~~~~ + +Wagtail search now includes support for facets, allowing you to display search result counts broken down by a particular field value. For further details, see :ref:`wagtailsearch_faceted_search`. This feature was developed by Karl Hobley. + + +Improved admin page search +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The page search in the Wagtail admin now supports filtering by page type and ordering search results by title, creation date and status. This feature was developed by Karl Hobley. + + Other features ~~~~~~~~~~~~~~ @@ -26,7 +38,6 @@ Other features * Increased max length of redirect URL field to 255 (Michael Harrison) * Added documentation for new JS/CSS media files association with Draftail feature definitions (Ed Henderson) * Added accessible colour contrast guidelines to the style guide (Catherine Farman) - * Added faceted search using the ``.facet()`` method (Karl Hobley) * Admin modal views no longer rely on Javascript ``eval()``, for better CSP compliance (Matt Westcott) * Update editor guide for embeds and documents in rich text (Kevin Howbrook) * Improved performance of sitemap generation (Michael van Tellingen, Bertrand Bordage) diff --git a/docs/topics/search/searching.rst b/docs/topics/search/searching.rst index 227a47a3b3..7b0399c743 100644 --- a/docs/topics/search/searching.rst +++ b/docs/topics/search/searching.rst @@ -97,6 +97,9 @@ This can be limited to a certain set of fields by using the ``fields`` keyword a >>> EventPage.objects.search("Event", fields=["title"]) [, ] + +.. _wagtailsearch_faceted_search: + Faceted search --------------