15
0
- update to 0.25.0:
  * Improve SSL option compatibility in URIs
  * Add Pool methods to determine its min, max, current and idle size
  * Make it possible to specify a statement name in Connection.prepare()
  * Implement support for multirange types
  * Make sure timeout callbacks always get cleaned up
  * Update __all__ statements to a simpler form that is better supported by typecheckers
  * Fix test_timetz_encoding on Python 3.10
  * Fix a bunch of ResourceWarnings in the test suite
  * Fix SSLContext deprecation warnings
  * Fix the description of the database argument to connect()
  * Fix parsing of IPv6 addresses in the connection URI
  * Improve diagnostics of invalid executemany() input

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-asyncpg?expand=0&rev=7
This commit is contained in:
2022-01-23 16:36:18 +00:00
committed by Git OBS Bridge
parent d28c6e4e2e
commit a76276f951
4 changed files with 27 additions and 5 deletions

View File

@@ -1,3 +1,25 @@
-------------------------------------------------------------------
Sun Jan 23 16:35:31 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update
-------------------------------------------------------------------
Sun Jan 23 16:30:52 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 0.25.0:
* Improve SSL option compatibility in URIs
* Add Pool methods to determine its min, max, current and idle size
* Make it possible to specify a statement name in Connection.prepare()
* Implement support for multirange types
* Make sure timeout callbacks always get cleaned up
* Update __all__ statements to a simpler form that is better supported by typecheckers
* Fix test_timetz_encoding on Python 3.10
* Fix a bunch of ResourceWarnings in the test suite
* Fix SSLContext deprecation warnings
* Fix the description of the database argument to connect()
* Fix parsing of IPv6 addresses in the connection URI
* Improve diagnostics of invalid executemany() input
-------------------------------------------------------------------
Sun Oct 17 14:19:32 UTC 2021 - Ben Greiner <code@bnavigator.de>