summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorHasan Ramezani <hasan.r67@gmail.com>2020-04-04 20:55:20 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-04-06 08:15:51 +0200
commit22a2e97fc30487af89d7c34b753853e7b510083d (patch)
treed38d8020bb1191c5d01108291f312655ba3211f2 /docs
parent810f18c2df4b268ac1908fdd0b43bbbf07bdea06 (diff)
[3.0.x] Fixed #31420 -- Fixed crash when filtering subquery annotation against a SimpleLazyObject.
Thanks Simon Charette for the solution and analysis. Backport of 4237050684427db45ea834fe89d9e11c0520201e from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.0.6.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/3.0.6.txt b/docs/releases/3.0.6.txt
index e25d6e8fc8..6fd7aad02b 100644
--- a/docs/releases/3.0.6.txt
+++ b/docs/releases/3.0.6.txt
@@ -9,4 +9,6 @@ Django 3.0.6 fixes several bugs in 3.0.5.
Bugfixes
========
-* ...
+* Fixed a regression in Django 3.0 that caused a crash when filtering a
+ ``Subquery()`` annotation of a queryset containing a single related field
+ against a ``SimpleLazyObject`` (:ticket:`31420`).