summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-08-01 16:16:28 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-08-01 16:17:06 +0200
commit8808d9da6b11b8aa32d750265217721450b0fb1f (patch)
treeb5e1a4c6ccd102810256423c31ce6db73d7f44a7 /docs
parent2ef2b2ffc0e2af3f945bccf99ece67f843aa440c (diff)
[4.2.x] 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. Backport of c9b9a52edc66be117c6e5b5214fa788a4d5db7a8 from main
Diffstat (limited to 'docs')
-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`).