summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2025-05-21 16:16:12 +0200
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2025-05-23 15:19:50 +0200
commitc29e3092fdb1136f0945ce2be8f14c3853d6c8da (patch)
treeb560a4fdd88beef2513989811ace61de066971d8 /docs
parentbd873e84bef33db5bfca97471564934d9cbda0dc (diff)
[5.2.x] Fixed #36404 -- Fixed Aggregate.filter using OuterRef.
Regression in a76035e925ff4e6d8676c65cb135c74b993b1039. Thank you to Simon Charette for the review. co-authored-by: Simon Charette <charette.s@gmail.com> Backport of b8e5a8a9a2a767f584cbe89a878a42363706f939 from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.2.2.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/5.2.2.txt b/docs/releases/5.2.2.txt
index 2cf5c750ff..b8deb1c928 100644
--- a/docs/releases/5.2.2.txt
+++ b/docs/releases/5.2.2.txt
@@ -22,3 +22,6 @@ Bugfixes
* Fixed a regression in Django 5.2 where subclasses of ``RemoteUserMiddleware``
that had overridden ``process_request()`` were no longer supported
(:ticket:`36390`).
+
+* Fixed a regression in Django 5.2 that caused a crash when using ``OuterRef``
+ in the ``filter`` argument of an ``Aggregate`` expression (:ticket:`36404`).