summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMattia Procopio <promat85@gmail.com>2018-03-16 02:33:15 +0100
committerTim Graham <timograham@gmail.com>2018-03-15 21:33:15 -0400
commitaeb8c381789ad93866223f8bd07d09ae5e2edd9e (patch)
tree7118556c755b9c0e0f333fda1f7a2f1bfff1638d /docs
parentb60e5fdbb778088b4b7e9e1522808f0c999e1dd9 (diff)
Fixed #29206 -- Fixed PasswordResetConfirmView crash when the URL contains a non-UUID where one is expected.
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..0c4a9aff5a 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 an invalid UUID (:ticket:`29206`).