mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Refs #17235 -- Made MultiPartParser leave request.POST immutable.
This commit is contained in:
committed by
Tim Graham
parent
183f501540
commit
4a246a02bd
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user