<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git, branch 4.2b1</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=4.2b1</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=4.2b1'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2023-02-20T08:35:28Z</updated>
<entry>
<title>[4.2.x] Bumped version for 4.2 beta 1.</title>
<updated>2023-02-20T08:35:28Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2023-02-20T08:35:28Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=6234acb7176a75b4b75d6bc5f48faf4224bbdc63'/>
<id>urn:sha1:6234acb7176a75b4b75d6bc5f48faf4224bbdc63</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[4.2.x] Fixed #34349 -- Fixed FormSet.empty_form crash when deleting extra forms is disabled.</title>
<updated>2023-02-20T08:33:19Z</updated>
<author>
<name>Laurens Verhoeven</name>
<email>12578054+laurensverhoeven@users.noreply.github.com</email>
</author>
<published>2023-02-17T20:05:00Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=bb94e1b7dbd42af51d805efafe52b22eb86d5ebe'/>
<id>urn:sha1:bb94e1b7dbd42af51d805efafe52b22eb86d5ebe</id>
<content type='text'>
Backport of 6cbc403b8ee7014bd6dae4892d404eedb1d4a50d from main
</content>
</entry>
<entry>
<title>[4.2.x] Fixed #34346 -- Ordered selected expressions by position.</title>
<updated>2023-02-20T05:22:18Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2023-02-18T01:38:08Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=aab25a69dd09e6717ff86175ff62c29b847a7791'/>
<id>urn:sha1:aab25a69dd09e6717ff86175ff62c29b847a7791</id>
<content type='text'>
Used the same approach as for #34176 by using selected expressions
position to prevent ambiguous aliases in collisions.

Thanks henribru for the report.

Regression in 04518e310d4552ff7595a34f5a7f93487d78a406.

Backport of 278881e37619278789942513916acafaa88d26f3 from main
</content>
</entry>
<entry>
<title>[4.2.x] Refs #33308 -- Added tests for queryset ordered by annotation with nulls_first/nulls_last.</title>
<updated>2023-02-18T15:29:04Z</updated>
<author>
<name>Simon Charette</name>
<email>charettes@users.noreply.github.com</email>
</author>
<published>2023-02-18T13:53:08Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=312d0f88b4ba47278f53f37ee2735309eda3e913'/>
<id>urn:sha1:312d0f88b4ba47278f53f37ee2735309eda3e913</id>
<content type='text'>
Backport of a6511bc23329f1d3939571ad01d3176f8f6cb786 from main
</content>
</entry>
<entry>
<title>[4.2.x] Fixed #34302 -- Fixed SpatialReference.srid for objects without top-level authority.</title>
<updated>2023-02-17T18:57:41Z</updated>
<author>
<name>Stefan Brand</name>
<email>stefan.brand@eox.at</email>
</author>
<published>2023-02-17T08:44:17Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=efcc0f25a77120f728379a594af3e256e771b7f8'/>
<id>urn:sha1:efcc0f25a77120f728379a594af3e256e771b7f8</id>
<content type='text'>
Backport of eacf6b73d8eace004f840bd9b80c8c671caab9da from main
</content>
</entry>
<entry>
<title>[4.2.x] Refs #34302 -- Fixed SpatialReference.auth_name()/auth_code() when target is None.</title>
<updated>2023-02-17T18:57:34Z</updated>
<author>
<name>Stefan Brand</name>
<email>stefan.brand@eox.at</email>
</author>
<published>2023-02-17T08:38:39Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=341f33ed157809906b7c4b4ee59d8f11e84462ee'/>
<id>urn:sha1:341f33ed157809906b7c4b4ee59d8f11e84462ee</id>
<content type='text'>
force_bytes() turns None into the byte string b"None". Since
ctypes.c_char_p() also accepts None, we can bypass force_bytes() if
target is None.

Backport of d77762de038d1ab46cdcda2b7202d36c80956e25 from main
</content>
</entry>
<entry>
<title>[4.2.x] Fixed #34342, Refs #33735 -- Fixed test client handling of async streaming responses.</title>
<updated>2023-02-17T10:48:59Z</updated>
<author>
<name>Alexandre Spaeth</name>
<email>Alexerson@users.noreply.github.com</email>
</author>
<published>2023-02-15T23:16:51Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=610cd06c3ffe9ef49554f7f7b1f9ff4aa9c2b879'/>
<id>urn:sha1:610cd06c3ffe9ef49554f7f7b1f9ff4aa9c2b879</id>
<content type='text'>
Bug in 0bd2c0c9015b53c41394a1c0989afbfd94dc2830.

Co-authored-by: Carlton Gibson &lt;carlton.gibson@noumenal.es&gt;

Backport of 52b054824e899db40ba48f908a9a00dadc56cb89 from main
</content>
</entry>
<entry>
<title>[4.2.x] Refs #34342 -- Added tests for handling sync streaming responses by test client.</title>
<updated>2023-02-17T10:48:53Z</updated>
<author>
<name>Alexandre Spaeth</name>
<email>Alexerson@users.noreply.github.com</email>
</author>
<published>2023-02-17T09:35:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=1ecbc046243c174b3b8c247091d44de2bea692b7'/>
<id>urn:sha1:1ecbc046243c174b3b8c247091d44de2bea692b7</id>
<content type='text'>
Co-authored-by: Carlton Gibson &lt;carlton.gibson@noumenal.es&gt;

Backport of bfb8fda3e69cc6f5c6695ba70117faff51cc25a9 from main
</content>
</entry>
<entry>
<title>[4.2.x] Refs #21080, Refs #34322 -- Added warning to ManifestStaticFilesStorage docs about paths in comments.</title>
<updated>2023-02-16T18:20:41Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2023-02-16T18:18:55Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=e1c74bf45803cbde28149fbc80d91dc3b244e7fc'/>
<id>urn:sha1:e1c74bf45803cbde28149fbc80d91dc3b244e7fc</id>
<content type='text'>
Backport of bae053d497ba8a8de7e4f725973924bfb1885fd2 from main.
</content>
</entry>
<entry>
<title>[4.2.x] Fixed #34320 -- Make sure constraints names are obtained from truncated columns names.</title>
<updated>2023-02-15T15:52:31Z</updated>
<author>
<name>nabil-rady</name>
<email>midorady9999@gmail.com</email>
</author>
<published>2023-02-15T11:43:51Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=3b09f3555859495ca0d130712d240fb61493739e'/>
<id>urn:sha1:3b09f3555859495ca0d130712d240fb61493739e</id>
<content type='text'>
Backport of 6bdc3c58b65eb32fd63cd41849f00a17a36b4473 from main
</content>
</entry>
</feed>
