<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/django/db/backends/postgresql/base.py, branch main</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=main</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=main'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2026-04-30T23:52:11Z</updated>
<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 #24920 -- Added support for DecimalField with no precision.</title>
<updated>2025-11-17T12:43:47Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2025-11-17T12:43:47Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=1ce6e78dd4beed702f15fa0be798dd17a15d4ba8'/>
<id>urn:sha1:1ce6e78dd4beed702f15fa0be798dd17a15d4ba8</id>
<content type='text'>
Thanks Lily for the review.</content>
</entry>
<entry>
<title>Refs #24928 -- Added introspection support for PostgreSQL HStoreField.</title>
<updated>2025-11-14T12:36:15Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2025-11-14T12:36:15Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=35f86b641a4eb26fa2b7c3842b6d374834a4ea6b'/>
<id>urn:sha1:35f86b641a4eb26fa2b7c3842b6d374834a4ea6b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove unused OneToOneField from DatabaseWrapper.data_types.</title>
<updated>2025-08-12T07:46:20Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2025-08-09T02:02:11Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=80cc9994d178d4afff0c85f9be8393bcedfd2687'/>
<id>urn:sha1:80cc9994d178d4afff0c85f9be8393bcedfd2687</id>
<content type='text'>
OneToOneField uses the type of the related field.
</content>
</entry>
<entry>
<title>Refs #36500 -- Rewrapped long docstrings and block comments via a script.</title>
<updated>2025-07-23T23:17:55Z</updated>
<author>
<name>django-bot</name>
<email>ops@djangoproject.com</email>
</author>
<published>2025-07-23T03:41:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=69a93a88edb56ba47f624dac7a21aacc47ea474f'/>
<id>urn:sha1:69a93a88edb56ba47f624dac7a21aacc47ea474f</id>
<content type='text'>
Rewrapped long docstrings and block comments to 79 characters + newline
using script from https://github.com/medmunds/autofix-w505.
</content>
</entry>
<entry>
<title>Refs #36005 -- Bumped minimum supported versions of 3rd-party packages.</title>
<updated>2025-01-28T07:02:13Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2025-01-28T07:02:13Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=d9af197801376fae178761cac12d57178a738cf4'/>
<id>urn:sha1:d9af197801376fae178761cac12d57178a738cf4</id>
<content type='text'>
This bumps minimum supported versions of 3rd-party packages to the first
releases to support Python 3.12.</content>
</entry>
<entry>
<title>Fixed #35688 -- Restored timezone and role setters to be PostgreSQL DatabaseWrapper methods.</title>
<updated>2024-08-28T22:25:07Z</updated>
<author>
<name>Sarah Boyce</name>
<email>42296566+sarahboyce@users.noreply.github.com</email>
</author>
<published>2024-08-19T14:51:31Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=7380ac57340653854bc2cfe0ed80298cdac6061d'/>
<id>urn:sha1:7380ac57340653854bc2cfe0ed80298cdac6061d</id>
<content type='text'>
Following the addition of PostgreSQL connection pool support in
Refs #33497, the methods for configuring the database role and timezone
were moved to module-level functions. This change prevented subclasses
of DatabaseWrapper from overriding these methods as needed, for example,
when creating wrappers for other PostgreSQL-based backends.

Thank you Christian Hardenberg for the report and to
Florian Apolloner and Natalia Bidart for the review.

Regression in fad334e1a9b54ea1acb8cce02a25934c5acfe99f.

Co-authored-by: Natalia &lt;124304+nessita@users.noreply.github.com&gt;
</content>
</entry>
<entry>
<title>Refs #33497 -- Added connection pool support for PostgreSQL.</title>
<updated>2024-03-01T08:01:18Z</updated>
<author>
<name>Sarah Boyce</name>
<email>42296566+sarahboyce@users.noreply.github.com</email>
</author>
<published>2023-12-11T10:37:54Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=fad334e1a9b54ea1acb8cce02a25934c5acfe99f'/>
<id>urn:sha1:fad334e1a9b54ea1acb8cce02a25934c5acfe99f</id>
<content type='text'>
Co-authored-by: Florian Apolloner &lt;florian@apolloner.eu&gt;
Co-authored-by: Ran Benita &lt;ran@unusedvar.com&gt;
</content>
</entry>
<entry>
<title>Refs #34200 -- Removed unnecessary check in DatabaseWrapper.ensure_role() on PostgreSQL.</title>
<updated>2024-02-26T09:53:47Z</updated>
<author>
<name>Florian Apolloner</name>
<email>florian@apolloner.eu</email>
</author>
<published>2024-02-26T09:53:47Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=18d79033b90902a6d6b615b42051191fd1b37892'/>
<id>urn:sha1:18d79033b90902a6d6b615b42051191fd1b37892</id>
<content type='text'>
ensure_role() is only called in init_connection_state() where a new
connection is established.
</content>
</entry>
<entry>
<title>Simplified using DATABASES["OPTIONS"].</title>
<updated>2024-02-23T06:49:43Z</updated>
<author>
<name>Florian Apolloner</name>
<email>florian@apolloner.eu</email>
</author>
<published>2024-02-23T06:44:55Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=50e95ad5367a4a93f94a66a645f9c126f0609f0a'/>
<id>urn:sha1:50e95ad5367a4a93f94a66a645f9c126f0609f0a</id>
<content type='text'>
DATABASES["OPTIONS"] are always configured.
</content>
</entry>
</feed>
