summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorMike Edmunds <medmunds@gmail.com>2025-07-16 15:01:49 -0700
committernessita <124304+nessita@users.noreply.github.com>2025-07-17 14:01:16 -0300
commitfc793fc303a3d516ab51bb21aa317031caabe7b4 (patch)
treedfcb559adacc3b5dd7e276a4d3b4740a06dc7064 /docs/internals
parent5289ce65b9a1963707767cc11c476679ab445135 (diff)
Fixed #36163 -- Deprecated most positional arguments in django.core.mail.
In public mail APIs, changed less frequently used parameters from keyword-or-positional to keyword-only, emitting a warning during the required deprecation period.
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/deprecation.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index fb37d43849..98b8eade75 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -38,6 +38,9 @@ details on these changes.
argument of ``django.core.paginator.Paginator`` and
``django.core.paginator.AsyncPaginator`` will no longer be allowed.
+* The :mod:`django.core.mail` APIs will no longer accept certain parameters as
+ positional arguments. These must be passed as keyword arguments instead.
+
.. _deprecation-removed-in-6.1:
6.1