<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chango.git/tests/basic, branch 4.1.3</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/chango.git/atom?h=4.1.3</id>
<link rel='self' href='http://cgit.adnoto.dev/chango.git/atom?h=4.1.3'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/'/>
<updated>2022-04-26T18:25:23Z</updated>
<entry>
<title>Fixed #33646 -- Added async-compatible interface to QuerySet.</title>
<updated>2022-04-26T18:25:23Z</updated>
<author>
<name>Andrew Godwin</name>
<email>andrew@aeracode.org</email>
</author>
<published>2021-09-08T16:01:53Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=58b27e0dbb3d31ca1438790870b2b51ecdb10500'/>
<id>urn:sha1:58b27e0dbb3d31ca1438790870b2b51ecdb10500</id>
<content type='text'>
Thanks Simon Charette for reviews.

Co-authored-by: Carlton Gibson &lt;carlton.gibson@noumenal.es&gt;
Co-authored-by: Mariusz Felisiak &lt;felisiak.mariusz@gmail.com&gt;
</content>
</entry>
<entry>
<title>Removed redundant QuerySet.all() calls in docs and tests.</title>
<updated>2022-02-22T09:29:38Z</updated>
<author>
<name>Nick Pope</name>
<email>nick@nickpope.me.uk</email>
</author>
<published>2022-02-22T09:29:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=847f46e9bf88964484c8b76a10af753ea1018311'/>
<id>urn:sha1:847f46e9bf88964484c8b76a10af753ea1018311</id>
<content type='text'>
Most QuerySet methods are mapped onto the Manager and, in general,
it isn't necessary to call .all() on the manager.</content>
</entry>
<entry>
<title>Refs #33476 -- Refactored code to strictly match 88 characters line length.</title>
<updated>2022-02-07T19:37:05Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2022-02-04T07:08:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=7119f40c9881666b6f9b5cf7df09ee1d21cc8344'/>
<id>urn:sha1:7119f40c9881666b6f9b5cf7df09ee1d21cc8344</id>
<content type='text'>
</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/chango.git/commit/?id=9c19aff7c7561e3a82978a272ecdaad40dda5c00'/>
<id>urn:sha1:9c19aff7c7561e3a82978a272ecdaad40dda5c00</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Improved Model.__init__() properties loop.</title>
<updated>2022-01-13T10:09:37Z</updated>
<author>
<name>Adam Johnson</name>
<email>me@adamj.eu</email>
</author>
<published>2021-12-13T15:44:07Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=08d8bccbf1b0764a0de68325569ee47da256e206'/>
<id>urn:sha1:08d8bccbf1b0764a0de68325569ee47da256e206</id>
<content type='text'>
This improves readability, accumulates unrecognized arguments raise an
exception with all of them, and avoids refetching the values.
</content>
</entry>
<entry>
<title>Fixed #24141 -- Added QuerySet.contains().</title>
<updated>2021-03-06T19:40:29Z</updated>
<author>
<name>Johan Schiff</name>
<email>johan@radkompaniet.se</email>
</author>
<published>2020-06-09T09:23:31Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=d01709aae21de9cd2565b9c52f32732ea28a2d98'/>
<id>urn:sha1:d01709aae21de9cd2565b9c52f32732ea28a2d98</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #22640 -- Raised TypeError when instantiating model with keyword and positional args for the same field.</title>
<updated>2021-03-01T19:26:39Z</updated>
<author>
<name>Jacob Walls</name>
<email>jacobtylerwalls@gmail.com</email>
</author>
<published>2021-02-27T23:56:44Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=73b1b225ce1a3318d4478f90cc0db0a260aba3aa'/>
<id>urn:sha1:73b1b225ce1a3318d4478f90cc0db0a260aba3aa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #31235 -- Made assertQuerysetEqual() compare querysets directly.</title>
<updated>2020-11-06T08:24:50Z</updated>
<author>
<name>Hasan Ramezani</name>
<email>hasan.r67@gmail.com</email>
</author>
<published>2020-10-18T16:29:52Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=3f7b3275627385f8f7531fca01cdda50d4ec6b6e'/>
<id>urn:sha1:3f7b3275627385f8f7531fca01cdda50d4ec6b6e</id>
<content type='text'>
This also replaces assertQuerysetEqual() to
assertSequenceEqual()/assertCountEqual() where appropriate.

Co-authored-by: Peter Inglesby &lt;peter.inglesby@gmail.com&gt;
Co-authored-by: Mariusz Felisiak &lt;felisiak.mariusz@gmail.com&gt;
</content>
</entry>
<entry>
<title>Fixed #27719 -- Added QuerySet.alias() to allow creating reusable aliases.</title>
<updated>2020-07-31T11:19:33Z</updated>
<author>
<name>Alexandr Tatarinov</name>
<email>tatarinov1997@gmail.com</email>
</author>
<published>2020-06-14T18:38:43Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=f4ac167119e8897c398527c392ed117326496652'/>
<id>urn:sha1:f4ac167119e8897c398527c392ed117326496652</id>
<content type='text'>
QuerySet.alias() allows creating reusable aliases for expressions that
don't need to be selected but are used for filtering, ordering, or as
a part of complex expressions.

Thanks Simon Charette for reviews.
</content>
</entry>
<entry>
<title>Fixed #29129 -- Skipped UPDATE when adding a model instance with inherited primary key that has a default.</title>
<updated>2020-03-05T11:08:38Z</updated>
<author>
<name>Abhijeet Viswa</name>
<email>abhijeetviswa@gmail.com</email>
</author>
<published>2020-02-26T17:49:05Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=babd4126853e48594b61e8db71a83d7bdd929b9c'/>
<id>urn:sha1:babd4126853e48594b61e8db71a83d7bdd929b9c</id>
<content type='text'>
</content>
</entry>
</feed>
