summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPatryk Zawadzki <patrys@room-303.com>2015-04-03 23:36:35 +0200
committerMarkus Holtermann <info@markusholtermann.eu>2015-04-07 14:49:47 +0200
commit0385dad073270c37f8c4a5f13edce43f2a69ba8a (patch)
tree04ef5b77c11b32c589433015460dfdf3db558dec /docs
parent7a7c797234aede7603e92a0a90b9f4c4a8b92a0c (diff)
Fixed #24513 -- Made sure a model is only rendered once during reloads
This also prevents state modifications from corrupting previous states. Previously, when a model defining a relation was unregistered first, clearing the cache would cause its related models' _meta to be cleared and would result in the old models losing track of their relations.
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 65d32f190c..ac986b3fc0 100644
--- a/docs/releases/1.8.1.txt
+++ b/docs/releases/1.8.1.txt
@@ -25,3 +25,6 @@ Bugfixes
* Stripped microseconds from ``datetime`` values when using an older version of
the MySQLdb DB API driver as it does not support fractional seconds
(:ticket:`24584`).
+
+* Fixed a migration crash when altering
+ :class:`~django.db.models.ManyToManyField`\s (:ticket:`24513`).