<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/tests/model_fields/test_uuid.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>2022-02-07T19:37:05Z</updated>
<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 random models_fields.test_uuid.TestQuerying failures.</title>
<updated>2019-12-27T14:25:50Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2019-12-27T14:25:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=5a68f024987e6d16c2626a31bf653a2edddea579'/>
<id>urn:sha1:5a68f024987e6d16c2626a31bf653a2edddea579</id>
<content type='text'>
Random failures depended on a generated UUID.</content>
</entry>
<entry>
<title>Fixed #29915 -- Added support for values with hyphens to pattern lookups for UUIDField on backends without UUID datatype.</title>
<updated>2019-09-23T06:24:08Z</updated>
<author>
<name>Ian Foote</name>
<email>python@ian.feete.org</email>
</author>
<published>2018-11-12T19:20:35Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=d9881a025c15d87b2a7883ee50771117450ea90d'/>
<id>urn:sha1:d9881a025c15d87b2a7883ee50771117450ea90d</id>
<content type='text'>
Support hyphens in iexact, contains, icontains, startswith, istartswith,
endswith and iendswith UUIDField filters on backends without UUID
datatype.
</content>
</entry>
<entry>
<title>Refs #29915 -- Added tests for using pattern lookups with values without hyphens for UUIDField.</title>
<updated>2019-09-23T06:24:00Z</updated>
<author>
<name>Ian Foote</name>
<email>python@ian.feete.org</email>
</author>
<published>2019-09-19T10:36:15Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=485f65b3c010c25b8d75d1b40156db0fa9d5ca57'/>
<id>urn:sha1:485f65b3c010c25b8d75d1b40156db0fa9d5ca57</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #30400 -- Improved typography of user facing strings.</title>
<updated>2019-06-28T14:46:18Z</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2019-06-27T16:39:47Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=42b9a23267f14be39b9b00958e18d5746783208e'/>
<id>urn:sha1:42b9a23267f14be39b9b00958e18d5746783208e</id>
<content type='text'>
Thanks Claude Paroz for assistance with translations.
</content>
</entry>
<entry>
<title>Switched setUp() to setUpTestData() where possible in Django's tests.</title>
<updated>2018-11-27T14:35:17Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2018-11-24T01:59:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=84e7a9f4a7bb3cad2bffae97baaae99de152c451'/>
<id>urn:sha1:84e7a9f4a7bb3cad2bffae97baaae99de152c451</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #29869 -- Made UUIDField.to_python() convert integers.</title>
<updated>2018-10-25T00:26:57Z</updated>
<author>
<name>Sanyam Khurana</name>
<email>sanyam.khurana01@gmail.com</email>
</author>
<published>2018-10-24T21:43:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=83c7096f2a84450957615ef52ffed0bee5f72606'/>
<id>urn:sha1:83c7096f2a84450957615ef52ffed0bee5f72606</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #27595 -- Made ForeignKey.get_col() follow target chains.</title>
<updated>2018-10-22T13:49:34Z</updated>
<author>
<name>Simon Charette</name>
<email>charettes@users.noreply.github.com</email>
</author>
<published>2018-10-22T13:49:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=5e3463f6bcec818431f0e1f4649d6a5bd944c459'/>
<id>urn:sha1:5e3463f6bcec818431f0e1f4649d6a5bd944c459</id>
<content type='text'>
Previously, foreign relationships were followed only one level deep which
prevents foreign keys to foreign keys from being resolved appropriately.
This was causing issues such as improper database value conversion for
UUIDField on SQLite because the resolved expression's output field's
internal type wasn't correct. Added tests to make sure unlikely foreign
reference cycles don't cause recursion errors.

Refs #24343.

Thanks oyooyo for the report and Wayne Merry for the investigation.</content>
</entry>
<entry>
<title>Refs #27148 -- Fixed UUIDField.to_python(None) crash.</title>
<updated>2017-02-10T18:54:52Z</updated>
<author>
<name>ClairePhila</name>
<email>ClairePhila@byom.de</email>
</author>
<published>2017-02-10T17:28:16Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=d26413113c1a5c95218fe4e43a684a2fe1ad1bff'/>
<id>urn:sha1:d26413113c1a5c95218fe4e43a684a2fe1ad1bff</id>
<content type='text'>
Regression in 2f9861d823620da7ecb291a8f005f53da12b1e89.
</content>
</entry>
<entry>
<title>Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.</title>
<updated>2016-11-11T02:30:21Z</updated>
<author>
<name>za</name>
<email>za@python.or.id</email>
</author>
<published>2016-10-27T07:53:39Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=321e94fa41b121f65c02119c02098df327bbd569'/>
<id>urn:sha1:321e94fa41b121f65c02119c02098df327bbd569</id>
<content type='text'>
</content>
</entry>
</feed>
