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 11:52:10 -0400
commit8a13cddc260b3543726f732a78a541b252420f59 (patch)
tree09afea1cbab07af063ef3350ce433b1fd8740208 /docs
parentfc18b519789464d5b89219b7f7918458e8ad4570 (diff)
[1.11.x] Fixed #28047 -- Fixed QuerySet.filter() crash when it uses the name of a OneToOneField pk.
Regression in 1bc249c2a67c24fcd28436c85388eff1d826e305. Backport of fce782710160420d5c963bb33a6646542d91f40c 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 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`).