summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-05-19 12:47:10 -0400
committerTim Graham <timograham@gmail.com>2017-05-19 13:22:17 -0400
commit59ab1b2683b6c090dc409d9eb8303aadbd590c04 (patch)
tree0e23f7ab66be3bb1b721654fbc129c1b3ada2961 /docs
parent99df304c856ac2f6ee18418ea8ca3e2dc7b47dac (diff)
Fixed #28210 -- Fixed Model._state.adding on MTI parent model after saving child model.
Regression in 38575b007a722d6af510ea46d46393a4cda9ca29.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.2.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.11.2.txt b/docs/releases/1.11.2.txt
index 8d82581966..a15d4272ec 100644
--- a/docs/releases/1.11.2.txt
+++ b/docs/releases/1.11.2.txt
@@ -25,3 +25,7 @@ Bugfixes
backends don't accept a positional ``request`` argument (:ticket:`28207`).
* Fixed introspection of index field ordering on PostgreSQL (:ticket:`28197`).
+
+* Fixed a regression where ``Model._state.adding`` wasn't set correctly on
+ multi-table inheritance parent models after saving a child model
+ (:ticket:`28210`).