14
0

- update to 3.2.0:

* Add support for async reconnect_failed callbacks in
    AsyncConnectionPool (ticket #520).
  * Add check parameter to the pool constructor and check_connection()
    method. (ticket #656).
  * Make connection pool classes generic on the connection type (ticket
    #559).
  * Raise a warning if sync pools rely an implicit open=True and the
    pool context is not used. In the future the default will become
    False (ticket #659).
  * Raise a warning if async pools are opened in the constructor. In
    the future it will become an error. (ticket #659).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-psycopg-pool?expand=0&rev=3
This commit is contained in:
2023-12-14 19:40:07 +00:00
committed by Git OBS Bridge
parent 3a20766a24
commit aa5d22c2a0
4 changed files with 24 additions and 4 deletions

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Dec 14 19:39:22 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 3.2.0:
* Add support for async reconnect_failed callbacks in
AsyncConnectionPool (ticket #520).
* Add check parameter to the pool constructor and check_connection()
method. (ticket #656).
* Make connection pool classes generic on the connection type (ticket
#559).
* Raise a warning if sync pools rely an implicit open=True and the
pool context is not used. In the future the default will become
False (ticket #659).
* Raise a warning if async pools are opened in the constructor. In
the future it will become an error. (ticket #659).
-------------------------------------------------------------------
Wed Jul 12 05:28:13 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>