File tree Expand file tree Collapse file tree 4 files changed +6
-0
lines changed Expand file tree Collapse file tree 4 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ Bug Fixes:
10
10
* Inconsistent color codes for dark mode and `preferes-color-scheme: auto ` (#7979) (46ff58321) -- Fabian Braun
11
11
* Invalidate permissions cache if group assignment of user changes (ec05b6f2f) -- Fabian Braun
12
12
* Accept legacy action names for page permission checks (#8021) (9a1e178) -- Fabian Braun
13
+ * Mark language and user middleware synchronous for ASGI (#7985) -- John Bazik
13
14
14
15
Statistics:
15
16
-----------
Original file line number Diff line number Diff line change 9
9
10
10
11
11
class LanguageCookieMiddleware (MiddlewareMixin ):
12
+ async_capable = False
13
+
12
14
def __init__ (self , get_response ):
13
15
super ().__init__ (get_response )
14
16
Original file line number Diff line number Diff line change 7
7
8
8
9
9
class CurrentUserMiddleware (MiddlewareMixin ):
10
+ async_capable = False
11
+
10
12
def process_request (self , request ):
11
13
from cms .utils .permissions import set_current_user
12
14
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ Bug Fixes:
35
35
* Inconsistent color codes for dark mode and `preferes-color-scheme: auto ` (#7979) (46ff58321) -- Fabian Braun
36
36
* Invalidate permissions cache if group assignment of user changes (ec05b6f2f) -- Fabian Braun
37
37
* Accept legacy action names for page permission checks (#8021) (9a1e178) -- Fabian Braun
38
+ * Mark language and user middleware synchronous for ASGI (#7985) -- John Bazik
38
39
39
40
40
41
Statistics:
You can’t perform that action at this time.
0 commit comments