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
/
cached_db.py
Age
Commit message (
Expand
)
Author
2024-03-13
Fixed #34901 -- Added async-compatible interface to session engines.
Jon Janzen
2024-02-21
Fixed #34806 -- Made cached_db session backend resilient to cache write errors.
Sulabh Katila
2022-02-07
Refs #33476 -- Reformatted code with Black.
django-bot
2018-01-03
Fixed #28982 -- Simplified code with and/or.
Дилян Палаузов
2017-12-08
Made session loading in cached_db engine more DRY.
Jozef
2017-04-27
Refs #27795 -- Replaced many force_text() with str()
Claude Paroz
2017-02-04
Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257.
Anton Samarchyan
2017-01-25
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2016-04-08
Fixed E128 flake8 warnings in django/.
Tim Graham
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-20
Fixed incorrect session.flush() in cached_db session backend.
Tim Graham
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-23
Fixed #21012 -- New API to access cache backends.
Curtis Maloney
2013-09-05
Fixed #21000 -- Made cached_db session backend respect SESSION_CACHE_ALIAS
CHI Cheng
2013-05-25
Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation.
Preston Holmes
2012-10-27
Added optional kwargs to get_expiry_age/date.
Aymeric Augustin
2012-10-27
Fixed #19200 -- Session expiry with cached_db
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
Optimized the cached_db session backend to check if a key exists in the cache...
Aymeric Augustin
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
2009-01-10
Fixed #6791: added a write-through cache session backend: session data is wri...
Jacob Kaplan-Moss