summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorVincenzo Pandolfo <pandolfovince@gmail.com>2016-03-14 20:21:05 +0000
committerTim Graham <timograham@gmail.com>2016-03-14 20:20:24 -0400
commitd0fe6c915665fa3220e84bd691ba7002a357e5c5 (patch)
tree6b295468e71e1ef7a887af7875c67d60b316edca /docs
parentb4347d82b767c5a6c288ae010669dea92336fadd (diff)
Fixed #26334 -- Removed whitespace stripping from contrib.auth password fields.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.9.5.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/releases/1.9.5.txt b/docs/releases/1.9.5.txt
index 55fd794d78..7e8efb6fec 100644
--- a/docs/releases/1.9.5.txt
+++ b/docs/releases/1.9.5.txt
@@ -19,3 +19,9 @@ Bugfixes
* Fixed data loss on SQLite where ``DurationField`` values with fractional
seconds could be saved as ``None`` (:ticket:`26324`).
+
+* The forms in ``contrib.auth`` no longer strip trailing and leading whitespace
+ from the password fields (:ticket:`26334`). The change requires users who set
+ their password to something with such whitespace after a site updated to
+ Django 1.9 to reset their password. It provides backwards-compatibility for
+ earlier versions of Django.