summaryrefslogtreecommitdiff
path: root/django/contrib/sessions/backends/cached_db.py
AgeCommit message (Expand)Author
2024-03-13Fixed #34901 -- Added async-compatible interface to session engines.Jon Janzen
2024-02-21Fixed #34806 -- Made cached_db session backend resilient to cache write errors.Sulabh Katila
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2018-01-03Fixed #28982 -- Simplified code with and/or.Дилян Палаузов
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
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-05-20Fixed incorrect session.flush() in cached_db session backend.Tim Graham
2015-05-13Removed unnecessary arguments in .get method callsPiotr Jakimiak
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2014-05-11Fixed #20936 -- When logging out/ending a session, don't create a new, empty ...Matt Robenolt
2013-11-23Fixed #21012 -- New API to access cache backends.Curtis Maloney
2013-09-05Fixed #21000 -- Made cached_db session backend respect SESSION_CACHE_ALIASCHI Cheng
2013-05-25Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation.Preston Holmes
2012-10-27Added optional kwargs to get_expiry_age/date.Aymeric Augustin
2012-10-27Fixed #19200 -- Session expiry with cached_dbAymeric Augustin
2012-03-23Fixed #17810 (again). Catch session key errors.Aymeric Augustin
2012-03-23Fixed an incompatibility with Python 2.5 in the changes done in r17795. Refs ...Jannis Leidel
2012-03-23Fixed #17810. Catch session key errors.Paul McMillan
2011-11-27Optimized the cached_db session backend to check if a key exists in the cache...Aymeric Augustin
2011-11-27Fixed #11555 -- Made SessionBase.session_key read-only. Cleaned up code sligh...Aymeric Augustin
2011-09-10Corrected an issue which could allow attackers to manipulate session data usi...Russell Keith-Magee
2009-01-10Fixed #6791: added a write-through cache session backend: session data is wri...Jacob Kaplan-Moss