From 54f190d4bbe47563c9c856032216f00898372f02 Mon Sep 17 00:00:00 2001 From: Andy Babic Date: Wed, 3 Mar 2021 07:28:32 +0000 Subject: [PATCH] Release notes for #6845 --- CHANGELOG.txt | 3 ++- docs/releases/2.13.rst | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 6fc2acc75e..b2e14fda76 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -8,7 +8,8 @@ Changelog * Add the option to set rich text images as decorative, without alt text (Helen Chapman, Thibaud Colas) * Add support for `__year` lookup in Elasticsearch queries (Seb Brown) * Support passing multiple models as arguments to `type()`, `not_type()`, `exact_type()` and `not_exact_type()` methods on `PageQuerySet` (Andy Babic) - * Updated default attribute copying behaviour of `Page.get_specific()` and added the `copy_attrs_exclude` option (Andy Babic) + * Update default attribute copying behaviour of `Page.get_specific()` and added the `copy_attrs_exclude` option (Andy Babic) + * Update `PageQueryset.specific(defer=True)` to only perform a single database query (Andy Babic) * Fix: StreamField required status is now consistently handled by the `blank` keyword argument (Matt Westcott) * Fix: Show 'required' asterisks for blocks inside required StreamFields (Matt Westcott) * Fix: Make image chooser "Select format" fields translatable (Helen Chapman, Thibaud Colas) diff --git a/docs/releases/2.13.rst b/docs/releases/2.13.rst index 4dd38e7991..23a18f505e 100644 --- a/docs/releases/2.13.rst +++ b/docs/releases/2.13.rst @@ -17,7 +17,8 @@ Other features * Add the option to set rich text images as decorative, without alt text (Helen Chapman, Thibaud Colas) * Add support for ``__year`` filter in Elasticsearch queries (Seb Brown) * Support passing multiple models as arguments to ``type()``, ``not_type()``, ``exact_type()`` and ``not_exact_type()`` methods on ``PageQuerySet`` (Andy Babic) -* Updated default attribute copying behaviour of ``Page.get_specific()`` and added the ``copy_attrs_exclude`` option (Andy Babic) +* Update default attribute copying behaviour of ``Page.get_specific()`` and added the ``copy_attrs_exclude`` option (Andy Babic) +* Update ``PageQueryset.specific(defer=True)`` to only perform a single database query (Andy Babic) Bug fixes