0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00

Release note for #4524

This commit is contained in:
Matt Westcott 2018-07-27 11:58:21 +01:00
parent 4b91f6f6dc
commit bf5d6e3363
3 changed files with 17 additions and 2 deletions

View File

@ -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)

View File

@ -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)

View File

@ -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"])
[<EventPage: Event 1>, <EventPage: Event 2>]
.. _wagtailsearch_faceted_search:
Faceted search
--------------