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
/
db.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-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
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-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2013-11-02
More attacking E302 violators
Alex Gaynor
2013-09-30
Fixed #21134 -- Prevented queries in broken transactions.
Aymeric Augustin
2013-05-25
Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation.
Preston Holmes
2013-03-11
Deprecated transaction.commit/rollback_unless_managed.
Aymeric Augustin
2012-10-28
Fixed #18194 -- Expiration of file-based sessions
Aymeric Augustin
2012-10-27
Fixed #19200 -- Session expiry with cached_db
Aymeric Augustin
2012-08-12
[py3] Fix encoding issues in contrib.sessions
Claude Paroz
2012-08-07
[py3] Ported django.utils.encoding.
Aymeric Augustin
2012-01-24
Fixed #17506 -- Did a minor optimization in the sessions' database backend. T...
Julien Phalip
2011-11-27
Fixed #11555 -- Made SessionBase.session_key read-only. Cleaned up code sligh...
Aymeric Augustin
2011-11-20
Upgraded django.contrib.sessions to be compatible with time zone support.
Aymeric Augustin
2011-07-13
Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...
Jannis Leidel
2010-11-14
Fixed potential circular import problem.
Luke Plant
2010-03-25
Fixed #13200 -- Updated the DB session backend to make full use of routers, d...
Russell Keith-Magee
2009-12-22
Fixed #1142 -- Added multiple database support.
Russell Keith-Magee
2008-08-23
Avoid a crash when unencoding session data for the db backend. This is required
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
2008-01-06
Fixed a subtle corner case whereby sending a bad session ID generates new (un...
Malcolm Tredinnick
2007-09-15
Fixed #2066: session data can now be stored in the cache or on the filesystem...
Jacob Kaplan-Moss