<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/django, branch fix-31295</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=fix-31295</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=fix-31295'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2026-05-01T13:45:01Z</updated>
<entry>
<title>Fixed #31295 -- Avoid Select widget triggering additional query when using ModelChoiceIterator.</title>
<updated>2026-05-01T13:45:01Z</updated>
<author>
<name>Charles Roelli</name>
<email>charles@aurox.ch</email>
</author>
<published>2026-05-01T13:45:01Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=70b0be281caa08a0b639acb73e3b9fe5f6e7d278'/>
<id>urn:sha1:70b0be281caa08a0b639acb73e3b9fe5f6e7d278</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #37075 -- Allowed overriding the PostgreSQL pool's "check" callable.</title>
<updated>2026-04-30T23:52:11Z</updated>
<author>
<name>Raoni Timo</name>
<email>raoni@relume.io</email>
</author>
<published>2026-04-30T13:57:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=9f790ef1a0f356cf6342b5d57bbaeac35aed0d9f'/>
<id>urn:sha1:9f790ef1a0f356cf6342b5d57bbaeac35aed0d9f</id>
<content type='text'>
Setting "check" in OPTIONS["pool"] previously raised TypeError because the
PostgreSQL backend always passed check= to ConnectionPool() and unpacked
**pool_options on top, regardless of CONN_HEALTH_CHECKS. The user's callable
now takes precedence via setdefault(); pool_options is copied first to avoid
mutating the user's settings dict.
</content>
</entry>
<entry>
<title>Fixed #36919 -- Allowed Task and TaskResult to be pickled.</title>
<updated>2026-04-30T12:12:08Z</updated>
<author>
<name>varunkasyap</name>
<email>varunkasyap@hotmail.com</email>
</author>
<published>2026-02-19T08:47:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=8c8b833d32c02d3ae6f43b04bb1e45968796b402'/>
<id>urn:sha1:8c8b833d32c02d3ae6f43b04bb1e45968796b402</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #16429 -- Extracted set_choices() method from FilePathField.__init__().</title>
<updated>2026-04-29T18:52:25Z</updated>
<author>
<name>TildaDares</name>
<email>mathildaudufo@gmail.com</email>
</author>
<published>2026-03-29T21:02:10Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=3f912ee4189602b4df121c0dc0428673fda5c253'/>
<id>urn:sha1:3f912ee4189602b4df121c0dc0428673fda5c253</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #37067 -- Added trailing slash in django_file_prefixes().</title>
<updated>2026-04-29T17:47:49Z</updated>
<author>
<name>Fashad Ahmed</name>
<email>fashad.ahmed20@gmail.com</email>
</author>
<published>2026-04-28T20:38:36Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=60a9c70496e5d7b971928ce3da5b47c8836a4def'/>
<id>urn:sha1:60a9c70496e5d7b971928ce3da5b47c8836a4def</id>
<content type='text'>
Ensure skip_file_prefixes does not match sibling packages like django*.

Bug in f42b89f1bf49a5b89ed852b60f79342320a81c5e
and 34bd3ed944bf38792c631b55e581963d44d52284.
</content>
</entry>
<entry>
<title>Fixed #35951 -- Mentioned server timezone in admin DateTime widgets.</title>
<updated>2026-04-29T15:28:13Z</updated>
<author>
<name>Vedran Karacic</name>
<email>karacicvedran@gmail.com</email>
</author>
<published>2025-12-12T09:04:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=61941b6fc172933f425e8ba76bab444ab9b313e4'/>
<id>urn:sha1:61941b6fc172933f425e8ba76bab444ab9b313e4</id>
<content type='text'>
The existing note that is shown to the users when entering a time value
from a different timezone than the server's timezone was not descriptive
enough and led to confusion. This commit updates the note to explicitly
state that the user should enter times in the server's timezone.
</content>
</entry>
<entry>
<title>Refs #15759 -- Fixed ModelAdmin.list_editable form submission for non-editable instances.</title>
<updated>2026-04-28T17:44:04Z</updated>
<author>
<name>Artyom Kotovskiy</name>
<email>artyomkotovskiy@gmail.com</email>
</author>
<published>2026-04-25T04:00:31Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=5b3cfce51770f46c6dc100e9be7f199a37176762'/>
<id>urn:sha1:5b3cfce51770f46c6dc100e9be7f199a37176762</id>
<content type='text'>
Added formset that excludes objects for which
user has no permission for POST formset as well.

Fixed regression test: the test was not simulating
real behaviour properly. By providing full form
data for the post request we skipped the part
where the user was actually limited in permissions
and only modified some of the rows.

Improved tests by getting rid of obj.id % 2
approach for granting permissions per object
for users, since it is not the safest.
Instead granting permissions simply by 'alive'
parameter, which is simpler and more stable.

Bug in 84db026228413dda4cd195464554d51c0b208e32.
</content>
</entry>
<entry>
<title>Fixed #36990 -- Bumped OpenLayers to 10.9.0.</title>
<updated>2026-04-28T17:37:43Z</updated>
<author>
<name>VIZZARD-X</name>
<email>vigneshanandmay13@gmail.com</email>
</author>
<published>2026-04-16T09:13:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=f3ff680c768a313d34eb2e15eb7322edec60920c'/>
<id>urn:sha1:f3ff680c768a313d34eb2e15eb7322edec60920c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #35738 -- Deprecated double-dot variable lookups.</title>
<updated>2026-04-28T17:07:11Z</updated>
<author>
<name>David Smith</name>
<email>smithdc@gmail.com</email>
</author>
<published>2026-04-26T06:53:13Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=5d911f2d2fecc703be91b2b9b28acc59d34b35f3'/>
<id>urn:sha1:5d911f2d2fecc703be91b2b9b28acc59d34b35f3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #36912 -- Added connector validation to Q.create().</title>
<updated>2026-04-28T10:42:49Z</updated>
<author>
<name>Anna Makarudze</name>
<email>amakarudze@gmail.com</email>
</author>
<published>2026-03-21T18:49:02Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=fb292a549371a7c011c25b1a10fe5d25c579814a'/>
<id>urn:sha1:fb292a549371a7c011c25b1a10fe5d25c579814a</id>
<content type='text'>
Co-authored-by: Jacob Walls &lt;jacobtylerwalls@gmail.com&gt;
</content>
</entry>
</feed>
