summaryrefslogtreecommitdiff
path: root/docs/releases/4.2.2.txt
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2023-05-21 23:57:49 -0400
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-05-23 06:25:58 +0200
commite5c844d6f2a4ac6ae674d741b5f1fa2a688cedf4 (patch)
treeb7f47b9b83726965bd1d97284555e701cb8a48ba /docs/releases/4.2.2.txt
parent2ee01747c32a7275a7a1a5f7862acba7db764921 (diff)
Fixed #34551 -- Fixed QuerySet.aggregate() crash when referencing subqueries.
Regression in 59bea9efd2768102fc9d3aedda469502c218e9b7. Refs #28477. Thanks Denis Roldán and Mariusz for the test.
Diffstat (limited to 'docs/releases/4.2.2.txt')
-rw-r--r--docs/releases/4.2.2.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/4.2.2.txt b/docs/releases/4.2.2.txt
index d17fb7c2d3..df3f2a2710 100644
--- a/docs/releases/4.2.2.txt
+++ b/docs/releases/4.2.2.txt
@@ -32,3 +32,7 @@ Bugfixes
* Fixed a regression in Django 4.2 that caused a crash of
``QuerySet.aggregate()`` with expressions referencing other aggregates
(:ticket:`34551`).
+
+* Fixed a regression in Django 4.2 that caused a crash of
+ ``QuerySet.aggregate()`` with aggregates referencing subqueries
+ (:ticket:`34551`).