Release notes for #4027

This commit is contained in:
Matt Westcott 2017-11-17 10:55:43 +00:00
parent e421b7a811
commit c7f311a002
2 changed files with 6 additions and 0 deletions

View file

@ -8,6 +8,9 @@ Changelog
* Fix: Pinned Django REST Framework to <3.7 to restore Django 1.8 compatibility (Matt Westcott)
* Fix: Fixed crash in XML sitemap generator when all pages on the site are private (Stein Strindhaug)
* Fix: Fixed error in Postgres search backend when searching specific fields of a specific() Page queryset (Bertrand Bordage, Matt Westcott)
* Fix: Fixed error on Elasticsearch backend when passing a queryset as an `__in` filter (Karl Hobley, Matt Westcott)
* Fix: `__isnull` filters no longer fail on Elasticsearch 5 (Karl Hobley)
* Fix: Prevented intermittent failures on Postgres search backend when a field is defined as both a `SearchField` and a `FilterField` (Matt Westcott)
1.12.2 (18.09.2017)

View file

@ -17,3 +17,6 @@ Bug fixes
* Pinned Django REST Framework to <3.7 to restore Django 1.8 compatibility (Matt Westcott)
* Fixed crash in XML sitemap generator when all pages on the site are private (Stein Strindhaug)
* Fixed error in Postgres search backend when searching specific fields of a ``specific()`` Page queryset (Bertrand Bordage, Matt Westcott)
* Fixed error on Elasticsearch backend when passing a queryset as an ``__in`` filter (Karl Hobley, Matt Westcott)
* ``__isnull`` filters no longer fail on Elasticsearch 5 (Karl Hobley)
* Prevented intermittent failures on Postgres search backend when a field is defined as both a ``SearchField`` and a ``FilterField`` (Matt Westcott)