summaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2023-04-11 07:40:15 -0700
committerDavid Lord <davidism@gmail.com>2023-04-11 07:40:40 -0700
commita6d96ca1dc78ebd6702bbb11c97987682c9f702d (patch)
tree9ffc94cba6ba753b8019aba0a5d3d601fe985857 /CHANGES.rst
parentff3df42fed1041d72bc57eb15500d19bcdb170a2 (diff)
downloadwerkzeug-a6d96ca1dc78ebd6702bbb11c97987682c9f702d.tar.gz
deprecate request and response charset
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst9
1 files changed, 6 insertions, 3 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 4888a3b0..526fb825 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -106,9 +106,12 @@ Unreleased
- Update type annotation for ``best_match`` to make ``default`` parameter clearer.
:issue:`2625`
- Multipart parser handles empty fields correctly. :issue:`2632`
-- The ``Map`` ``charset`` parameter is deprecated. The ``Request.url_charset``
- property is deprecated. Percent encoding in URLs must always represent UTF-8 bytes.
- Invalid bytes are left percent encoded rather than replaced. :pr:`2602`
+- The ``Map`` ``charset`` parameter and ``Request.url_charset`` property are
+ deprecated. Percent encoding in URLs must always represent UTF-8 bytes. Invalid
+ bytes are left percent encoded rather than replaced. :issue:`2602`
+- The ``Request.charset``, ``Request.encoding_errors``, ``Response.charset``, and
+ ``Client.charset`` attributes are deprecated. Request and response data must always
+ use UTF-8. :issue:`2602`
- Header values that have charset information only allow ASCII, UTF-8, and ISO-8859-1.
:pr:`2614, 2640`