diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-09-14 16:09:28 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-09-18 22:12:40 +0200 |
| commit | 3a3e737694b89e29308e54f12faaa375226b7060 (patch) | |
| tree | 2156816a74118e1216a1a8fb39b908237aa564e3 /docs | |
| parent | 5e4c1793b714a975400b9277a66f99efafa2d92c (diff) | |
Refs #33199 -- Removed support for passing positional arguments to Signer/TimestampSigner.
Per deprecation timeline.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/5.1.txt | 3 | ||||
| -rw-r--r-- | docs/topics/signing.txt | 8 |
2 files changed, 3 insertions, 8 deletions
diff --git a/docs/releases/5.1.txt b/docs/releases/5.1.txt index 2ca8a492ca..b365020d29 100644 --- a/docs/releases/5.1.txt +++ b/docs/releases/5.1.txt @@ -277,3 +277,6 @@ to remove usage of these features. * Support for passing encoded JSON string literals to ``JSONField`` and associated lookups and expressions is removed. + +* Support for passing positional arguments to ``Signer`` and + ``TimestampSigner`` is removed. diff --git a/docs/topics/signing.txt b/docs/topics/signing.txt index eaf1696b2c..9572f9baf9 100644 --- a/docs/topics/signing.txt +++ b/docs/topics/signing.txt @@ -120,10 +120,6 @@ generate signatures. You can use a different secret by passing it to the of additional values used to validate signed data, defaults to :setting:`SECRET_KEY_FALLBACKS`. - .. deprecated:: 4.2 - - Support for passing positional arguments is deprecated. - Using the ``salt`` argument --------------------------- @@ -209,10 +205,6 @@ created within a specified period of time: otherwise raises ``SignatureExpired``. The ``max_age`` parameter can accept an integer or a :py:class:`datetime.timedelta` object. - .. deprecated:: 4.2 - - Support for passing positional arguments is deprecated. - .. _signing-complex-data: Protecting complex data structures |
