summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2026-04-01 09:36:16 -0400
committerJacob Walls <jacobtylerwalls@gmail.com>2026-04-02 09:01:19 -0400
commita5c28dc1d7606f11adb932d0bd4dba899a028007 (patch)
tree50cdbb8e8c4b0d1eb4f630560216f5ecdc38c6a4 /docs
parent3436edb6966a83ac6be06dbc422df89fdc9e5653 (diff)
[6.0.x] Fixed #37017 -- Fixed setting or clearing of request.user after alogin/alogout().
Regression in 31a43c571f4d036827d4fd7a5f615591637dc1be. Backport of a32c7075cf634aee1f4f3deecd27f194097ec0c2 from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/6.0.4.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/releases/6.0.4.txt b/docs/releases/6.0.4.txt
index a32a49dc93..e24397d9bc 100644
--- a/docs/releases/6.0.4.txt
+++ b/docs/releases/6.0.4.txt
@@ -10,4 +10,7 @@ issues with severity "low", and several bugs in 6.0.3.
Bugfixes
========
-* ...
+* Fixed a regression in Django 6.0 where :func:`~django.contrib.auth.alogin`
+ and :func:`~django.contrib.auth.alogout` did not respectively set or clear
+ ``request.user`` if it had already been materialized (e.g., by sync
+ middleware) (:ticket:`37017`).