summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMattia Procopio <promat85@gmail.com>2018-03-14 10:36:22 +0100
committerTim Graham <timograham@gmail.com>2018-03-15 21:42:47 -0400
commit72667bc6ee00032385d3a3a500a8991ee3749f42 (patch)
treeaef5aa28075042600fda3f1e96b50b0d47cb881b /docs
parent9bf8664bfd55c8b8586f94351f7e64cf258717b2 (diff)
[2.0.x] Fixed #29206 -- Fixed PasswordResetConfirmView crash when the URL contains a non-UUID where one is expected.
Backport of aeb8c381789ad93866223f8bd07d09ae5e2edd9e from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.0.4.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/2.0.4.txt b/docs/releases/2.0.4.txt
index be538b46fd..e38c16ed1d 100644
--- a/docs/releases/2.0.4.txt
+++ b/docs/releases/2.0.4.txt
@@ -17,3 +17,7 @@ Bugfixes
* Corrected admin's autocomplete widget to add a space after custom classes
(:ticket:`29221`).
+
+* Fixed ``PasswordResetConfirmView`` crash when using a user model with a
+ ``UUIDField`` primary key and the reset URL contains an encoded primary key
+ value that decodes to a non-UUID (:ticket:`29206`).