summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-04-10 09:47:26 -0400
committerTim Graham <timograham@gmail.com>2017-04-10 09:51:51 -0400
commitfce782710160420d5c963bb33a6646542d91f40c (patch)
tree629e006fdadf0a084f1119c1852021c1acbe6d12 /docs
parenta19b373d89d9839c1b3a05768370ce5abd94e03c (diff)
Fixed #28047 -- Fixed QuerySet.filter() crash when it uses the name of a OneToOneField pk.
Regression in 1bc249c2a67c24fcd28436c85388eff1d826e305.
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 a10f3f47ef..066127d5e4 100644
--- a/docs/releases/1.11.1.txt
+++ b/docs/releases/1.11.1.txt
@@ -18,3 +18,6 @@ Bugfixes
* Fixed a crash when using a two-tuple in ``EmailMessage``’s ``attachments``
argument (:ticket:`28042`).
+
+* Fixed ``QuerySet.filter()`` crash when it references the name of a
+ ``OneToOneField`` primary key (:ticket:`28047`).