diff options
| author | Claude Paroz <claude@2xlibre.net> | 2020-02-15 12:20:37 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-03-02 12:16:48 +0100 |
| commit | d4fff711d4c97356bd6ba1273d2a5e349326eb5f (patch) | |
| tree | a8522faded6f99d2bd3299e4cb439b22b848ea38 /docs | |
| parent | daaa894960e1b2bce8ee31b7c109be84f598a84e (diff) | |
Fixed #31274 -- Used signing infrastructure in SessionBase.encode()/decode().
Thanks Mariusz Felisiak and Florian Apolloner for the reviews.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/internals/deprecation.txt | 2 | ||||
| -rw-r--r-- | docs/releases/3.1.txt | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index 2d7a72ae2f..3774afa59e 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -52,6 +52,8 @@ details on these changes. * Support for the pre-Django 3.1 password reset tokens in the admin site (that use the SHA-1 hashing algorithm) will be removed. +* Support for the pre-Django 3.1 encoding format of sessions will be removed. + * The ``get_request`` argument for ``django.utils.deprecation.MiddlewareMixin.__init__()`` will be required and won't accept ``None``. diff --git a/docs/releases/3.1.txt b/docs/releases/3.1.txt index d4ab35a310..669f2ca01e 100644 --- a/docs/releases/3.1.txt +++ b/docs/releases/3.1.txt @@ -539,6 +539,10 @@ Miscellaneous from the format generated by older versions of Django. Support for the old format remains until Django 4.0. +* The encoding format of sessions is different from the format generated by + older versions of Django. Support for the old format remains until Django + 4.0. + .. _removed-features-3.1: Features removed in 3.1 |
