diff options
| author | Tim Graham <timograham@gmail.com> | 2017-08-31 09:34:44 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-31 09:34:44 -0400 |
| commit | e5bd585c6eb1e13e2f8aac030b33c077b0b70c05 (patch) | |
| tree | c4ae599950d749a1b67f1b9273bd7458f8fc3e0e /docs | |
| parent | ec6481246a76f6a3339c987f14c3878f55cd7300 (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.txt | 5 |
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`). |
