summaryrefslogtreecommitdiff
path: root/docs/releases/3.0.3.txt
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-01-04 20:49:11 +0100
committerGitHub <noreply@github.com>2020-01-04 20:49:11 +0100
commit0f843fdd5b9b2f2307148465cd60f4e1b2befbb4 (patch)
tree8a7bd17d7c5a9510301e793591037f4ab14ddec5 /docs/releases/3.0.3.txt
parent495d7a1ddf3c8c83d49f099ee3599afbc28306fe (diff)
Fixed #31136 -- Disabled grouping by aliases on QuerySet.values()/values_list().
Regression in fb3f034f1c63160c0ff13c609acd01c18be12f80. Thanks Sigurd Ljødal for the report.
Diffstat (limited to 'docs/releases/3.0.3.txt')
-rw-r--r--docs/releases/3.0.3.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.0.3.txt b/docs/releases/3.0.3.txt
index ecc5ba9294..61ef456d93 100644
--- a/docs/releases/3.0.3.txt
+++ b/docs/releases/3.0.3.txt
@@ -12,3 +12,7 @@ Bugfixes
* Fixed a regression in Django 3.0 that caused a crash when subtracting
``DateField``, ``DateTimeField``, or ``TimeField`` from a ``Subquery()``
annotation (:ticket:`31133`).
+
+* Fixed a regression in Django 3.0 where ``QuerySet.values()`` and
+ ``values_list()`` crashed if a queryset contained an aggregation and
+ ``Exists()`` annotation (:ticket:`31136`).