From 25a3b98624f30dccce6bae5da4471bc21ce0bb1b8e6d16d86a6f86ce08614cf2 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 17 Jan 2022 20:43:05 +0000 Subject: [PATCH] - update to 3.37.0-r1: * Allow breaking of reference cycles between objects that contain a 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 * Connections are opened with SQLITE_OPEN_EXRESCODE so open errors will also include extended result codes * Connection.changes() and Connection.totalchanges() use the new SQLite APIs that return 64 bit values * Added Connection.autovacuum_pages() * Implemented Connection.serialize() and Connection.deserialize(). * Allow any subclass of VFS to implement WAL, not just direct subclasses OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-apsw?expand=0&rev=26 --- 3.35.4-r1.tar.gz | 3 --- 3.37.0-r1.tar.gz | 3 +++ python-apsw.changes | 17 +++++++++++++++++ python-apsw.spec | 6 +++--- 4 files changed, 23 insertions(+), 6 deletions(-) delete mode 100644 3.35.4-r1.tar.gz create mode 100644 3.37.0-r1.tar.gz diff --git a/3.35.4-r1.tar.gz b/3.35.4-r1.tar.gz deleted file mode 100644 index 4474633..0000000 --- a/3.35.4-r1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a19588244295d184ce803cdbf6d7538330f35c47fa65a8777e1db2de76ccf25 -size 315734 diff --git a/3.37.0-r1.tar.gz b/3.37.0-r1.tar.gz new file mode 100644 index 0000000..f224704 --- /dev/null +++ b/3.37.0-r1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:594c73a1395e5e7294424c912e1c2c64314a072debb62025f8928d53f6b1503b +size 321856 diff --git a/python-apsw.changes b/python-apsw.changes index eb69a48..3b9836a 100644 --- a/python-apsw.changes +++ b/python-apsw.changes @@ -1,3 +1,20 @@ +------------------------------------------------------------------- +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 + * Fixed custom VFS extension loading failure could leave the error message + unterminated + * Updated size of mutex array used by the fork checker + * Connections are opened with SQLITE_OPEN_EXRESCODE so open errors will also + include extended result codes + * Connection.changes() and Connection.totalchanges() use the new SQLite APIs + that return 64 bit values + * Added Connection.autovacuum_pages() + * Implemented Connection.serialize() and Connection.deserialize(). + * Allow any subclass of VFS to implement WAL, not just direct subclasses + ------------------------------------------------------------------- Fri Jun 25 06:20:00 UTC 2021 - ecsos diff --git a/python-apsw.spec b/python-apsw.spec index d5662b0..7c556c7 100644 --- a/python-apsw.spec +++ b/python-apsw.spec @@ -1,7 +1,7 @@ # # spec file for package python-apsw # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,9 +17,9 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} -%define tarver 3.35.4-r1 +%define tarver 3.37.0-r1 Name: python-apsw -Version: 3.35.4_r1 +Version: 3.37.0 Release: 0 Summary: Another Python SQLite Wrapper License: Zlib