<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chango.git/tests/basic, branch 5.1.6</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/chango.git/atom?h=5.1.6</id>
<link rel='self' href='http://cgit.adnoto.dev/chango.git/atom?h=5.1.6'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/'/>
<updated>2024-08-28T14:45:35Z</updated>
<entry>
<title>[5.1.x] Refs #35060 -- Adjusted deprecation warning stacklevel in Model.save()/asave().</title>
<updated>2024-08-28T14:45:35Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2024-08-09T17:41:18Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=c87007ab60f69df7f991e5e6fe113dbaaba94787'/>
<id>urn:sha1:c87007ab60f69df7f991e5e6fe113dbaaba94787</id>
<content type='text'>
Backport of 52ed2b645e1dd8c9a874cfd21c4c9f2500032626 from main.
</content>
</entry>
<entry>
<title>[5.1.x] Fixed #35561 -- Made *args and **kwargs parsing more strict in Model.save()/asave().</title>
<updated>2024-06-26T15:14:31Z</updated>
<author>
<name>nessita</name>
<email>124304+nessita@users.noreply.github.com</email>
</author>
<published>2024-06-26T15:13:17Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=432b069b5f194d821c12208c65e88856ac52cc28'/>
<id>urn:sha1:432b069b5f194d821c12208c65e88856ac52cc28</id>
<content type='text'>
Backport of e56a32b89bb7fadffdfaa2cdf12b4863ccd5af9b from main.
</content>
</entry>
<entry>
<title>[5.1.x] Fixed #35554, Refs #35060 -- Corrected deprecated *args parsing in Model.save()/asave().</title>
<updated>2024-06-25T16:14:19Z</updated>
<author>
<name>Adam Johnson</name>
<email>me@adamj.eu</email>
</author>
<published>2024-06-25T16:12:10Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=387172918f65762578d93a9b3f94d20209f7a769'/>
<id>urn:sha1:387172918f65762578d93a9b3f94d20209f7a769</id>
<content type='text'>
The transitional logic added to deprecate the usage of *args for
Model.save()/asave() introduced two issues that this branch fixes:
 * Passing extra positional arguments no longer raised TypeError.
 * Passing a positional but empty update_fields would save all fields.

Co-authored-by: Natalia &lt;124304+nessita@users.noreply.github.com&gt;

Backport of 28522c3c8d5eb581347aececc3ac61c134528114 from main.
</content>
</entry>
<entry>
<title>Fixed #35425 -- Avoided INSERT with force_update and explicit pk.</title>
<updated>2024-05-07T10:15:27Z</updated>
<author>
<name>Jacob Walls</name>
<email>jacobtylerwalls@gmail.com</email>
</author>
<published>2024-05-04T21:11:07Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=ceea86baa36b91d0002911770340a2d7bd4f64b7'/>
<id>urn:sha1:ceea86baa36b91d0002911770340a2d7bd4f64b7</id>
<content type='text'>
Affected models where the primary key field is defined with a
default or db_default, such as UUIDField.
</content>
</entry>
<entry>
<title>Refs #35044 -- Added Model.refresh_from_db(fields=...) test for clearing reverse relations.</title>
<updated>2024-03-08T09:27:19Z</updated>
<author>
<name>Giannis Terzopoulos</name>
<email>terzo.giannis@gmail.com</email>
</author>
<published>2024-03-08T09:27:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=0c690c60012e6a2f0cde0fc564c55054c465d02f'/>
<id>urn:sha1:0c690c60012e6a2f0cde0fc564c55054c465d02f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Applied Black's 2024 stable style.</title>
<updated>2024-01-26T11:45:07Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2024-01-26T11:45:07Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=305757aec19c9d5111e4d76095ae0acd66163e4b'/>
<id>urn:sha1:305757aec19c9d5111e4d76095ae0acd66163e4b</id>
<content type='text'>
https://github.com/psf/black/releases/tag/24.1.0</content>
</entry>
<entry>
<title>Fixed #28344 -- Allowed customizing queryset in Model.refresh_from_db()/arefresh_from_db().</title>
<updated>2024-01-15T09:55:14Z</updated>
<author>
<name>Aivars Kalvans</name>
<email>aivars.kalvans@gmail.com</email>
</author>
<published>2023-12-10T19:43:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=f92641a636a8cb75fc9851396cef4345510a4b52'/>
<id>urn:sha1:f92641a636a8cb75fc9851396cef4345510a4b52</id>
<content type='text'>
The from_queryset parameter can be used to:
- use a custom Manager
- lock the row until the end of transaction
- select additional related objects
</content>
</entry>
<entry>
<title>Fixed #35060 -- Deprecated passing positional arguments to Model.save()/asave().</title>
<updated>2024-01-02T07:42:33Z</updated>
<author>
<name>Salvo Polizzi</name>
<email>plzslv03a25c351k@studium.unict.it</email>
</author>
<published>2023-12-31T09:07:13Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=3915d4c70d0d7673abe675525b58117a5099afd3'/>
<id>urn:sha1:3915d4c70d0d7673abe675525b58117a5099afd3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #34925 -- Avoided altering passed by reference refresh_from_db(fields).</title>
<updated>2023-11-25T16:01:14Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2023-11-25T16:01:14Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=978680db224601e3e09f715c82f89f390c63a763'/>
<id>urn:sha1:978680db224601e3e09f715c82f89f390c63a763</id>
<content type='text'>
Follow up to b0ec87b8578147be4357c90eabcd2b916c780810.</content>
</entry>
<entry>
<title>Fixed #34925 -- Prevented Model.refresh_from_db() from mutating list of fields.</title>
<updated>2023-11-24T12:42:40Z</updated>
<author>
<name>trontelj</name>
<email>tronteljklemen@gmail.com</email>
</author>
<published>2023-10-27T22:24:09Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=b0ec87b8578147be4357c90eabcd2b916c780810'/>
<id>urn:sha1:b0ec87b8578147be4357c90eabcd2b916c780810</id>
<content type='text'>
</content>
</entry>
</feed>
