diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 48866b6ae1..ada04f8ee8 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -5,6 +5,7 @@ Changelog ~~~~~~~~~~~~~~~~ * Implemented the `specific()` method on PageQuerySet, to return pages as their most specific type + * Implemented pagination in the page chooser modal * The `{% image %}` tag now supports filters on the image variable, e.g. `{% image primary_img|default:secondary_img width-500 %}` * Moved the style guide menu item into the Settings sub-menu * Search backends can now be specified by module (e.g. `wagtail.wagtailsearch.backends.elasticsearch`), rather than a specific class (`wagtail.wagtailsearch.backends.elasticsearch.ElasticSearch`) diff --git a/docs/releases/1.1.rst b/docs/releases/1.1.rst index c5be7638b8..c1c537cb81 100644 --- a/docs/releases/1.1.rst +++ b/docs/releases/1.1.rst @@ -18,6 +18,7 @@ Usually, an operation that retrieves a queryset of pages (such as ``homepage.get Minor features ~~~~~~~~~~~~~~ + * Implemented pagination in the page chooser modal * The ``{% image %}`` tag now supports filters on the image variable, e.g. ``{% image primary_img|default:secondary_img width-500 %}`` * Moved the style guide menu item into the Settings sub-menu - * Search backends can now be specified by module (e.g. ``wagtail.wagtailsearch.backends.elasticsearch``), rather than a specific class (``wagtail.wagtailsearch.backends.elasticsearch.ElasticSearch``) \ No newline at end of file + * Search backends can now be specified by module (e.g. ``wagtail.wagtailsearch.backends.elasticsearch``), rather than a specific class (``wagtail.wagtailsearch.backends.elasticsearch.ElasticSearch``)