summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2018-08-02 21:56:26 -0400
committerTim Graham <timograham@gmail.com>2018-08-02 21:56:43 -0400
commit0cfca0f2ccc2050de9de65a28d241d8cafcfe666 (patch)
tree6b7c2d58e9ee2e5fea8ed0312d260911f751c186 /docs
parent66c0c58cf2bc08233ca7bd1d4973e34cbc2ab2ec (diff)
[2.1.x] Fixed #29627 -- Fixed QueryDict.urlencode() crash with non-string values.
Regression in 7d96f0c49ab750799860e42716d7105e11de44de. Backport of d8e2be459f97f1773c7edf7d37de180139146176 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.1.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/2.1.1.txt b/docs/releases/2.1.1.txt
index dd9662118d..b9ac90e33b 100644
--- a/docs/releases/2.1.1.txt
+++ b/docs/releases/2.1.1.txt
@@ -11,3 +11,6 @@ Bugfixes
* Fixed a race condition in ``QuerySet.update_or_create()`` that could result
in data loss (:ticket:`29499`).
+
+* Fixed a regression where ``QueryDict.urlencode()`` crashed if the dictionary
+ contains a non-string value (:ticket:`29627`).