summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-04-07 09:08:05 -0400
committerTim Graham <timograham@gmail.com>2015-04-09 06:50:21 -0400
commita10b4c010ab2cdaa6ba8bfaec3e3540299ea77be (patch)
tree2a1b028e6ee013436cfecf458c0e73acb021273b /docs
parent20a98d863f00fc48f9c7fd783d8d0539c6be41f5 (diff)
Fixed #24578 -- Fixed crash with QuerySet.update() on FK to O2O fields.
Thanks Anssi Kääriäinen for review.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.8.1.txt b/docs/releases/1.8.1.txt
index ac986b3fc0..5df9982a1d 100644
--- a/docs/releases/1.8.1.txt
+++ b/docs/releases/1.8.1.txt
@@ -28,3 +28,6 @@ Bugfixes
* Fixed a migration crash when altering
:class:`~django.db.models.ManyToManyField`\s (:ticket:`24513`).
+
+* Fixed a crash with ``QuerySet.update()`` on foreign keys to one-to-one fields
+ (:ticket:`24578`).