15
0
forked from pool/python-apsw

- update to 3.41.2.0:

* Fixed :issue:`412` in :meth:`apsw.ext.make_virtual_module`.
  * Added :meth:`apsw.connections` to get all connections.
  * :func:`sys.unraisablehook` is called correctly (:issue:`410`)
  * Be stricter where :class:`bool` values are expected (eg
  * :meth:`VTTable.BestIndex`), only accepting :class:`int` and
    :class:`bool`.  Previously you could for example supply
    strings and lists, which were almost certainly unintended
    errors.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-apsw?expand=0&rev=31
This commit is contained in:
2023-04-16 09:23:29 +00:00
committed by Git OBS Bridge
parent abd0edf52f
commit 2970bdf4ab
4 changed files with 17 additions and 4 deletions

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Sun Apr 16 09:22:57 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 3.41.2.0:
* Fixed :issue:`412` in :meth:`apsw.ext.make_virtual_module`.
* Added :meth:`apsw.connections` to get all connections.
* :func:`sys.unraisablehook` is called correctly (:issue:`410`)
* Be stricter where :class:`bool` values are expected (eg
* :meth:`VTTable.BestIndex`), only accepting :class:`int` and
:class:`bool`. Previously you could for example supply
strings and lists, which were almost certainly unintended
errors.
-------------------------------------------------------------------
Fri Feb 10 10:08:26 UTC 2023 - Dirk Müller <dmueller@suse.com>