<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git, branch 2.0.10</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=2.0.10</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=2.0.10'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2019-01-04T13:59:15Z</updated>
<entry>
<title>[2.0.x] Bumped version for 2.0.10 release.</title>
<updated>2019-01-04T13:59:15Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2019-01-04T13:59:15Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=2b865f4c59411239abbab3f94444d3c42850c2f1'/>
<id>urn:sha1:2b865f4c59411239abbab3f94444d3c42850c2f1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[2.0.x] Fixed #30070, CVE-2019-3498 -- Fixed content spoofing possiblity in the default 404 page.</title>
<updated>2019-01-04T03:01:12Z</updated>
<author>
<name>Tom Hacohen</name>
<email>tasn@users.noreply.github.com</email>
</author>
<published>2019-01-04T02:21:55Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=9f4ed7c94c62e21644ef5115e393ac426b886f2e'/>
<id>urn:sha1:9f4ed7c94c62e21644ef5115e393ac426b886f2e</id>
<content type='text'>
Co-Authored-By: Tim Graham &lt;timograham@gmail.com&gt;
Backport of 1ecc0a395be721e987e8e9fdfadde952b6dee1c7 from master.
</content>
</entry>
<entry>
<title>[2.0.x] Added __init__.py for db_utils tests.</title>
<updated>2019-01-02T23:20:19Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2019-01-01T23:49:39Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=f167f308ffd9d04c595ee64751a0953231ade0a1'/>
<id>urn:sha1:f167f308ffd9d04c595ee64751a0953231ade0a1</id>
<content type='text'>
Backport of b5fe97a34ea527d4254b58c2e828450e7c32157f from master.
</content>
</entry>
<entry>
<title>[2.0.x] Pinned Pillow != 5.4.0 in test requirements.</title>
<updated>2019-01-02T22:37:12Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2019-01-02T00:05:28Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=e7ec17bca6c81d60b57901396fbe99717b8f7752'/>
<id>urn:sha1:e7ec17bca6c81d60b57901396fbe99717b8f7752</id>
<content type='text'>
There's a bug that causes a test failure in forms_tests:
https://github.com/python-pillow/Pillow/pull/3501/files#r244651761.

Backport of e4a714b259125423059b9f65f5e0ab70d78521ba from master.
</content>
</entry>
<entry>
<title>[2.0.x] Fixed broken links to PyYAML page.</title>
<updated>2018-12-27T09:52:15Z</updated>
<author>
<name>CHI Cheng</name>
<email>cloudream@gmail.com</email>
</author>
<published>2018-12-27T09:48:37Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=a3dfd38baab01ad0a0d77c4684d111ab30054a2e'/>
<id>urn:sha1:a3dfd38baab01ad0a0d77c4684d111ab30054a2e</id>
<content type='text'>
Backport of b7dbd5ff68bb9d2235ca081c0bd0b8baa65f8c77 from master.
</content>
</entry>
<entry>
<title>[2.0.x] Removed unused imports in tests/test_runner/tests.py.</title>
<updated>2018-12-21T03:15:55Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2018-12-21T03:12:18Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=1b752d349371f9bacfefee75aa496818c2d44d24'/>
<id>urn:sha1:1b752d349371f9bacfefee75aa496818c2d44d24</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[2.0.x] Fixed #30023 -- Prevented SQLite schema alterations while foreign key checks are enabled.</title>
<updated>2018-12-17T15:06:48Z</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=ecece1b22e35865cee429e239bcdd19f01925c9d'/>
<id>urn:sha1:ecece1b22e35865cee429e239bcdd19f01925c9d</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.

Backport of 315357ad25a6590e7f4564ec2e56a22132b09001 from master.
</content>
</entry>
<entry>
<title>[2.0.x] Fixed #29182 -- Fixed schema table alteration on SQLite 3.26+.</title>
<updated>2018-12-07T19:22:42Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2018-12-06T16:37:43Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=53b17d4734f06372b66e3ac4db7a1740c503b330'/>
<id>urn:sha1:53b17d4734f06372b66e3ac4db7a1740c503b330</id>
<content type='text'>
SQLite 3.26 repoints foreign key constraints on table renames even when
foreign_keys pragma is off which breaks every operation that requires
a table rebuild to simulate unsupported ALTER TABLE statements.

The newly introduced legacy_alter_table pragma disables this behavior
and restores the previous schema editor assumptions.

Thanks Florian Apolloner, Christoph Trassl, Chris Lamb for the report and
troubleshooting assistance.

Backport of c8ffdbe514b55ff5c9a2b8cb8bbdf2d3978c188f from master.
</content>
</entry>
<entry>
<title>[2.0.x] Refs #30013 -- Doc'd that mysqlclient 1.3.14 and later isn't supported.</title>
<updated>2018-12-05T20:48:24Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2018-12-05T20:48:24Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=13501d162f4b243f20e2a89e0799ceb796ea9756'/>
<id>urn:sha1:13501d162f4b243f20e2a89e0799ceb796ea9756</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[2.0.x] Added release date for 1.11.17.</title>
<updated>2018-12-03T14:25:37Z</updated>
<author>
<name>Carlton Gibson</name>
<email>carlton.gibson@noumenal.es</email>
</author>
<published>2018-12-03T14:14:58Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=288279ccfd93cd4af9020438311d0bfcfa06c13e'/>
<id>urn:sha1:288279ccfd93cd4af9020438311d0bfcfa06c13e</id>
<content type='text'>
Backport of 950112548e61098f442d37a8ded4ef9f83ff8fda from master
</content>
</entry>
</feed>
