From f01dd1b0da8516e22842eafdb4a74e29b78f48f084a2afd82c25aa25e7734bde Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Tue, 14 Nov 2023 15:57:18 +0000 Subject: [PATCH] - update to 3.44.0.0: * Added virtual table :meth:`VTTable.Integrity` support. * On 64 bit platforms with the amalgamation, `SQLITE_MAX_MMAP_SIZE SQLite's default limit is 2GB. * :meth:`Connection.create_aggregate_function` can take a class with step and final methods. (:issue:`421`) * Corrected non :pep:`8` :ref:`compliant names `. The old names remain as aliases to the new ones, and your code will not break. * :doc:`Exception ` handling has been updated, with multiple exceptions in the same SQLite control flow being chained together. - Reduced overhead of the Column method when using Connection or Cursor - Fix loadable extensions are missing, * Added constants: SQLITE_IOERR_CORRUPTFS OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-apsw?expand=0&rev=43 --- apsw-3.43.1.0.tar.gz | 3 --- apsw-3.44.0.0.tar.gz | 3 +++ python-apsw.changes | 24 ++++++++++++++++++++---- python-apsw.spec | 4 ++-- 4 files changed, 25 insertions(+), 9 deletions(-) delete mode 100644 apsw-3.43.1.0.tar.gz create mode 100644 apsw-3.44.0.0.tar.gz diff --git a/apsw-3.43.1.0.tar.gz b/apsw-3.43.1.0.tar.gz deleted file mode 100644 index 5cbd629..0000000 --- a/apsw-3.43.1.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cadd0485dbfb3f79f9179f7c5a40000d3d354ed6450073a5e206d93e30710ba4 -size 901289 diff --git a/apsw-3.44.0.0.tar.gz b/apsw-3.44.0.0.tar.gz new file mode 100644 index 0000000..fcc2a5c --- /dev/null +++ b/apsw-3.44.0.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0560ed1bea263296c5ccd1427147a9eb30d6e27b7d9eb3b4a35c6965c030d506 +size 899926 diff --git a/python-apsw.changes b/python-apsw.changes index 34f58c7..2254c2f 100644 --- a/python-apsw.changes +++ b/python-apsw.changes @@ -1,3 +1,19 @@ +------------------------------------------------------------------- +Tue Nov 14 15:52:45 UTC 2023 - Dirk Müller + +- update to 3.44.0.0: + * Added virtual table :meth:`VTTable.Integrity` support. + * On 64 bit platforms with the amalgamation, + `SQLITE_MAX_MMAP_SIZE SQLite's default limit is 2GB. + * :meth:`Connection.create_aggregate_function` can take a class + with step and final methods. (:issue:`421`) + * Corrected non :pep:`8` :ref:`compliant names `. + The old names remain as aliases to the new ones, and your + code will not break. + * :doc:`Exception ` handling has been updated, with + multiple exceptions in the same SQLite control flow being + chained together. + ------------------------------------------------------------------- Fri Oct 6 06:51:24 UTC 2023 - ecsos @@ -30,7 +46,7 @@ Fri Oct 6 06:51:24 UTC 2023 - ecsos parameter on execute/executemany methods. (APSW issue 474) - Added documentation and helper class for implementing custom pragmas in your own Virtual File System (VFS) (APSW issue 464) - - Reduced overhead of the Column method when using + - Reduced overhead of the Column method when using apsw.ext.make_virtual_module() (APSW issue 465) ------------------------------------------------------------------- @@ -204,7 +220,7 @@ Mon Jan 17 20:40:34 UTC 2022 - Dirk Müller - update to 3.37.0-r1: * Allow breaking of reference cycles between objects that contain a - Connection or Cursor + Connection or Cursor * Fixed custom VFS extension loading failure could leave the error message unterminated * Updated size of mutex array used by the fork checker @@ -225,7 +241,7 @@ Fri Jun 25 06:20:00 UTC 2021 - ecsos it by default with –enable-all-extensions. - Use the newer buffer API for Python 3 (old API removed in Python 3.10). -- Fix loadable extensions are missing, +- Fix loadable extensions are missing, so insert --enable-all-extensions and --enable=load_extension. See: https://rogerbinns.github.io/apsw/build.html#building @@ -235,7 +251,7 @@ Tue Dec 29 13:46:03 UTC 2020 - Dirk Müller - udpate to 3.34.0-r1: * Windows MSI installer files are now provided * Added Connection.txn_state() - * Added constants: SQLITE_IOERR_CORRUPTFS + * Added constants: SQLITE_IOERR_CORRUPTFS ------------------------------------------------------------------- Tue Sep 22 11:54:56 UTC 2020 - Tomáš Chvátal diff --git a/python-apsw.spec b/python-apsw.spec index 424e947..2010d80 100644 --- a/python-apsw.spec +++ b/python-apsw.spec @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-apsw -Version: 3.43.1.0 +Version: 3.44.0.0 Release: 0 Summary: Another Python SQLite Wrapper License: Zlib @@ -31,7 +31,7 @@ BuildRequires: %{python_module wheel} BuildRequires: fdupes BuildRequires: pkgconfig BuildRequires: python-rpm-macros -BuildRequires: pkgconfig(sqlite3) >= 3.43.1 +BuildRequires: pkgconfig(sqlite3) >= 3.44 %python_subpackages %description