summaryrefslogtreecommitdiff
path: root/django/contrib/sessions/backends/base.py
AgeCommit message (Expand)Author
2016-04-20Fixed #26520 -- Fixed a regression where SessionBase.pop() didn't return a Ke...Tobias Kroenke
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-12-31Removed British/Austrialian word: whilist.Tim Graham
2015-06-06Fixed #24915 -- Added stricter session key validationDavid Bannon
2015-04-13Fixed #24621 -- Fixed and documented SessionBase.pop's second argumentAdam Zapletal
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
2014-02-08Fixed #21674 -- Deprecated the import_by_path() function in favor of import_s...Berker Peksag
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-09-10Fixed #20841 -- Added messages to NotImplementedErrorsGregor MacGregor
2013-08-22Fixed #20922 -- Allowed customizing the serializer used by contrib.sessionsTim Graham
2013-05-25Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation.Preston Holmes
2012-11-29Fixed #19356 -- Increased session key entropy.Aymeric Augustin
2012-10-28Fixed #18194 -- Expiration of file-based sessionsAymeric Augustin
2012-10-27Added optional kwargs to get_expiry_age/date.Aymeric Augustin
2012-10-27Fixed #19200 -- Session expiry with cached_dbAymeric Augustin
2012-08-29Replaced many smart_bytes by force_bytesClaude Paroz
2012-08-15[py3] Fixed test_client_regress testsClaude Paroz
2012-08-14[py3] Avoided the deprecated base64 interface.Aymeric Augustin
2012-08-12[py3] Fix encoding issues in contrib.sessionsClaude Paroz
2012-07-22[py3] Switched to Python 3-compatible imports.Aymeric Augustin
2012-02-23Cleanup to use get_random_string consistently.Paul McMillan
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-09-09Replaced `has_key()` calls with `in` to ease Python 3 port. Thanks, Martin vo...Jannis Leidel
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-03-30Removed Django 1.2 compatibility fallback for session data integrity check hash.Luke Plant
2011-03-28Removed a bunch of Python 2.4 workarounds now that we don't support it. Refs ...Adrian Holovaty
2010-10-14Fixed #14445 - Use HMAC and constant-time comparison functions where needed.Luke Plant
2008-08-21When logging in, change the session key whilst preserving any existingMalcolm 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-14Fixed #8310 -- Actually use the SystemRandom RNG, if available, which fixes anMalcolm Tredinnick
2008-08-14Implemented a flush() method on sessions that cleans out the session andMalcolm Tredinnick
2008-08-14Added a clear() method to sessions. Patch from mrts. Refs #7515.Malcolm Tredinnick
2008-08-14Added guaranteed atomic creation of new session objects. Slightly backwardsMalcolm Tredinnick
2008-08-02Fixed #7919 -- md5 and sha modules are deprecated since Python 2.5, use hashl...Gary Wilson Jr
2008-06-23Several Django styling fixes in the `contrib.sessions` app.Gary Wilson Jr
2008-06-18Fixed #7429 -- Modified the Session base class a little more dictionary-like ...Russell Keith-Magee
2008-06-07Fixed #2548: added get/set_expiry methods to session objects. Thanks, Amit Up...Jacob Kaplan-Moss
2007-12-02Fixed #6087 -- Added setdefault() support to the Session object. Thanks, BenMalcolm Tredinnick
2007-10-20Fixed #4729 -- Restored functionality to the Session class so that popping aMalcolm Tredinnick
2007-09-20Removed trailing whitespace in django/contrib/sessions/backends/base.pyAdrian Holovaty
2007-09-20Fixed #5548 -- Reintroduced Jython workaround for os.getpid(), which was lost...Adrian Holovaty
2007-09-16Refs #5513: improved session performance after [6333]'s session refactoring. ...Jacob Kaplan-Moss
2007-09-15Fixed #2066: session data can now be stored in the cache or on the filesystem...Jacob Kaplan-Moss