summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2023-07-17 12:51:54 -0400
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-07-19 09:06:16 +0200
commit7a67b065d7e5653f3af1cbd28882d33d2a088b02 (patch)
tree757e701a3631e6d3c29c935c47e07a83bd9ba297 /docs
parentc646412a7594418985ccda02043f35c05da15b1c (diff)
[4.2.x] Fixed #34717 -- Fixed QuerySet.aggregate() crash when referencing window functions.
Regression in 59bea9efd2768102fc9d3aedda469502c218e9b7. Refs #28477. Thanks younes-chaoui for the report. Backport of 68912e4f6f84f21322f92a2c7b6c77f68f91b9c9 from main
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.2.4.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/4.2.4.txt b/docs/releases/4.2.4.txt
index e8fd225516..3921dd9b3e 100644
--- a/docs/releases/4.2.4.txt
+++ b/docs/releases/4.2.4.txt
@@ -9,4 +9,6 @@ Django 4.2.4 fixes several bugs in 4.2.3.
Bugfixes
========
-* ...
+* Fixed a regression in Django 4.2 that caused a crash of
+ ``QuerySet.aggregate()`` with aggregates referencing window functions
+ (:ticket:`34717`).