diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-01-07 13:10:37 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-01-14 17:50:04 +0100 |
| commit | 12ac4916af034221a4e08ce6b5669e53a0223a67 (patch) | |
| tree | eff8fa21d6324269411935fdc423908c6a9fe098 /docs/releases | |
| parent | 9e456f3166f6f4f7da9ec00e2160c1edc88fe5b3 (diff) | |
Refs #28622 -- Removed settings.PASSWORD_RESET_TIMEOUT_DAYS per deprecation timeline.
Diffstat (limited to 'docs/releases')
| -rw-r--r-- | docs/releases/1.4.txt | 2 | ||||
| -rw-r--r-- | docs/releases/1.6.txt | 4 | ||||
| -rw-r--r-- | docs/releases/4.0.txt | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/docs/releases/1.4.txt b/docs/releases/1.4.txt index aa760cc4c9..4659b22f32 100644 --- a/docs/releases/1.4.txt +++ b/docs/releases/1.4.txt @@ -781,7 +781,7 @@ time you need to run Django 1.3 for the data to expire or become irrelevant. * Consequences: Password reset links from before the upgrade will not work. - * Time period: Defined by :setting:`PASSWORD_RESET_TIMEOUT_DAYS`. + * Time period: Defined by ``PASSWORD_RESET_TIMEOUT_DAYS``. Form-related hashes: these have a much shorter lifetime and are relevant only for the short window where a user might fill in a form generated by the diff --git a/docs/releases/1.6.txt b/docs/releases/1.6.txt index 60df27ad31..d6342a4cb2 100644 --- a/docs/releases/1.6.txt +++ b/docs/releases/1.6.txt @@ -756,7 +756,7 @@ A temporary shim for ``django.contrib.auth.views.password_reset_confirm()`` that will allow password reset links generated prior to Django 1.6 to continue to work has been added to provide backwards compatibility; this will be removed in Django 1.7. Thus, as long as your site has been running Django 1.6 for more -than :setting:`PASSWORD_RESET_TIMEOUT_DAYS`, this change will have no effect. +than ``PASSWORD_RESET_TIMEOUT_DAYS``, this change will have no effect. If not (for example, if you upgrade directly from Django 1.5 to Django 1.7), then any password reset links generated before you upgrade to Django 1.7 or later won't work after the upgrade. @@ -788,7 +788,7 @@ the ``name`` argument so it doesn't conflict with the new url:: 'django.contrib.auth.views.password_reset_confirm_uidb36'), You can remove this URL pattern after your app has been deployed with Django -1.6 for :setting:`PASSWORD_RESET_TIMEOUT_DAYS`. +1.6 for ``PASSWORD_RESET_TIMEOUT_DAYS``. Default session serialization switched to JSON ---------------------------------------------- diff --git a/docs/releases/4.0.txt b/docs/releases/4.0.txt index 636ddf5ec5..3f3d46617e 100644 --- a/docs/releases/4.0.txt +++ b/docs/releases/4.0.txt @@ -267,4 +267,4 @@ to remove usage of these features. See :ref:`deprecated-features-3.1` for details on these changes, including how to remove usage of these features. -* ... +* The ``PASSWORD_RESET_TIMEOUT_DAYS`` setting is removed. |
