summaryrefslogtreecommitdiff
path: root/django/contrib/sessions/backends/db.py
AgeCommit message (Expand)Author
2024-03-13Fixed #34901 -- Added async-compatible interface to session engines.Jon Janzen
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2017-12-08Made session loading in cached_db engine more DRY.Jozef
2017-04-27Refs #27795 -- Replaced many force_text() with str()Claude Paroz
2017-02-04Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257.Anton Samarchyan
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-02-26Fixed #21608 -- Prevented logged out sessions being resurrected by concurrent...Tore Lundqvist
2015-08-27Fixed #22634 -- Made the database-backed session backends more extensible.Sergey Kolosov
2015-07-08Fixed #19324 -- Avoided creating a session record when loading the session.Carl Meyer
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-09-30Fixed #21134 -- Prevented queries in broken transactions.Aymeric Augustin
2013-05-25Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation.Preston Holmes
2013-03-11Deprecated transaction.commit/rollback_unless_managed.Aymeric Augustin
2012-10-28Fixed #18194 -- Expiration of file-based sessionsAymeric Augustin
2012-10-27Fixed #19200 -- Session expiry with cached_dbAymeric Augustin
2012-08-12[py3] Fix encoding issues in contrib.sessionsClaude Paroz
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-01-24Fixed #17506 -- Did a minor optimization in the sessions' database backend. T...Julien Phalip
2011-11-27Fixed #11555 -- Made SessionBase.session_key read-only. Cleaned up code sligh...Aymeric Augustin
2011-11-20Upgraded django.contrib.sessions to be compatible with time zone support.Aymeric Augustin
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2010-11-14Fixed potential circular import problem.Luke Plant
2010-03-25Fixed #13200 -- Updated the DB session backend to make full use of routers, d...Russell Keith-Magee
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2008-08-23Avoid a crash when unencoding session data for the db backend. This is requiredMalcolm Tredinnick
2008-08-15Made a few small tweaks to reduce persistent storage accesses in the sessionMalcolm Tredinnick
2008-08-14Fixed #8314 -- Fixed an infinite loop caused when submitting a session key (viaMalcolm Tredinnick
2008-08-14Implemented a flush() method on sessions that cleans out the session andMalcolm Tredinnick
2008-08-14Added guaranteed atomic creation of new session objects. Slightly backwardsMalcolm Tredinnick
2008-07-22Fixed #7847 -- Removed a whole bunch of unused imports from throughout the co...Adrian Holovaty
2008-06-23Several Django styling fixes in the `contrib.sessions` app.Gary Wilson Jr
2008-06-07Fixed #2548: added get/set_expiry methods to session objects. Thanks, Amit Up...Jacob Kaplan-Moss
2008-01-06Fixed a subtle corner case whereby sending a bad session ID generates new (un...Malcolm Tredinnick
2007-09-15Fixed #2066: session data can now be stored in the cache or on the filesystem...Jacob Kaplan-Moss