summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorVinay Karanam <vinayinvicible@gmail.com>2016-11-16 18:52:38 +0530
committerTim Graham <timograham@gmail.com>2016-12-07 08:28:46 -0500
commit4a246a02bdcbc13b15480c014f51cb0682af7c1e (patch)
treeeebd27f89e806db66f5344b63d63c574578b5697 /docs
parent183f5015408ffe0d3a22203ddaf7a3a56da025fd (diff)
Refs #17235 -- Made MultiPartParser leave request.POST immutable.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.txt4
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