diff --git a/CHANGELOG.txt b/CHANGELOG.txt index e9825520cb..96ea72108f 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -26,6 +26,7 @@ Changelog * Added `in_site` method for filtering page querysets to pages within the specified site (Chris Rogers) * Added the ability to override the default index settings for Elasticsearch (PyMan Claudio Marinozzi) * Extra options for the Elasticsearch constructor should be now defined with the new key `OPTIONS` of the `WAGTAILSEARCH_BACKENDS` setting (PyMan Claudio Marinozzi) + * Breadcrumb in the page explorer is now restricted to the pages the user has permission over (Jeffrey Chau, Robert Rollins, Matt Westcott) * Fix: `AbstractForm` now respects custom `get_template` methods on the page model (Gagaro) * Fix: Use specific page model for the parent page in the explore index (Gagaro) * Fix: Remove responsive styles in embed when there is no ratio available (Gagaro) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index fad8f83630..f2eb584bca 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -190,6 +190,7 @@ Contributors * Sean Hoefler * Edd Baldry * PyMan Claudio Marinozzi +* Jeffrey Chau Translators =========== diff --git a/docs/releases/1.8.rst b/docs/releases/1.8.rst index d3f0a98b35..b3171fea3b 100644 --- a/docs/releases/1.8.rst +++ b/docs/releases/1.8.rst @@ -57,6 +57,7 @@ Minor features * Added :meth:`wagtail.wagtailcore.query.PageQuerySet.in_site` method for filtering page querysets to pages within the specified site (Chris Rogers) * Added the ability to override the default index settings for Elasticsearch. See :ref:`wagtailsearch_backends_elasticsearch` (PyMan Claudio Marinozzi) * Extra options for the Elasticsearch constructor should be now defined with the new key ``OPTIONS`` of the ``WAGTAILSEARCH_BACKENDS`` setting (PyMan Claudio Marinozzi) + * Breadcrumb in the page explorer is now restricted to the pages the user has permission over (Jeffrey Chau, Robert Rollins, Matt Westcott) Bug fixes