diff --git a/asyncpg-0.28.0.tar.gz b/asyncpg-0.28.0.tar.gz deleted file mode 100644 index fae09c7..0000000 --- a/asyncpg-0.28.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7252cdc3acb2f52feaa3664280d3bcd78a46bd6c10bfd681acfffefa1120e278 -size 807997 diff --git a/asyncpg-0.29.0.tar.gz b/asyncpg-0.29.0.tar.gz new file mode 100644 index 0000000..cd1f893 --- /dev/null +++ b/asyncpg-0.29.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1c49e1f44fffafd9a55e1a9b101590859d881d639ea2922516f5d9c512d354e +size 820455 diff --git a/python-asyncpg.changes b/python-asyncpg.changes index f8be5d2..ea3ff10 100644 --- a/python-asyncpg.changes +++ b/python-asyncpg.changes @@ -1,3 +1,29 @@ +------------------------------------------------------------------- +Sat Nov 25 14:10:47 UTC 2023 - Dirk Müller + +- update to 0.29.0: + * Python 3.12 and PostgreSQL 16 support (#1084) + * Add support for tuple-format custom codecs on composite types + * Support `target_session_attrs` in URL format, add tests + * Infinity numeric support (#1067) + * Add support for the `WHERE` clause in `copy_to` methods + * Add query logging callbacks and context manager (#1043) + * When prepared statements are disabled, avoid relying on them + harder (#1065) + * Handle environments with HOME set to a not-a-directory + * Fix handling of non-ASCII passwords (#1062) + * Disable JIT while doing type introspection (#1082) + * Remove connection parameter caching in `Pool` (#1053) + * Switch to Python 3.12-style `wait_for` (#1086) + * Update automatic PostGIS type conversion for Shapely 2.0 + * Use the `timeout` context manager in the connection path + * Small fix for documentation on using SSL in Connection (#995) + * Use cleanup_ctx in pool usage doc (#878) + * Close cursor portals once the iterator is exhausted (#1088) + * Cut BaseProtocol circular reference on close. (#1049) + * Allow passing hosts as tuples to `connect()` (in addition to + * Drop support for Python 3.7 (#1064) + ------------------------------------------------------------------- Tue Jul 11 13:32:37 UTC 2023 - Dirk Müller @@ -20,7 +46,7 @@ Tue Jul 4 13:09:00 UTC 2023 - ecsos ------------------------------------------------------------------- Mon Nov 7 20:50:09 UTC 2022 - Yogalakshmi Arunachalam -- Update to 0.27.0 +- Update to 0.27.0 Support Python 3.11 and PostgreSQL 15. This release also drops support for Python 3.6. * Changes @@ -64,7 +90,7 @@ Thu Aug 4 08:57:47 UTC 2022 - Otto Hollmann ------------------------------------------------------------------- Sun Jan 23 16:35:31 UTC 2022 - Dirk Müller -- update +- update ------------------------------------------------------------------- Sun Jan 23 16:30:52 UTC 2022 - Dirk Müller @@ -82,7 +108,7 @@ Sun Jan 23 16:30:52 UTC 2022 - Dirk Müller * 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 @@ -122,16 +148,16 @@ Mon May 3 20:51:42 UTC 2021 - Dirk Müller - update to 0.22.0: * Add support for connection termination listeners - * Add support for password functions (useful for RDS IAM auth) + * Add support for password functions (useful for RDS IAM auth) * Fix possible uninitalized pointer access on unexpected array * message data (CVE-2020-17446, - * Vastly speedup executemany by batching protocol messages + * Vastly speedup executemany by batching protocol messages * Add Python 3.9 support * Allow using custom Record class * Prefer SSL connections by default * Add codecs for a bunch of new builtin types * Expose Pool as asyncpg.Pool - * Avoid unnecessary overhead during connection reset + * Avoid unnecessary overhead during connection reset * Bugfixes - drop merged-static-fix.patch (upstream) @@ -145,7 +171,7 @@ Sun Nov 22 14:12:03 UTC 2020 - John Vandenberg ------------------------------------------------------------------- Fri Jan 24 08:54:51 UTC 2020 - Bruno Friedmann -- Update to version 0.20.1 +- Update to version 0.20.1 ------------------------------------------------------------------- Wed Dec 26 14:01:50 UTC 2018 - Bruno Friedmann diff --git a/python-asyncpg.spec b/python-asyncpg.spec index 1a360fa..14fb13c 100644 --- a/python-asyncpg.spec +++ b/python-asyncpg.spec @@ -18,20 +18,24 @@ %{?sle15_python_module_pythons} Name: python-asyncpg -Version: 0.28.0 +Version: 0.29.0 Release: 0 Summary: Python asyncio PosgtreSQL driver License: Apache-2.0 Group: Development/Languages/Python URL: https://github.com/MagicStack/asyncpg Source: https://files.pythonhosted.org/packages/source/a/asyncpg/asyncpg-%{version}.tar.gz -BuildRequires: %{python_module Cython >= 0.29.24} +BuildRequires: %{python_module Cython} +BuildRequires: %{python_module async_timeout} BuildRequires: %{python_module devel >= 3.6} BuildRequires: %{python_module setuptools} BuildRequires: %{python_module typing-extensions >= 3.7.4.3 if %python-base < 3.8} BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: libpq5 >= 9.4 +%if 0%{?python_version_nodots} < 312 +Requires: python-async_timeout +%endif %if 0%{?python_version_nodots} < 38 Requires: python-typing-extensions >= 3.7.4.3 %endif