index
:
django.git
fix-31295
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
contrib
/
sessions
/
backends
/
file.py
Age
Commit message (
Expand
)
Author
2025-07-23
Removed double spaces after periods and within phrases.
Sarah Boyce
2025-02-18
Refs #36005 -- Used datetime.UTC alias instead of datetime.timezone.utc.
Mariusz Felisiak
2024-03-13
Fixed #34901 -- Added async-compatible interface to session engines.
Jon Janzen
2024-03-12
Removed unused clean() method in file-based session.
Mariusz Felisiak
2023-01-18
Refs #34233 -- Used str.removeprefix()/removesuffix().
Mariusz Felisiak
2022-03-24
Refs #32365 -- Removed internal uses of utils.timezone.utc alias.
Carlton Gibson
2022-02-07
Refs #33476 -- Reformatted code with Black.
django-bot
2021-05-12
Fixed #32366 -- Updated datetime module usage to recommended approach.
Nick Pope
2019-05-21
Fixed #28763 -- Allowed overriding the session cookie age with SessionStore.g...
Hasan Ramezani
2019-02-06
Removed unnecessary type() calls for class methods.
Jon Dufresne
2019-01-28
Fixed #30137 -- Replaced OSError aliases with the canonical OSError.
Jon Dufresne
2019-01-27
Removed default mode='r' argument from calls to open().
Jon Dufresne
2018-10-03
Refs #27795 -- Removed force_bytes() usage in sessions.
Jon Dufresne
2018-06-28
Fixed #29514 -- Reverted "Used datetime.timezone.utc instead of pytz.utc for ...
Tim Graham
2018-03-20
Used datetime.timezone.utc instead of pytz.utc for better performance.
Sergey Fedoseev
2018-01-12
Fixed #28996 -- Simplified some boolean constructs and removed trivial contin...
Дилян Палаузов
2018-01-03
Fixed #28982 -- Simplified code with and/or.
Дилян Палаузов
2017-11-07
Fixed #28769 -- Replaced 'x if x else y' with 'x or y'.
Дилян Палаузов
2017-09-07
Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."
Tim Graham
2017-07-29
Avoided creation of temporary sets.
Sergey Fedoseev
2017-06-28
Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().
Mads Jensen
2017-04-27
Refs #27795 -- Replaced many force_text() with str()
Claude Paroz
2017-02-04
Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257.
Anton Samarchyan
2017-01-25
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-25
Refs #23919 -- Replaced errno checking with PEP 3151 exceptions.
Tim Graham
2016-04-08
Fixed E128 flake8 warnings in django/.
Tim Graham
2016-02-26
Fixed #21608 -- Prevented logged out sessions being resurrected by concurrent...
Tore Lundqvist
2015-10-17
Fixed #25558 -- Fixed nondeterministic test failure on Windows: test_clearses...
Brian Gianforcaro
2015-10-03
Fixed #22938 -- Allowed clearsessions to remove file-based sessions.
Aleksandra Tarkowska
2015-07-08
Fixed #19324 -- Avoided creating a session record when loading the session.
Carl Meyer
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2013-11-02
More attacking E302 violators
Alex Gaynor
2013-05-25
Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation.
Preston Holmes
2013-05-19
Fix #19664 -- Illegal Characters In Session Key Give Fatal Error On File Back...
Erik Romijn
2013-02-24
Fixed #9084 - Best approach for an OS to atomically rename the session file.
Joeri Bekker
2012-11-29
Fixed #19356 -- Increased session key entropy.
Aymeric Augustin
2012-11-06
Fixed #19254 -- Bug in SESSION_FILE_PATH handling.
Aymeric Augustin
2012-10-28
Fixed #18194 -- Expiration of file-based sessions
Aymeric Augustin
2012-08-15
Removed unneeded smart_bytes import which was introduced in f2fff84bc.
Florian Apolloner
2012-08-15
[py3] fixed session file backend.
Florian Apolloner
2012-05-05
Made more extensive usage of context managers with open.
Claude Paroz
2012-04-29
Fixed #18013 -- Use the new 'as' syntax for exceptions.
Claude Paroz
2011-11-27
Fixed #11555 -- Made SessionBase.session_key read-only. Cleaned up code sligh...
Aymeric Augustin
2011-09-09
Replaced `has_key()` calls with `in` to ease Python 3 port. Thanks, Martin vo...
Jannis Leidel
2011-02-09
Fixed a security issue in the file session backend. Disclosure and new relea...
Alex Gaynor
2010-08-05
Converted sessions tests from doctest to unittest.
Luke Plant
2008-09-01
Fixed a small oversight in [8750]; thanks for the sharp eyes, Warren. Fixes #...
Jacob Kaplan-Moss
2008-08-30
Fixed #8616 (again): prevent a race condition in the session file backend. Ma...
Jacob Kaplan-Moss
2008-08-29
Reverted #8688 for now, since it merely introduced different bugs, rather than
Malcolm Tredinnick
2008-08-29
Fixed #8616 -- Fixed a race condition in the file-based session backend.
Malcolm Tredinnick
[next]