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
/
backends
/
cache.py
Age
Commit message (
Expand
)
Author
2024-03-13
Fixed #34901 -- Added async-compatible interface to session engines.
Jon Janzen
2022-02-07
Refs #33476 -- Reformatted code with Black.
django-bot
2017-05-03
Fixed #28167 -- Fixed cache backend's SessionStore.exists() if session_key is...
Tim Graham
2017-01-25
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-18
Refs #23919 -- Removed most of remaining six usage
Claude Paroz
2016-04-04
Refs #21608 -- Fixed incorrect cache key in cache session backend's save().
Jon Dufresne
2016-02-26
Fixed #21608 -- Prevented logged out sessions being resurrected by concurrent...
Tore Lundqvist
2015-08-27
Fixed #22634 -- Made the database-backed session backends more extensible.
Sergey Kolosov
2015-07-08
Fixed #19324 -- Avoided creating a session record when loading the session.
Carl Meyer
2015-05-13
Removed unnecessary arguments in .get method calls
Piotr Jakimiak
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2014-12-13
Fixed #23812 -- Changed django.utils.six.moves.xrange imports to range
Michael Hall
2013-11-23
Fixed #21012 -- New API to access cache backends.
Curtis Maloney
2012-10-31
Fixed #17083 -- Allowed sessions to use non-default cache.
Aymeric Augustin
2012-10-28
Fixed #14093 -- Improved error message in the cache session backend.
Aymeric Augustin
2012-10-28
Fixed #18194 -- Expiration of file-based sessions
Aymeric Augustin
2012-07-22
[py3] Added Python 3 compatibility for xrange.
Aymeric Augustin
2012-03-23
Fixed #17810 (again). Catch session key errors.
Aymeric Augustin
2012-03-23
Fixed an incompatibility with Python 2.5 in the changes done in r17795. Refs ...
Jannis Leidel
2012-03-23
Fixed #17810. Catch session key errors.
Paul McMillan
2011-11-27
Fixed #11555 -- Made SessionBase.session_key read-only. Cleaned up code sligh...
Aymeric Augustin
2011-09-10
Corrected an issue which could allow attackers to manipulate session data usi...
Russell Keith-Magee
2011-09-09
Replaced `has_key()` calls with `in` to ease Python 3 port. Thanks, Martin vo...
Jannis Leidel
2009-03-01
Fixed #9548 -- Correctly detect existence of empty sessions with cache backend.
Malcolm Tredinnick
2008-08-27
Fixed #8311 -- Avoid an infinite loop with session key generation when using
Malcolm Tredinnick
2008-08-16
Fixed #8351 -- Fixed the returned value when we attempt to load a cache-backe...
Malcolm Tredinnick
2008-08-15
Made a few small tweaks to reduce persistent storage accesses in the session
Malcolm Tredinnick
2008-08-14
Fixed #8314 -- Fixed an infinite loop caused when submitting a session key (via
Malcolm Tredinnick
2008-08-14
Implemented a flush() method on sessions that cleans out the session and
Malcolm Tredinnick
2008-08-14
Added guaranteed atomic creation of new session objects. Slightly backwards
Malcolm Tredinnick
2008-07-22
Fixed #7847 -- Removed a whole bunch of unused imports from throughout the co...
Adrian Holovaty
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-09-15
Fixed #2066: session data can now be stored in the cache or on the filesystem...
Jacob Kaplan-Moss