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 08:21:33 +0200
commit68912e4f6f84f21322f92a2c7b6c77f68f91b9c9 (patch)
tree1e6ea2bc0eccadcdbd86bb6aae316bf24066ad48 /docs
parentf8c43aca467b7b0c4bb0a7fa41362f90b610b8df (diff)
Fixed #34717 -- Fixed QuerySet.aggregate() crash when referencing window functions.
Regression in 59bea9efd2768102fc9d3aedda469502c218e9b7. Refs #28477. Thanks younes-chaoui for the report.
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`).