summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-05-03 10:39:54 -0400
committerTim Graham <timograham@gmail.com>2017-05-03 12:31:18 -0400
commitf3217ab59696ea095a42c7fb4d98f21bb000ca8e (patch)
treefc6771feef31818ec3fed01bed5e88361a47335c /docs
parent008ba77dfd23576a8080f05e3c45a19da73b20ba (diff)
[1.11.x] Fixed #28166 -- Fixed Model._state.db on MTI parent model after saving child model.
Regression in 38575b007a722d6af510ea46d46393a4cda9ca29. Backport of 584e10c76edcd3a33765a52c5cde0096a3ce7dbc from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.11.1.txt b/docs/releases/1.11.1.txt
index 727ce94751..acce5259af 100644
--- a/docs/releases/1.11.1.txt
+++ b/docs/releases/1.11.1.txt
@@ -84,3 +84,7 @@ Bugfixes
* Fixed crash in ``BaseInlineFormSet._construct_form()`` when using
``save_as_new`` (:ticket:`28159`).
+
+* Fixed a regression where ``Model._state.db`` wasn't set correctly on
+ multi-table inheritance parent models after saving a child model
+ (:ticket:`28166`).