diff options
| author | Claude Paroz <claude@2xlibre.net> | 2020-01-30 23:11:09 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-02-04 08:05:02 +0100 |
| commit | 8ae84156d62bfc24d71e65cfe4d5cb84b9b1bd91 (patch) | |
| tree | 5775472d0351363c9748be5eec171da3441c7162 /docs | |
| parent | bcc9fa25285f506666fa5074fc43c7114d61bb79 (diff) | |
Fixed #27604 -- Used the cookie signer to sign message cookies.
Co-authored-by: Craig Anderson <craiga@craiga.id.au>
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/internals/deprecation.txt | 3 | ||||
| -rw-r--r-- | docs/releases/3.1.txt | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index dc6923d488..db6df0fbbe 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -46,6 +46,9 @@ details on these changes. * The ``HttpRequest.is_ajax()`` method will be removed. +* Support for the pre-Django 3.1 encoding format of cookies values used by + ``django.contrib.messages.storage.cookie.CookieStorage`` will be removed. + See the :ref:`Django 3.1 release notes <deprecated-features-3.1>` for more details on these changes. diff --git a/docs/releases/3.1.txt b/docs/releases/3.1.txt index 40380b6274..a09da6dd30 100644 --- a/docs/releases/3.1.txt +++ b/docs/releases/3.1.txt @@ -482,6 +482,11 @@ Miscellaneous the new :meth:`.HttpRequest.accepts` method if your code depends on the client ``Accept`` HTTP header. +* The encoding format of cookies values used by + :class:`~django.contrib.messages.storage.cookie.CookieStorage` 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 |
