diff options
| author | Claude Paroz <claude@2xlibre.net> | 2014-07-12 19:37:59 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2014-08-19 22:30:22 +0200 |
| commit | 72ad014b6aee3e8d996af4646b97228e82fc4cc1 (patch) | |
| tree | 3fded795d6b688db065b7d4f18c9470bd770d4aa /docs | |
| parent | 6e5e2b0e28707d1a2cb5d7fafaba2e07bd81bdb2 (diff) | |
[1.7.x] Fixed #22996 -- Prevented crash with unencoded query string
Thanks Jorge Carleitao for the report and Aymeric Augustin, Tim Graham
for the reviews.
Backport of fa02120d36 from master.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.6.6.txt | 3 | ||||
| -rw-r--r-- | docs/releases/1.7.txt | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/releases/1.6.6.txt b/docs/releases/1.6.6.txt index f3ff77dca0..f98aaa4176 100644 --- a/docs/releases/1.6.6.txt +++ b/docs/releases/1.6.6.txt @@ -40,3 +40,6 @@ Bugfixes * Fixed JavaScript errors while editing multi-geometry objects in the OpenLayers widget (`#23137 <https://code.djangoproject.com/ticket/23137>`_, `#23293 <https://code.djangoproject.com/ticket/23293>`_). + +* Prevented a crash on Python 3 with query strings containing unencoded + non-ASCII characters (`#22996 <http://code.djangoproject.com/ticket/22996>`_). diff --git a/docs/releases/1.7.txt b/docs/releases/1.7.txt index 7e0ce2921b..18884307a8 100644 --- a/docs/releases/1.7.txt +++ b/docs/releases/1.7.txt @@ -1425,6 +1425,9 @@ Miscellaneous databases, use the :djadminopt:`--database` flag to get SQL for those models (previously they would always be included in the output). +* Decoding the query string from URLs now fallbacks to the ISO-8859-1 encoding + when the input is not valid UTF-8. + .. _deprecated-features-1.7: Features deprecated in 1.7 |
