summaryrefslogtreecommitdiff
path: root/django/contrib/sessions/backends/file.py
AgeCommit message (Expand)Author
2025-07-23Removed double spaces after periods and within phrases.Sarah Boyce
2025-02-18Refs #36005 -- Used datetime.UTC alias instead of datetime.timezone.utc.Mariusz Felisiak
2024-03-13Fixed #34901 -- Added async-compatible interface to session engines.Jon Janzen
2024-03-12Removed unused clean() method in file-based session.Mariusz Felisiak
2023-01-18Refs #34233 -- Used str.removeprefix()/removesuffix().Mariusz Felisiak
2022-03-24Refs #32365 -- Removed internal uses of utils.timezone.utc alias.Carlton Gibson
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-05-12Fixed #32366 -- Updated datetime module usage to recommended approach.Nick Pope
2019-05-21Fixed #28763 -- Allowed overriding the session cookie age with SessionStore.g...Hasan Ramezani
2019-02-06Removed unnecessary type() calls for class methods.Jon Dufresne
2019-01-28Fixed #30137 -- Replaced OSError aliases with the canonical OSError.Jon Dufresne
2019-01-27Removed default mode='r' argument from calls to open().Jon Dufresne
2018-10-03Refs #27795 -- Removed force_bytes() usage in sessions.Jon Dufresne
2018-06-28Fixed #29514 -- Reverted "Used datetime.timezone.utc instead of pytz.utc for ...Tim Graham
2018-03-20Used datetime.timezone.utc instead of pytz.utc for better performance.Sergey Fedoseev
2018-01-12Fixed #28996 -- Simplified some boolean constructs and removed trivial contin...Дилян Палаузов
2018-01-03Fixed #28982 -- Simplified code with and/or.Дилян Палаузов
2017-11-07Fixed #28769 -- Replaced 'x if x else y' with 'x or y'.Дилян Палаузов
2017-09-07Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."Tim Graham
2017-07-29Avoided creation of temporary sets.Sergey Fedoseev
2017-06-28Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().Mads Jensen
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
2017-01-25Refs #23919 -- Replaced errno checking with PEP 3151 exceptions.Tim Graham
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-10-17Fixed #25558 -- Fixed nondeterministic test failure on Windows: test_clearses...Brian Gianforcaro
2015-10-03Fixed #22938 -- Allowed clearsessions to remove file-based sessions.Aleksandra Tarkowska
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-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-02-24Fixed #9084 - Best approach for an OS to atomically rename the session file.Joeri Bekker
2012-11-29Fixed #19356 -- Increased session key entropy.Aymeric Augustin
2012-11-06Fixed #19254 -- Bug in SESSION_FILE_PATH handling.Aymeric Augustin
2012-10-28Fixed #18194 -- Expiration of file-based sessionsAymeric Augustin
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-05-05Made more extensive usage of context managers with open.Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2011-11-27Fixed #11555 -- Made SessionBase.session_key read-only. Cleaned up code sligh...Aymeric Augustin
2011-09-09Replaced `has_key()` calls with `in` to ease Python 3 port. Thanks, Martin vo...Jannis Leidel
2011-02-09Fixed a security issue in the file session backend. Disclosure and new relea...Alex Gaynor
2010-08-05Converted sessions tests from doctest to unittest.Luke Plant
2008-09-01Fixed a small oversight in [8750]; thanks for the sharp eyes, Warren. Fixes #...Jacob Kaplan-Moss
2008-08-30Fixed #8616 (again): prevent a race condition in the session file backend. Ma...Jacob Kaplan-Moss
2008-08-29Reverted #8688 for now, since it merely introduced different bugs, rather thanMalcolm Tredinnick
2008-08-29Fixed #8616 -- Fixed a race condition in the file-based session backend.Malcolm Tredinnick