summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNicolas Baccelli <nicolas.baccelli@abc-culture.fr>2020-06-05 21:01:39 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-06-08 09:20:08 +0200
commit2b2500021b502318866e605f6c031f122703fe4b (patch)
treeeb87da7adef46fda015d956490b6f18f5466cc39 /docs
parentbe7a295141337189b9eceea506489bdfe07f199e (diff)
[3.0.x] Fixed #31664 -- Reallowed using non-expressions having filterable attribute as rhs in queryset filters.
Regression in 4edad1ddf6203326e0be4bdb105beecb0fe454c4. Backport of b38d44229ff185ad156bcb443d6db0db7ae3eb98 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.0.8.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.0.8.txt b/docs/releases/3.0.8.txt
index d21eac37c8..6bb3e39de7 100644
--- a/docs/releases/3.0.8.txt
+++ b/docs/releases/3.0.8.txt
@@ -14,3 +14,7 @@ Bugfixes
* Fixed a regression in Django 3.0.7 that caused a queryset crash when grouping
by a many-to-one relationship (:ticket:`31660`).
+
+* Reallowed, following a regression in Django 3.0, non-expressions having a
+ ``filterable`` attribute to be used as the right-hand side in queryset
+ filters (:ticket:`31664`).