diff options
| author | Tim Graham <timograham@gmail.com> | 2015-01-03 13:43:13 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-03 13:43:13 -0500 |
| commit | 572ad9a92e08797f12e547477efcce7893159cfb (patch) | |
| tree | 5704f573978afe17443b924f4f8eb509f9889d06 /docs | |
| parent | 439f15beabe2e4d21232798f805ba69367611276 (diff) | |
Added release note for PBKDF2 iteration count increase.
refs 6732566967888f2c12efee1146940c85c0154e60
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.8.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/releases/1.8.txt b/docs/releases/1.8.txt index 02fae70c82..12d0fbe69e 100644 --- a/docs/releases/1.8.txt +++ b/docs/releases/1.8.txt @@ -161,13 +161,20 @@ Minor features * :class:`~django.contrib.auth.forms.PasswordResetForm` now has a method :meth:`~django.contrib.auth.forms.PasswordResetForm.send_email` that can be overridden to customize the mail to be sent. + * The ``max_length`` of :attr:`Permission.name <django.contrib.auth.models.Permission.name>` has been increased from 50 to 255 characters. Please run the database migration. + * :attr:`~django.contrib.auth.models.CustomUser.USERNAME_FIELD` and :attr:`~django.contrib.auth.models.CustomUser.REQUIRED_FIELDS` now supports :class:`~django.db.models.ForeignKey`\s. +* The default iteration count for the PBKDF2 password hasher has been + increased by 33%. This backwards compatible change will not affect users who + have subclassed ``django.contrib.auth.hashers.PBKDF2PasswordHasher`` to + change the default value. + :mod:`django.contrib.gis` ^^^^^^^^^^^^^^^^^^^^^^^^^^ |
