<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/django/contrib/sessions/backends/file.py, branch main</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=main</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=main'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2025-07-23T13:09:43Z</updated>
<entry>
<title>Removed double spaces after periods and within phrases.</title>
<updated>2025-07-23T13:09:43Z</updated>
<author>
<name>Sarah Boyce</name>
<email>42296566+sarahboyce@users.noreply.github.com</email>
</author>
<published>2025-07-18T13:37:14Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=1ecf6889cabc9f3f60d3fdd651468cddd8f4da6e'/>
<id>urn:sha1:1ecf6889cabc9f3f60d3fdd651468cddd8f4da6e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #36005 -- Used datetime.UTC alias instead of datetime.timezone.utc.</title>
<updated>2025-02-18T07:35:36Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2025-02-18T07:35:36Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=efb7f9ced2dcf71294353596a265e3fd67faffeb'/>
<id>urn:sha1:efb7f9ced2dcf71294353596a265e3fd67faffeb</id>
<content type='text'>
datetime.UTC was added in Python 3.11.</content>
</entry>
<entry>
<title>Fixed #34901 -- Added async-compatible interface to session engines.</title>
<updated>2024-03-13T16:55:15Z</updated>
<author>
<name>Jon Janzen</name>
<email>jon@jonjanzen.com</email>
</author>
<published>2023-10-17T01:50:20Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=f5c340684be3f27a145ec86ba55b24eb88d2780c'/>
<id>urn:sha1:f5c340684be3f27a145ec86ba55b24eb88d2780c</id>
<content type='text'>
Thanks Andrew-Chen-Wang for the initial implementation which was posted
to the Django forum thread about asyncifying contrib modules.
</content>
</entry>
<entry>
<title>Removed unused clean() method in file-based session.</title>
<updated>2024-03-12T12:31:22Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2024-03-12T12:31:22Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=80fe2f439102dc748ff8ddd661d94935915bd3e7'/>
<id>urn:sha1:80fe2f439102dc748ff8ddd661d94935915bd3e7</id>
<content type='text'>
Unused since its introduction in bcf7e9a9fe037eff4d5dea0cdd8c35104590e1a8.</content>
</entry>
<entry>
<title>Refs #34233 -- Used str.removeprefix()/removesuffix().</title>
<updated>2023-01-18T18:11:18Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2023-01-18T18:11:18Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=23e886886249ebe8f80a48b0d25fbb5308eeb06f'/>
<id>urn:sha1:23e886886249ebe8f80a48b0d25fbb5308eeb06f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #32365 -- Removed internal uses of utils.timezone.utc alias.</title>
<updated>2022-03-24T05:29:50Z</updated>
<author>
<name>Carlton Gibson</name>
<email>carlton.gibson@noumenal.es</email>
</author>
<published>2022-03-23T11:15:36Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=bb61f0186d5c490caa44f3e3672d81e14414d33c'/>
<id>urn:sha1:bb61f0186d5c490caa44f3e3672d81e14414d33c</id>
<content type='text'>
Remaining test case ensures that uses of the alias are mapped
canonically by the migration writer.
</content>
</entry>
<entry>
<title>Refs #33476 -- Reformatted code with Black.</title>
<updated>2022-02-07T19:37:05Z</updated>
<author>
<name>django-bot</name>
<email>ops@djangoproject.com</email>
</author>
<published>2022-02-03T19:24:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=9c19aff7c7561e3a82978a272ecdaad40dda5c00'/>
<id>urn:sha1:9c19aff7c7561e3a82978a272ecdaad40dda5c00</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #32366 -- Updated datetime module usage to recommended approach.</title>
<updated>2021-05-12T09:08:41Z</updated>
<author>
<name>Nick Pope</name>
<email>nick@nickpope.me.uk</email>
</author>
<published>2021-05-07T09:42:59Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=d06c5b358149c02a62da8a5469264d05f29ac659'/>
<id>urn:sha1:d06c5b358149c02a62da8a5469264d05f29ac659</id>
<content type='text'>
- Replaced datetime.utcnow() with datetime.now().
- Replaced datetime.utcfromtimestamp() with datetime.fromtimestamp().
- Replaced datetime.utctimetuple() with datetime.timetuple().
- Replaced calendar.timegm() and datetime.utctimetuple() with datetime.timestamp().
</content>
</entry>
<entry>
<title>Fixed #28763 -- Allowed overriding the session cookie age with SessionStore.get_session_cookie_age().</title>
<updated>2019-05-21T06:50:09Z</updated>
<author>
<name>Hasan Ramezani</name>
<email>hasan.r67@gmail.com</email>
</author>
<published>2019-05-19T20:15:45Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=9d6f981a66bd2c4188c4a3e08e4f36fc9c4882ef'/>
<id>urn:sha1:9d6f981a66bd2c4188c4a3e08e4f36fc9c4882ef</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Removed unnecessary type() calls for class methods.</title>
<updated>2019-02-07T03:00:32Z</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2019-02-07T03:00:32Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=af1434329fbdb295870301bd7e16e18fea95492e'/>
<id>urn:sha1:af1434329fbdb295870301bd7e16e18fea95492e</id>
<content type='text'>
</content>
</entry>
</feed>
