diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.11.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.11.txt b/docs/releases/1.11.txt index 7bf206c678..59b7fb54f9 100644 --- a/docs/releases/1.11.txt +++ b/docs/releases/1.11.txt @@ -634,6 +634,10 @@ Miscellaneous * The undocumented ``django.utils.functional.lazy_property`` is removed. +* For consistency with non-multipart requests, ``MultiPartParser.parse()`` now + leaves ``request.POST`` immutable. If you're modifying that ``QueryDict``, + you must now first copy it, e.g. ``request.POST.copy()``. + .. _deprecated-features-1.11: Features deprecated in 1.11 |
