summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-08-31 09:34:44 -0400
committerGitHub <noreply@github.com>2017-08-31 09:34:44 -0400
commite5bd585c6eb1e13e2f8aac030b33c077b0b70c05 (patch)
treec4ae599950d749a1b67f1b9273bd7458f8fc3e0e /docs
parentec6481246a76f6a3339c987f14c3878f55cd7300 (diff)
Fixed #28543 -- Prevented ManyToManyField.value_from_object() from being lazy.
Previously, it was a QuerySet which could reevaluate to a new value if the model's data changes. This is inconsistent with other Field.value_from_object() methods. This allows reverting the fix in the admin for refs #27998.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.5.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/1.11.5.txt b/docs/releases/1.11.5.txt
index 91620eb740..cb9e466248 100644
--- a/docs/releases/1.11.5.txt
+++ b/docs/releases/1.11.5.txt
@@ -35,3 +35,8 @@ Bugfixes
* Fixed a regression in 1.11.4 where ``runserver`` crashed with non-Unicode
system encodings on Python 2 + Windows (:ticket:`28487`).
+
+* Fixed a regression in Django 1.10 where changes to a ``ManyToManyField``
+ weren't logged in the admin change history (:ticket:`27998`) and prevented
+ ``ManyToManyField`` initial data in model forms from being affected by
+ subsequent model changes (:ticket:`28543`).