summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2025-09-05 14:06:36 -0400
committernessita <124304+nessita@users.noreply.github.com>2025-09-17 15:17:05 -0300
commit32e266dc5b756b52e6db4f4f453f51274aa9234e (patch)
treed9714ba24c866dac1e126723c4a06a7a4cf35ffa /docs
parenta146fe293099d7f860ba13e4b3a571bbda55af22 (diff)
Refs #35530 -- Removed request.user or auser() fallback in auth.login and auth.alogin.
Per deprecation timeline.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/6.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/6.1.txt b/docs/releases/6.1.txt
index 9ed7bbd8e6..c95b9b1c57 100644
--- a/docs/releases/6.1.txt
+++ b/docs/releases/6.1.txt
@@ -268,3 +268,7 @@ to remove usage of these features.
* The ``all`` parameter for the ``django.contrib.staticfiles.finders.find()``
function is removed in favor of the ``find_all`` parameter.
+
+* Fallbacks to ``request.user`` and ``request.auser()`` when ``user`` is
+ ``None`` in ``django.contrib.auth.login()`` and
+ ``django.contrib.auth.alogin()``, respectively, are removed.