diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-07-31 07:33:13 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-07-31 22:05:02 +0200 |
| commit | 1d6fdca557e674b9a789b51caadca8985e588492 (patch) | |
| tree | 86132a2a630f06698daaed5ab869ce94c5e064f2 /docs/releases/3.1.txt | |
| parent | f4ac167119e8897c398527c392ed117326496652 (diff) | |
Refs #27468 -- Added tests and release notes for signing.dumps()/loads() changes.
Follow up to 71c4fb7beb8e3293243140e4bd74e53989196440.
Diffstat (limited to 'docs/releases/3.1.txt')
| -rw-r--r-- | docs/releases/3.1.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/releases/3.1.txt b/docs/releases/3.1.txt index 22e47c93ae..59980ef310 100644 --- a/docs/releases/3.1.txt +++ b/docs/releases/3.1.txt @@ -418,9 +418,10 @@ Security origins. If you need the previous behavior, explicitly set :setting:`SECURE_REFERRER_POLICY` to ``None``. -* The default :class:`django.core.signing.Signer` algorithm is changed to the - SHA-256. Support for signatures made with the old SHA-1 algorithm remains - until Django 4.0. +* The default algorithm of :class:`django.core.signing.Signer`, + :meth:`django.core.signing.loads`, and :meth:`django.core.signing.dumps` is + changed to the SHA-256. Support for signatures made with the old SHA-1 + algorithm remains until Django 4.0. Also, the new ``algorithm`` parameter of the :class:`~django.core.signing.Signer` allows customizing the hashing |
