summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-08-06 17:59:31 +0200
committerGitHub <noreply@github.com>2022-08-06 17:59:31 +0200
commitfd93db97c7228b16a4f92f97ef05b0d72418d952 (patch)
treed23a5c27270ea655faea558bee53cec2c8117d33 /docs
parent00370342ca3a478660372975b3309ffc4d535be1 (diff)
Fixed #33898 -- Fixed Window() expression crash with ArrayAgg().
Thanks Kia for the report. Regression in e06dc4571ea9fd5723c8029959b95808be9f8812.
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`).