<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/django/db/backends/sqlite3/base.py, branch 2.2.4</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=2.2.4</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=2.2.4'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2019-01-28T16:21:47Z</updated>
<entry>
<title>[2.2.x] Refs #30055 -- Added a helpful error when SQLite is too old.</title>
<updated>2019-01-28T16:21:47Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2019-01-28T16:14:45Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=d3b4f4b9629f24a59082b74559d131dde592f9f7'/>
<id>urn:sha1:d3b4f4b9629f24a59082b74559d131dde592f9f7</id>
<content type='text'>
Backport of 7444f3252757ed4384623e5afd7dcfeef3e0c74e from master.
</content>
</entry>
<entry>
<title>Refs #28643 -- Added Reverse database function.</title>
<updated>2019-01-12T15:45:48Z</updated>
<author>
<name>Nick Pope</name>
<email>nick.pope@flightdataservices.com</email>
</author>
<published>2019-01-09T00:12:10Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=abf8e390a4161a051ed1c4be11b9447866b06ba8'/>
<id>urn:sha1:abf8e390a4161a051ed1c4be11b9447866b06ba8</id>
<content type='text'>
Thanks Mariusz Felisiak for Oracle advice and review.
</content>
</entry>
<entry>
<title>Fixed #30056 -- Added SQLite support for StdDev and Variance functions.</title>
<updated>2018-12-24T16:14:58Z</updated>
<author>
<name>Nick Pope</name>
<email>nick.pope@flightdataservices.com</email>
</author>
<published>2018-12-19T23:01:44Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=83677faf860f1a25acd667131275307abaa23fc4'/>
<id>urn:sha1:83677faf860f1a25acd667131275307abaa23fc4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #29928 -- Added supports_pragma_foreign_key_check SQLite feature flag.</title>
<updated>2018-12-22T20:14:33Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2018-12-21T23:26:30Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=6b9bd0933e0ce7e9bfcb2bcc5c8a6dc3486b4257'/>
<id>urn:sha1:6b9bd0933e0ce7e9bfcb2bcc5c8a6dc3486b4257</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Renamed SQLite3	references to to SQLite.</title>
<updated>2018-12-22T19:20:43Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2018-12-21T23:29:48Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=20f6f9eaa1ae6dfbfd346d167e17c3b50e74cc11'/>
<id>urn:sha1:20f6f9eaa1ae6dfbfd346d167e17c3b50e74cc11</id>
<content type='text'>
The version suffix isn't part of the product name.
</content>
</entry>
<entry>
<title>Refs #29928 -- Implemented fast constraint checking on SQLite 3.20+.</title>
<updated>2018-12-17T09:44:05Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2018-12-11T07:44:42Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=a939d630a429abb53002a09fc04785445fc64bb4'/>
<id>urn:sha1:a939d630a429abb53002a09fc04785445fc64bb4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #30023 -- Prevented SQLite schema alterations while foreign key checks are enabled.</title>
<updated>2018-12-15T23:51:59Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2018-12-08T00:55:47Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=315357ad25a6590e7f4564ec2e56a22132b09001'/>
<id>urn:sha1:315357ad25a6590e7f4564ec2e56a22132b09001</id>
<content type='text'>
Prior to this change foreign key constraint references could be left pointing
at tables dropped during operations simulating unsupported table alterations
because of an unexpected failure to disable foreign key constraint checks.

SQLite3 does not allow disabling such checks while in a transaction so they
must be disabled beforehand.

Thanks ezaquarii for the report and Carlton and Tim for the review.
</content>
</entry>
<entry>
<title>Removed useless check in sqlite's DatabaseWrapper._savepoint_allowed().</title>
<updated>2018-10-25T14:17:37Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2018-10-25T14:17:37Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=f1d163449396f8bab6c50f4b8b54829d139feda2'/>
<id>urn:sha1:f1d163449396f8bab6c50f4b8b54829d139feda2</id>
<content type='text'>
Obsolete since 27193aea0088b238e3ee0f0f235364a34a09265c.
</content>
</entry>
<entry>
<title>Refs #29784 -- Switched to https:// links where available.</title>
<updated>2018-09-26T06:48:47Z</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2018-09-26T06:48:47Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=82f286cf6f198d37850d3c5df637b5665566a66b'/>
<id>urn:sha1:82f286cf6f198d37850d3c5df637b5665566a66b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #29500 -- Fixed SQLite function crashes on null values.</title>
<updated>2018-09-10T19:08:55Z</updated>
<author>
<name>Srinivas Reddy Thatiparthy</name>
<email>thatiparthysreenivas@gmail.com</email>
</author>
<published>2018-06-30T20:49:20Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=34d6bceec46c5d4234c156ed682573d2e5de474a'/>
<id>urn:sha1:34d6bceec46c5d4234c156ed682573d2e5de474a</id>
<content type='text'>
Co-authored-by: Srinivas Reddy Thatiparthy &lt;thatiparthysreenivas@gmail.com&gt;
Co-authored-by: Nick Pope &lt;nick.pope@flightdataservices.com&gt;
</content>
</entry>
</feed>
