index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
contrib
/
sessions
/
middleware.py
Age
Commit message (
Expand
)
Author
2022-11-24
Fixed #34173 -- Skipped saving sessions on 5xx responses.
SirAbhi13
2022-02-07
Refs #33476 -- Reformatted code with Black.
django-bot
2021-01-14
Refs #26601 -- Made get_response argument required and don't accept None in m...
Mariusz Felisiak
2020-09-09
Fixed #31962 -- Made SessionMiddleware raise SessionInterrupted when session ...
Hasan Ramezani
2020-08-28
Refs #31928 -- Made SessionMiddleware call super().__init__().
Kevin Michel
2020-07-16
Fixed #31790 -- Fixed setting SameSite and Secure cookies flags in HttpRespon...
Mariusz Felisiak
2020-03-18
Fixed #31224 -- Added support for asynchronous views and middleware.
Andrew Godwin
2020-02-18
Refs #26601 -- Deprecated passing None as get_response arg to middleware clas...
Claude Paroz
2019-05-29
Simplified SessionMiddleware.process_response() a bit.
Daniel Hahler
2019-03-21
Fixed #29471 -- Added 'Vary: Cookie' to invalid/empty session cookie responses.
birthdaysgift
2018-04-13
Fixed #27863 -- Added support for the SameSite cookie flag.
Alex Gaynor
2018-01-02
Fixed #28965 -- Updated Set-Cookie's Expires date format to follow RFC 7231.
Alexey
2016-11-01
Fixed #27363 -- Replaced unsafe redirect in SessionMiddleware with Suspicious...
Andrew Nester
2016-06-21
Fixed #26783 -- Fixed SessionMiddleware's empty cookie deletion when using SE...
Jon Dufresne
2016-05-17
Fixed #26601 -- Improved middleware per DEP 0005.
Florian Apolloner
2016-04-08
Fixed E128 flake8 warnings in django/.
Tim Graham
2016-02-26
Fixed #21608 -- Prevented logged out sessions being resurrected by concurrent...
Tore Lundqvist
2015-08-18
Fixed DoS possiblity in contrib.auth.views.logout()
Tim Graham
2015-05-15
Fixed #24799 -- Fixed session cookie deletion when using SESSION_COOKIE_DOMAIN
Bo Lopker
2015-05-13
Removed unnecessary arguments in .get method calls
Piotr Jakimiak
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2014-05-11
Fixed #20936 -- When logging out/ending a session, don't create a new, empty ...
Matt Robenolt
2013-11-02
More attacking E302 violators
Alex Gaynor
2013-07-29
Deprecated django.utils.importlib
Claude Paroz
2013-06-30
Define the SessionStore inside __init__ instead of process_request
Matt Robenolt
2012-07-16
Fixed #3881 -- skip saving session when response status is 500
Anssi Kääriäinen
2010-11-26
Fixed #3304 -- Added support for HTTPOnly cookies. Thanks to arvin for the su...
Russell Keith-Magee
2009-03-18
Fixed #8193: all dynamic imports in Django are now done correctly. I know thi...
Jacob Kaplan-Moss
2008-09-17
Fixed #9096 -- Fixed a slightly out-of-date comment.
Malcolm Tredinnick
2008-07-30
Removed TEST_COOKIE_NAME and TEST_COOKIE_VALUE constants from
Malcolm Tredinnick
2008-06-23
Several Django styling fixes in the `contrib.sessions` app.
Gary Wilson Jr
2008-06-07
Fixed #2548: added get/set_expiry methods to session objects. Thanks, Amit Up...
Jacob Kaplan-Moss
2007-10-31
Fixed #5816 -- Fixed a regression from [6333] that generates incorrect cookie...
Gary Wilson Jr
2007-10-29
Fixed imports, indention, and a long line.
Gary Wilson Jr
2007-10-20
Fixed #4724 -- Added support for configurable session cookie paths. Helps with
Malcolm Tredinnick
2007-09-15
Fixed #2066: session data can now be stored in the cache or on the filesystem...
Jacob Kaplan-Moss
2007-07-16
Fixed #4199 -- Changed date formatting in HTTP expires header to be spec
Malcolm Tredinnick
2007-07-03
Fixed #4729 -- SessionWrapper.pop now sets modified flag if necessary. Thanks...
Adrian Holovaty
2007-05-21
Fixed #4338 -- Added pop() method to SessionWrapper. Thanks, Gary Wilson.
Malcolm Tredinnick
2007-03-22
Reduced the chances of session object collision. The window of opportunity is
Malcolm Tredinnick
2007-03-08
Fixed #3586 -- Only output "Vary: Cookie" HTTP header when the session object
Malcolm Tredinnick
2007-01-25
Fixed #2133 -- Invalid session cookie no longer causes fatal error. Thanks, g...
Adrian Holovaty
2006-08-12
Fixed #2523 -- Added SESSION_COOKIE_SECURE setting. Thanks, mir@noris.de
Adrian Holovaty
2006-06-08
Fixed #2109 -- Convert old-style classes to new-style classes throughout Djan...
Adrian Holovaty
2006-06-01
Fixed #395 -- Added SESSION_EXPIRE_AT_BROWSER_CLOSE setting, which regulates ...
Adrian Holovaty
2006-05-02
MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompa...
Adrian Holovaty