diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2025-08-19 20:57:32 +0200 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2025-08-22 16:14:09 +0200 |
| commit | b3166e1e15824aedb7a609dfda18ef36ea023d06 (patch) | |
| tree | 5509720aaee74c6a845f3ef3c5615246938539d6 /docs | |
| parent | 0b2493a0da14ea91027fec7c95cb63af126e3296 (diff) | |
Refs #35530 -- Corrected deprecation message in auth.alogin().
Follow up to ceecd518b19044181a3598c55ebed7c2545963cc.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/internals/deprecation.txt | 6 | ||||
| -rw-r--r-- | docs/releases/5.2.txt | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index 81a9d72860..0e2a7ffb36 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -64,9 +64,9 @@ details on these changes. * The ``all`` keyword argument of ``django.contrib.staticfiles.finders.find()`` will be removed. -* The fallback to ``request.user`` when ``user`` is ``None`` in - ``django.contrib.auth.login()`` and ``django.contrib.auth.alogin()`` will be - removed. +* Fallbacks to ``request.user`` and ``request.auser()`` when ``user`` is + ``None`` in ``django.contrib.auth.login()`` and + ``django.contrib.auth.alogin()``, respectively, will be removed. * The ``ordering`` keyword argument of the PostgreSQL specific aggregation functions ``django.contrib.postgres.aggregates.ArrayAgg``, diff --git a/docs/releases/5.2.txt b/docs/releases/5.2.txt index feaeb9436a..20d82db98e 100644 --- a/docs/releases/5.2.txt +++ b/docs/releases/5.2.txt @@ -479,9 +479,9 @@ Miscellaneous * The ``all`` argument for the ``django.contrib.staticfiles.finders.find()`` function is deprecated in favor of the ``find_all`` argument. -* The fallback to ``request.user`` when ``user`` is ``None`` in - ``django.contrib.auth.login()`` and ``django.contrib.auth.alogin()`` will be - removed. +* Fallbacks to ``request.user`` and ``request.auser()`` when ``user`` is + ``None`` in ``django.contrib.auth.login()`` and + ``django.contrib.auth.alogin()``, respectively, are deprecated. * The ``ordering`` keyword argument of the PostgreSQL specific aggregation functions ``django.contrib.postgres.aggregates.ArrayAgg``, |
