summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-11-20 11:31:39 -0500
committerTim Graham <timograham@gmail.com>2015-11-23 11:05:18 -0500
commit6d9f061b07ce7aa1a9da6799b3104971ee73998b (patch)
tree4c8b861d3d6bdb741ee56b23a82e44867f64965d /docs
parent8f724817f3744c626923fe0bf83c48b3fceab774 (diff)
[1.8.x] Fixed #25786 -- Fixed set_FOO_order() crash with order_with_respect_to referencing OneToOneField pk.
Partial backport of 7bec480fe2ace94c8e7f0c88485442bfa74436b4 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.7.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.8.7.txt b/docs/releases/1.8.7.txt
index df0ff41159..b11ea9781a 100644
--- a/docs/releases/1.8.7.txt
+++ b/docs/releases/1.8.7.txt
@@ -42,3 +42,7 @@ Bugfixes
* Fixed a duplicate query regression in 1.8 on proxied model deletion
(:ticket:`25685`).
+
+* Fixed ``set_FOO_order()`` crash when the ``ForeignKey`` of a model with
+ ``order_with_respect_to`` references a model with a ``OneToOneField``
+ primary key (:ticket:`25786`).