<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/django/db/backends/sqlite3/base.py, branch 1.10.3</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=1.10.3</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=1.10.3'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2016-04-08T13:51:06Z</updated>
<entry>
<title>Fixed E128 flake8 warnings in django/.</title>
<updated>2016-04-08T13:51:06Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2016-03-28T22:33:29Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=df8d8d4292684d6ffa7474f1e201aed486f02b53'/>
<id>urn:sha1:df8d8d4292684d6ffa7474f1e201aed486f02b53</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #24793 -- Unified temporal difference support.</title>
<updated>2016-02-26T17:25:12Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2016-01-20T01:43:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=766afc22a1dfa7d34a08de85356b7bc9dba025e7'/>
<id>urn:sha1:766afc22a1dfa7d34a08de85356b7bc9dba025e7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #14286 -- Added models.BigAutoField.</title>
<updated>2015-12-26T01:01:31Z</updated>
<author>
<name>Alexander Sosnovskiy</name>
<email>alecs.box@gmail.com</email>
</author>
<published>2015-07-02T08:43:15Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=2a7ce34600d0f879e93c9a5e02215948ed3bb6ac'/>
<id>urn:sha1:2a7ce34600d0f879e93c9a5e02215948ed3bb6ac</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Renamed RemovedInDjangoXYWarnings for new roadmap.</title>
<updated>2015-06-24T20:08:20Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2015-06-22T17:54:35Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=aaacaeb0963c406c4fe6f68c6ae51f4a65878250'/>
<id>urn:sha1:aaacaeb0963c406c4fe6f68c6ae51f4a65878250</id>
<content type='text'>
Forwardport of ae1d663b7913f6da233c55409c4973248372d302
from stable/1.8.x plus more.
</content>
</entry>
<entry>
<title>Fixed #22316 -- Added time filters to TimeField on SQLite.</title>
<updated>2015-06-05T02:27:13Z</updated>
<author>
<name>Matthew Somerville</name>
<email>matthew-github@dracos.co.uk</email>
</author>
<published>2015-05-22T19:16:26Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=2dc93bb10ab1c2af1df9977f1b51d47cadab7b21'/>
<id>urn:sha1:2dc93bb10ab1c2af1df9977f1b51d47cadab7b21</id>
<content type='text'>
This was implemented for non-SQLite backends in 1.7 (as a
side effect of #16187).
</content>
</entry>
<entry>
<title>Fixed #9596 -- Added date transform for DateTimeField.</title>
<updated>2015-06-02T12:49:10Z</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2015-03-07T21:20:29Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=44f3ee77166bd5c0e8a4604f2d96015268dce100'/>
<id>urn:sha1:44f3ee77166bd5c0e8a4604f2d96015268dce100</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #23820 -- Supported per-database time zone.</title>
<updated>2015-05-17T07:40:28Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2015-05-02T19:56:53Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=ed83881e648771d22658f21b939f66e75c499864'/>
<id>urn:sha1:ed83881e648771d22658f21b939f66e75c499864</id>
<content type='text'>
The primary use case is to interact with a third-party database (not
primarily managed by Django) that doesn't support time zones and where
datetimes are stored in local time when USE_TZ is True.

Configuring a PostgreSQL database with the TIME_ZONE option while USE_TZ
is False used to result in silent data corruption. Now this is an error.
</content>
</entry>
<entry>
<title>Removed global timezone-aware datetime adapters.</title>
<updated>2015-05-17T07:38:48Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2015-05-02T13:54:17Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=d9521f66b1851b0eacd55bc78f801dc64123e333'/>
<id>urn:sha1:d9521f66b1851b0eacd55bc78f801dc64123e333</id>
<content type='text'>
Refs #23820.

Fixed #19738.

Refs #17755. In order not to introduce a regression for raw queries,
parameters are passed through the connection.ops.value_to_db_* methods,
depending on their type.
</content>
</entry>
<entry>
<title>Removed global timezone-aware datetime converters.</title>
<updated>2015-05-17T07:36:23Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2015-04-12T12:46:24Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=ec186572e6cfde4cd4bc1491ff552c5d32211d9f'/>
<id>urn:sha1:ec186572e6cfde4cd4bc1491ff552c5d32211d9f</id>
<content type='text'>
Refs #23820.
</content>
</entry>
<entry>
<title>Refs #24324 -- Fixed UnicodeEncodeError in SQLite backend while testing.</title>
<updated>2015-02-17T13:09:46Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2015-02-15T01:46:11Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=63c5c9870129f6b81358c1ed7ed2392bbc46f77d'/>
<id>urn:sha1:63c5c9870129f6b81358c1ed7ed2392bbc46f77d</id>
<content type='text'>
If 'name' contained non-ASCII characters, the comparison raised a
UnicodeEncodeError on Python 2.
</content>
</entry>
</feed>
