<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/tests/backends/postgresql/tests.py, 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-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>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>Fixed #36623 -- Dropped support for PostgreSQL 14 and PostGIS 3.1.</title>
<updated>2025-10-03T21:12:57Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2025-10-03T11:17:01Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=5bd775703c361d05458f1d81684500705d0f51ea'/>
<id>urn:sha1:5bd775703c361d05458f1d81684500705d0f51ea</id>
<content type='text'>
</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>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>Fixed #35479 -- Dropped support for PostgreSQL 13 and PostGIS 3.0.</title>
<updated>2024-05-27T07:49:25Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2024-05-24T19:23:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=b049bec7cfe9b5854584d240addb44fa1e9375a5'/>
<id>urn:sha1:b049bec7cfe9b5854584d240addb44fa1e9375a5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Made postgresql.tests.Tests.test_connect_pool less flaky by increasing timeout value.</title>
<updated>2024-04-10T17:09:52Z</updated>
<author>
<name>Sarah Boyce</name>
<email>42296566+sarahboyce@users.noreply.github.com</email>
</author>
<published>2024-04-10T17:09:52Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=f973a70bfcbaa69507c3fad043b5b56872bc2be5'/>
<id>urn:sha1:f973a70bfcbaa69507c3fad043b5b56872bc2be5</id>
<content type='text'>
</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>Fixed #34840 -- Avoided casting string base fields on PostgreSQL.</title>
<updated>2023-09-22T04:01:11Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2023-09-22T04:01:11Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=779cd28acb1f7eb06f629c0ea4ded99b5ebb670a'/>
<id>urn:sha1:779cd28acb1f7eb06f629c0ea4ded99b5ebb670a</id>
<content type='text'>
Thanks Alex Vandiver for the report.

Regression in 09ffc5c1212d4ced58b708cbbf3dfbfb77b782ca.</content>
</entry>
<entry>
<title>Fixed #34851 -- Dropped support for PostgreSQL 12 and PostGIS 2.5.</title>
<updated>2023-09-20T11:45:51Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2023-09-20T11:45:51Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=2c6ebb65c9eb6b11347d907127b82d31e04569e5'/>
<id>urn:sha1:2c6ebb65c9eb6b11347d907127b82d31e04569e5</id>
<content type='text'>
</content>
</entry>
</feed>
