From f2e257802047372622e9eb3b92a6ee892a73736dc5841c30f4b7cc54d6a86fda Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sat, 27 May 2023 21:03:46 +0000 Subject: [PATCH] - update to 3.42.0.0: * Shell: Errors when SQLite are preparing a statement now show the relevant extract of the query, and where the error was detected. * Shell: Output modes table (ASCII line drawing, lots of sanitization), box (Unicode line drawing) and qbox (box with quoted values) available. * Shell: if started interactively then box is the default mode (list remains the default in non-interactive) * Added :meth:`Connection.pragma` to execute pragmas and get results. * Added :attr:`Cursor.get` returning query results with the least amount of structure. * Fixed execution tracers should return comment text for comment only queries, and add :attr:`Cursor.has_vdbe`. * Ensure that all applicable options are implemented for :func:`apsw.config`, :meth:`Connection.config` and similar. * Added :func:`apsw.sleep` * Strings for :meth:`apsw.VFS.xNextSystemCall` are interned * Detect unbound recursion not handled by CPython, and handle better. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-apsw?expand=0&rev=33 --- 3.41.2.0.tar.gz | 3 --- 3.42.0.0.tar.gz | 3 +++ python-apsw.changes | 25 +++++++++++++++++++++++++ python-apsw.spec | 2 +- 4 files changed, 29 insertions(+), 4 deletions(-) delete mode 100644 3.41.2.0.tar.gz create mode 100644 3.42.0.0.tar.gz diff --git a/3.41.2.0.tar.gz b/3.41.2.0.tar.gz deleted file mode 100644 index deed062..0000000 --- a/3.41.2.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:03d4e1995a561b8ff2c5c07534fb6c93b2971994157ccd44df21e8bc7df0e139 -size 871995 diff --git a/3.42.0.0.tar.gz b/3.42.0.0.tar.gz new file mode 100644 index 0000000..5769d32 --- /dev/null +++ b/3.42.0.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cc0654b7c6b76e4b9b2a1300d19e79b9b9d9c6b918b8683e23da2d1209e9281 +size 863081 diff --git a/python-apsw.changes b/python-apsw.changes index a703caa..a241abe 100644 --- a/python-apsw.changes +++ b/python-apsw.changes @@ -1,3 +1,28 @@ +------------------------------------------------------------------- +Sat May 27 21:01:59 UTC 2023 - Dirk Müller + +- update to 3.42.0.0: + * Shell: Errors when SQLite are preparing a statement now show + the relevant extract of the query, and where the error was + detected. + * Shell: Output modes table (ASCII line drawing, lots of + sanitization), box (Unicode line drawing) and + qbox (box with quoted values) available. + * Shell: if started interactively then box is the default mode + (list remains the default in non-interactive) + * Added :meth:`Connection.pragma` to execute pragmas + and get results. + * Added :attr:`Cursor.get` returning query results with the + least amount of structure. + * Fixed execution tracers should return comment text for + comment only queries, and add :attr:`Cursor.has_vdbe`. + * Ensure that all applicable options are implemented for + :func:`apsw.config`, :meth:`Connection.config` and similar. + * Added :func:`apsw.sleep` + * Strings for :meth:`apsw.VFS.xNextSystemCall` are interned + * Detect unbound recursion not handled by CPython, and handle + better. + ------------------------------------------------------------------- Sun Apr 16 09:22:57 UTC 2023 - Dirk Müller diff --git a/python-apsw.spec b/python-apsw.spec index 89de10f..47acf49 100644 --- a/python-apsw.spec +++ b/python-apsw.spec @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-apsw -Version: 3.41.2.0 +Version: 3.42.0.0 Release: 0 Summary: Another Python SQLite Wrapper License: Zlib