summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-01-31 11:33:24 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-01-31 11:34:29 +0100
commitaff79be03a8c787ba0cc7e00dcec9eeb8ad01c87 (patch)
tree8b60ea9252f26dc4d82c810beca15e0a855635b2 /docs
parent7a1c6533eb72c3e6faa308796ba7f8d7d447d3b9 (diff)
[4.0.x] Fixed #33468 -- Fixed QuerySet.aggregate() after annotate() crash on aggregates with default.
Thanks Adam Johnson for the report. Backport of 71e7c8e73712419626f1c2b6ec036e8559a2d667 from main
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.0.2.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/4.0.2.txt b/docs/releases/4.0.2.txt
index c60dc68224..e7b9879625 100644
--- a/docs/releases/4.0.2.txt
+++ b/docs/releases/4.0.2.txt
@@ -33,3 +33,7 @@ Bugfixes
* Fixed a duplicate operation regression in Django 4.0 that caused a migration
crash when altering a primary key type for a concrete parent model referenced
by a foreign key (:ticket:`33462`).
+
+* Fixed a bug in Django 4.0 that caused a crash of ``QuerySet.aggregate()``
+ after ``annotate()`` on an aggregate function with a
+ :ref:`default <aggregate-default>` (:ticket:`33468`).