summaryrefslogtreecommitdiff
path: root/django/contrib/sessions
AgeCommit message (Expand)Author
2013-09-30Fixed #21134 -- Prevented queries in broken transactions.Aymeric Augustin
2013-09-10Fixed #20841 -- Added messages to NotImplementedErrorsGregor MacGregor
2013-09-06Fixed a number of flake8 errors -- particularly around unused imports and loc...Alex Gaynor
2013-09-05Fixed #21000 -- Made cached_db session backend respect SESSION_CACHE_ALIASCHI Cheng
2013-08-22Fixed #20922 -- Allowed customizing the serializer used by contrib.sessionsTim Graham
2013-07-29Deprecated django.utils.importlibClaude Paroz
2013-07-01Stopped using django.utils.unittest in the test suite.Aymeric Augustin
2013-06-30Define the SessionStore inside __init__ instead of process_requestMatt Robenolt
2013-05-25Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation.Preston Holmes
2013-05-19Fix #19664 -- Illegal Characters In Session Key Give Fatal Error On File Back...Erik Romijn
2013-05-02Updated translation templates and removed en translationsClaude Paroz
2013-03-28Updated translation templatesClaude Paroz
2013-03-11Deprecated transaction.commit/rollback_unless_managed.Aymeric Augustin
2013-02-26Merged contrib translations from 1.5 branchClaude Paroz
2013-02-24Fixed #9084 - Best approach for an OS to atomically rename the session file.Joeri Bekker
2013-02-23Fixed regression introduced in 146ed13a.Mathijs de Bruin
2012-11-29Fixed #19356 -- Increased session key entropy.Aymeric Augustin
2012-11-06Fixed #19254 -- Bug in SESSION_FILE_PATH handling.Aymeric Augustin
2012-10-31Fixed #17083 -- Allowed sessions to use non-default cache.Aymeric Augustin
2012-10-28Marked cookies-based session expiry test as an expected failure.Aymeric Augustin
2012-10-28Fixed #14093 -- Improved error message in the cache session backend.Aymeric Augustin
2012-10-28Fixed #18194 -- Expiration of file-based sessionsAymeric Augustin
2012-10-27Improved tests introduced in 04b00b6.Aymeric Augustin
2012-10-27Added optional kwargs to get_expiry_age/date.Aymeric Augustin
2012-10-27Fixed #19200 -- Session expiry with cached_dbAymeric Augustin
2012-10-27Fixed #18978 -- Moved cleanup command to sessions.Aymeric Augustin
2012-10-15Updated base translation filesClaude Paroz
2012-09-21Fixed #10853 -- Skipped some sessions tests with dummy cache backendClaude Paroz
2012-09-08Adjust d7853c5 to not show ignorable warnings when running tests.Malcolm Tredinnick
2012-09-08Remove a couple unused imports.Carl Meyer
2012-09-08Removed warning check in test_load_overlong_keyClaude Paroz
2012-08-29Replaced many smart_bytes by force_bytesClaude Paroz
2012-08-15Removed unneeded smart_bytes import which was introduced in f2fff84bc.Florian Apolloner
2012-08-15[py3] fixed session file backend.Florian Apolloner
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-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-07-22[py3] Added Python 3 compatibility for xrange.Aymeric Augustin
2012-07-22[py3] Switched to Python 3-compatible imports.Aymeric Augustin
2012-07-16Fixed #3881 -- skip saving session when response status is 500Anssi Kääriäinen
2012-05-05Made more extensive usage of context managers with open.Claude Paroz
2012-05-03Inserted more simplefilter calls to be sure warnings are emitted.Claude Paroz
2012-05-03Made warning assertions work with or without -Wall python switchClaude Paroz
2012-05-03Used catch_warnings instead of save/restore methods. Refs #17049.Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-03-31Fixed #17965 -- Definitely dropped support for Python 2.5. Thanks jonash for ...Claude Paroz
2012-03-30Use the class decorator syntax available in Python >= 2.6. Refs #17965.Aymeric Augustin
2012-03-30Removed with_statement imports, useless in Python >= 2.6. Refs #17965. Thanks...Claude Paroz