<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git, branch 6.0a1</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=6.0a1</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=6.0a1'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2025-09-17T18:56:27Z</updated>
<entry>
<title>[6.0.x] Bumped version for 6.0 alpha 1 release.</title>
<updated>2025-09-17T18:56:27Z</updated>
<author>
<name>Natalia</name>
<email>124304+nessita@users.noreply.github.com</email>
</author>
<published>2025-09-17T18:51:29Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=16ae193550115704c1269a5317fa86352f0b0d6d'/>
<id>urn:sha1:16ae193550115704c1269a5317fa86352f0b0d6d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[6.0.x] Bumped django_next_version in docs config.</title>
<updated>2025-09-17T17:54:41Z</updated>
<author>
<name>Natalia</name>
<email>124304+nessita@users.noreply.github.com</email>
</author>
<published>2025-09-17T17:54:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=0b5a7d847db3387887ec9252b01520f9a872d944'/>
<id>urn:sha1:0b5a7d847db3387887ec9252b01520f9a872d944</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Made cosmetic edits to docs/releases/6.0.txt.</title>
<updated>2025-09-17T17:20:40Z</updated>
<author>
<name>Natalia</name>
<email>124304+nessita@users.noreply.github.com</email>
</author>
<published>2025-09-17T13:13:33Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=154aa62e6fe25fa337716503e261590840e24f14'/>
<id>urn:sha1:154aa62e6fe25fa337716503e261590840e24f14</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Removed empty sections from 6.0 release notes.</title>
<updated>2025-09-17T17:20:40Z</updated>
<author>
<name>Natalia</name>
<email>124304+nessita@users.noreply.github.com</email>
</author>
<published>2025-09-17T02:12:32Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=eae8cc42011fc0bf96f0d48d863e65c3c697614a'/>
<id>urn:sha1:eae8cc42011fc0bf96f0d48d863e65c3c697614a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Updated man page for Django 6.0 alpha 1.</title>
<updated>2025-09-17T17:20:40Z</updated>
<author>
<name>Natalia</name>
<email>124304+nessita@users.noreply.github.com</email>
</author>
<published>2025-09-17T02:09:11Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=4e1aebffdd829e278343d7334cc79ed89d55d2ad'/>
<id>urn:sha1:4e1aebffdd829e278343d7334cc79ed89d55d2ad</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #35859 -- Removed support for Task enqueuing on transaction commit.</title>
<updated>2025-09-17T16:28:58Z</updated>
<author>
<name>Jacob Walls</name>
<email>jacobtylerwalls@gmail.com</email>
</author>
<published>2025-09-17T13:19:25Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=b931156c207f661406635d49e0e29a51cacc1ab8'/>
<id>urn:sha1:b931156c207f661406635d49e0e29a51cacc1ab8</id>
<content type='text'>
This removes the ability to configure Task enqueueing via a setting,
since the proposed `ENQUEUE_ON_COMMIT` did not support multi-database
setups.

Thanks to Simon Charette for the report.

Follow-up to 4289966d1b8e848e5e460b7c782dac009d746b20.
</content>
</entry>
<entry>
<title>Refs #35859 -- Included Task backends in system checks docs.</title>
<updated>2025-09-17T16:28:58Z</updated>
<author>
<name>Jacob Walls</name>
<email>jacobtylerwalls@gmail.com</email>
</author>
<published>2025-09-17T13:21:40Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=9334499f537e402ce5b92708209933045a8c5e7d'/>
<id>urn:sha1:9334499f537e402ce5b92708209933045a8c5e7d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #27222 -- Restored Model.save()'s refreshing of db_returning fields even if a value is set.</title>
<updated>2025-09-17T11:50:08Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2025-09-16T22:10:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=4fcc2883faa8e33152d9e45744354cff35636975'/>
<id>urn:sha1:4fcc2883faa8e33152d9e45744354cff35636975</id>
<content type='text'>
The logic could likely be adjusted to assign the pre_save value in most cases
to avoid the database transit but it could break in subtle ways so it's not
worth the complexity it would require.

Regression in 94680437a45a71c70ca8bd2e68b72aa1e2eff337.

Co-authored-by: Tim Graham &lt;timograham@gmail.com&gt;
</content>
</entry>
<entry>
<title>Fixed #36601 -- Fixed color contrast of FilteredSelectMultiple widget chosen labels in TabularInlines.</title>
<updated>2025-09-17T07:56:01Z</updated>
<author>
<name>antoliny0919</name>
<email>antoliny0919@gmail.com</email>
</author>
<published>2025-09-10T02:27:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=1e7728888dbbff437ad9847c82b84feb81f785df'/>
<id>urn:sha1:1e7728888dbbff437ad9847c82b84feb81f785df</id>
<content type='text'>
Regression in a0f50c2a483678d31bd1ad6f08fd3a0b8399e27b.
</content>
</entry>
<entry>
<title>Fixed #36083 -- Ran system checks in ParallelTestSuite workers.</title>
<updated>2025-09-17T01:57:22Z</updated>
<author>
<name>Adam Zapletal</name>
<email>adamzap@gmail.com</email>
</author>
<published>2025-01-18T22:22:10Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=606fc352799e372928fa2c978ab99f0fb6d6017c'/>
<id>urn:sha1:606fc352799e372928fa2c978ab99f0fb6d6017c</id>
<content type='text'>
Workers created by ParallelTestSuite were not running system
checks in the spawn multiprocessing mode. In general this is
fine, but system checks can have side effects expected by tests.

This patch runs system checks inside of _init_worker, which is
only called by ParallelTestSuite.
</content>
</entry>
</feed>
