summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2018-01-13 12:23:48 +0100
committerTim Graham <timograham@gmail.com>2018-01-13 13:10:02 -0500
commit8f2e3857ce5a50839ee362690a6a6d92fc8ff0ea (patch)
treebb57e901d9af081564b861231c44919102fe570f /docs
parent62236b514e3ab1726e38f42d61117a0513197e89 (diff)
[2.0.x] Fixed #29016 -- Fixed incorrect foreign key nullification on related instance deletion.
Backport of 9a621edf624a4eb1f1645fca628a9e432f0de776 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.10.txt3
-rw-r--r--docs/releases/2.0.2.txt3
2 files changed, 5 insertions, 1 deletions
diff --git a/docs/releases/1.11.10.txt b/docs/releases/1.11.10.txt
index d078959357..49e19614a5 100644
--- a/docs/releases/1.11.10.txt
+++ b/docs/releases/1.11.10.txt
@@ -9,4 +9,5 @@ Django 1.11.10 fixes several bugs in 1.11.9.
Bugfixes
========
-* ...
+* Fixed incorrect foreign key nullification if a model has two foreign keys to
+ the same model and a target model is deleted (:ticket:`29016`).
diff --git a/docs/releases/2.0.2.txt b/docs/releases/2.0.2.txt
index 4f0878c8d0..92026be5f8 100644
--- a/docs/releases/2.0.2.txt
+++ b/docs/releases/2.0.2.txt
@@ -11,3 +11,6 @@ Bugfixes
* Fixed hidden content at the bottom of the "The install worked successfully!"
page for some languages (:ticket:`28885`).
+
+* Fixed incorrect foreign key nullification if a model has two foreign keys to
+ the same model and a target model is deleted (:ticket:`29016`).