summaryrefslogtreecommitdiff
path: root/docs/releases/4.2.4.txt
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-08-01 16:16:28 +0200
committerGitHub <noreply@github.com>2023-08-01 16:16:28 +0200
commitc9b9a52edc66be117c6e5b5214fa788a4d5db7a8 (patch)
tree86bededa12bf9d2d6c441c0fe4fc1a35b0af796b /docs/releases/4.2.4.txt
parent5a3725594faacc412e2d2b4ed160370228f1a118 (diff)
Fixed #34750 -- Fixed QuerySet.count() when grouping by unused multi-valued annotations.
Thanks Toan Vuong for the report. Thanks Simon Charette for the review. Regression in 59bea9efd2768102fc9d3aedda469502c218e9b7.
Diffstat (limited to 'docs/releases/4.2.4.txt')
-rw-r--r--docs/releases/4.2.4.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/4.2.4.txt b/docs/releases/4.2.4.txt
index a39818e3b8..9e3c2fc1fd 100644
--- a/docs/releases/4.2.4.txt
+++ b/docs/releases/4.2.4.txt
@@ -15,3 +15,7 @@ Bugfixes
* Fixed a regression in Django 4.2 that caused a crash when grouping by a
reference in a subquery (:ticket:`34748`).
+
+* Fixed a regression in Django 4.2 that caused aggregation over query that
+ uses explicit grouping by multi-valued annotations to group against the wrong
+ columns (:ticket:`34750`).