summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorwillzhao <gnomeek@outlook.com>2023-08-31 07:51:44 +0000
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-09-01 10:44:20 +0200
commit9cc0d7f7f85cecc3ad15bbc471fe6a08e4f515b6 (patch)
treeb50db16197265db37269d94ec68d8690ff58c57d /docs
parent9c6879284315d5119942355c340c3e48f6c65882 (diff)
Fixed #34803 -- Fixed queryset crash when filtering againts deeply nested OuterRef annotations.
Thanks Pierre-Nicolas Rigal for the report. Regression in c67ea79aa981ae82595d89f8018a41fcd842e7c9.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.2.5.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/4.2.5.txt b/docs/releases/4.2.5.txt
index fe216cadb3..d88ece91e6 100644
--- a/docs/releases/4.2.5.txt
+++ b/docs/releases/4.2.5.txt
@@ -21,3 +21,6 @@ Bugfixes
* Fixed a regression in Django 4.2.2 that caused an unnecessary selection of a
non-nullable ``ManyToManyField`` without a natural key during serialization
(:ticket:`34779`).
+
+* Fixed a regression in Django 4.2 that caused a crash of a queryset when
+ filtering against deeply nested ``OuterRef()`` annotations (:ticket:`34803`).