summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-05-05 18:35:08 -0400
committerTim Graham <timograham@gmail.com>2017-05-05 18:36:09 -0400
commitf9a459337672a2094c61cb53ce8626ace7101a09 (patch)
tree05efa37f14f8a4ce6be9de5b62cc83a5f65a2a3d /docs
parent73d4560a92664a543111afc60e44f7f76d136c9c (diff)
[1.11.x] Fixed #28175 -- Fixed __in lookups on a foreign key when using the foreign key's parent model as the lookup value.
Thanks Simon Charette for review. Backport of d66378a8b2d48d41b56ba3622189493e4edf9e5a from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.11.1.txt b/docs/releases/1.11.1.txt
index e76ed491e9..7b1b887fa9 100644
--- a/docs/releases/1.11.1.txt
+++ b/docs/releases/1.11.1.txt
@@ -97,3 +97,6 @@ Bugfixes
* Prevented hiding GDAL errors if it's not installed when using ``contrib.gis``
(:ticket:`28160`). (It's a required dependency as of Django 1.11.)
+
+* Fixed a regression causing ``__in`` lookups on a foreign key to fail when
+ using the foreign key's parent model as the lookup value (:ticket:`28175`).