summaryrefslogtreecommitdiff
path: root/docs/topics/auth
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/auth')
-rw-r--r--docs/topics/auth/customizing.txt7
-rw-r--r--docs/topics/auth/passwords.txt2
2 files changed, 0 insertions, 9 deletions
diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt
index 3c73783b24..006b955274 100644
--- a/docs/topics/auth/customizing.txt
+++ b/docs/topics/auth/customizing.txt
@@ -1172,10 +1172,3 @@ Finally, specify the custom model as the default user model for your project
using the :setting:`AUTH_USER_MODEL` setting in your ``settings.py``::
AUTH_USER_MODEL = 'customauth.MyUser'
-
-.. versionchanged:: 3.2
-
- In older versions, ``ReadOnlyPasswordHashField`` is not
- :attr:`~django.forms.Field.disabled` by default and
- ``UserChangeForm.clean_password()`` is required to return the initial
- value, whatever the user provides.
diff --git a/docs/topics/auth/passwords.txt b/docs/topics/auth/passwords.txt
index c6383ed9a3..3124e5c745 100644
--- a/docs/topics/auth/passwords.txt
+++ b/docs/topics/auth/passwords.txt
@@ -178,8 +178,6 @@ To use scrypt_ as your default storage algorithm, do the following:
Increasing the salt entropy
---------------------------
-.. versionadded:: 3.2
-
Most password hashes include a salt along with their password hash in order to
protect against rainbow table attacks. The salt itself is a random value which
increases the size and thus the cost of the rainbow table and is currently set