diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-08-25 21:27:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-25 21:27:22 +0200 |
| commit | 11920e77959deaa65eb86ccc5d39da903fd3dd41 (patch) | |
| tree | 10a328aff153fc7057fccb26cbc2dac1719349c9 /docs | |
| parent | 9c37103a98d030be110eb9ba8b7ed32a47240b28 (diff) | |
Fixed #34709 -- Raised BadRequest for non-UTF-8 requests with the application/x-www-form-urlencoded content type.
Thanks Eki Xu for the report.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/5.0.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/5.0.txt b/docs/releases/5.0.txt index 0b65ee189a..7379289e42 100644 --- a/docs/releases/5.0.txt +++ b/docs/releases/5.0.txt @@ -580,6 +580,10 @@ Miscellaneous * Executing SQL queries before the app registry has been fully populated now raises :exc:`RuntimeWarning`. +* :exc:`~django.core.exceptions.BadRequest` is raised for non-UTF-8 encoded + requests with the :mimetype:`application/x-www-form-urlencoded` content type. + See :rfc:`1866` for more details. + .. _deprecated-features-5.0: Features deprecated in 5.0 |
