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 12:08:29 -0500
commit8edf8db52f626e6bf384a729063f91caa6592f92 (patch)
tree9223f22fea08b14a0ab199fb046bb4252b666a34 /docs
parent8957dfe4ad76b74744abdbde605d06fb565a55e3 (diff)
[1.9.x] Refs #25786 -- Added tests/release notes for set_FOO_order() crash with order_with_respect_to referencing OneToOneField pk.
Forwardport of 6d9f061b07ce7aa1a9da6799b3104971ee73998b from stable/1.8.x The issue was fixed by 7bec480fe2ace94c8e7f0c88485442bfa74436b4.
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`).