summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-08-06 17:59:31 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-08-06 18:00:38 +0200
commitd9ace347b4e38d9eac01d7a17a68b009c81f5c06 (patch)
treedda35992f29d5ebdd42380ae51c599a76bccd590 /docs
parentd3ef502aa97520838b819483218ea01f33ea5a20 (diff)
[4.1.x] Fixed #33898 -- Fixed Window() expression crash with ArrayAgg().
Thanks Kia for the report. Regression in e06dc4571ea9fd5723c8029959b95808be9f8812. Backport of fd93db97c7228b16a4f92f97ef05b0d72418d952 from main
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.1.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/4.1.1.txt b/docs/releases/4.1.1.txt
index 3e11782eb2..7339390ffa 100644
--- a/docs/releases/4.1.1.txt
+++ b/docs/releases/4.1.1.txt
@@ -22,3 +22,7 @@ Bugfixes
* Fixed a regression in Django 4.1 that caused an incorrect redirection to the
admin changelist view when using *"Save and continue editing"* and *"Save and
add another"* options (:ticket:`33893`).
+
+* Fixed a regression in Django 4.1 that caused a crash of
+ :class:`~django.db.models.expressions.Window` expressions with
+ :class:`~django.contrib.postgres.aggregates.ArrayAgg` (:ticket:`33898`).