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 11:25:00 +0200
commitacfb42752259c3f920ffd20d6eef83b3c6f75cf7 (patch)
tree552ba3871fcacd330d58a91c91a17fddaa85bf46 /docs
parent55a0b9c32ebae957b95a9a55846692837e2ff39b (diff)
[4.2.x] Fixed #34803 -- Fixed queryset crash when filtering againts deeply nested OuterRef annotations.
Thanks Pierre-Nicolas Rigal for the report. Regression in c67ea79aa981ae82595d89f8018a41fcd842e7c9. Backport of 9cc0d7f7f85cecc3ad15bbc471fe6a08e4f515b6 from main
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`).