summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.1.txt3
-rw-r--r--docs/topics/signing.txt8
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