pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/databases/py-apsw



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Mar  6 12:27:07 UTC 2023

Modified Files:
        pkgsrc/databases/py-apsw: Makefile distinfo

Log Message:
py-apsw: updated to 3.41.0.0

3.41.0.0
Backwards incompatible change: Bindings using a dictionary with a missing key now result in a KeyError exception. You can use allow_missing_dict_bindings() to restore the old behaviour. (APSW issue 
392)

Virtual table updates:

VTTable.BestIndexObject() is now available which provides IndexInfo exposing full control (APSW issue 332, APSW issue 329, APSW issue 278, APSW issue 188)
IndexInfo.set_aConstraintUsage_in() can have in values passed all at once to VTCursor.Filter()
Exceptions in VTTable.FindFunction() are now reported as an unraisable exception because it isn't possible to tell SQLite about the error.
VTTable.FindFunction() can now return (int, callable) to allow for virtual table specific function overloads. (APSW issue 269)
Added Connection.vtab_config() and Connection.vtab_on_conflict() (APSW issue 189, APSW issue 190)
Connection.createmodule() lets you have eponymous, eponymous_only, and read_only modules. (APSW issue 196)
Virtual table updates can avoid having to provide all column values when only a subset are changing. See apsw.no_change, Connection.createmodule() use_no_change parameter, VTCursor.ColumnNoChange() 
and VTTable.UpdateChangeRow() (APSW issue 402)
All virtual table methods are supported - added iVersion 2 and 3. You can specify the iVersion in Connection.createmodule() (APSW issue 128)
apsw.ext.make_virtual_module() makes it very easy to turn a Python function into a virtual table module.
apsw.ext.generate_series() and apsw.ext.generate_series_sqlite() added. (APSW issue 380)


To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 pkgsrc/databases/py-apsw/Makefile
cvs rdiff -u -r1.28 -r1.29 pkgsrc/databases/py-apsw/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/databases/py-apsw/Makefile
diff -u pkgsrc/databases/py-apsw/Makefile:1.50 pkgsrc/databases/py-apsw/Makefile:1.51
--- pkgsrc/databases/py-apsw/Makefile:1.50      Tue Jan 17 10:25:51 2023
+++ pkgsrc/databases/py-apsw/Makefile   Mon Mar  6 12:27:07 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.50 2023/01/17 10:25:51 adam Exp $
+# $NetBSD: Makefile,v 1.51 2023/03/06 12:27:07 adam Exp $
 
-DISTNAME=      apsw-3.40.1.0
+DISTNAME=      apsw-3.41.0.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/-r1//}
 CATEGORIES=    databases python
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=rogerbinns/}
@@ -17,7 +17,7 @@ PYSETUPBUILDARGS+=    --enable=load_extensi
 
 PYTHON_VERSIONS_INCOMPATIBLE=  27
 
-BUILDLINK_API_DEPENDS.sqlite3+= sqlite3>=3.40.1
+BUILDLINK_API_DEPENDS.sqlite3+= sqlite3>=3.41.0
 .include "../../databases/sqlite3/buildlink3.mk"
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/databases/py-apsw/distinfo
diff -u pkgsrc/databases/py-apsw/distinfo:1.28 pkgsrc/databases/py-apsw/distinfo:1.29
--- pkgsrc/databases/py-apsw/distinfo:1.28      Tue Jan 17 10:25:51 2023
+++ pkgsrc/databases/py-apsw/distinfo   Mon Mar  6 12:27:07 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.28 2023/01/17 10:25:51 adam Exp $
+$NetBSD: distinfo,v 1.29 2023/03/06 12:27:07 adam Exp $
 
-BLAKE2s (apsw-3.40.1.0.zip) = 9d7bfe3e24e71e79332d68b1c229df51ee7fdab8622f102ae638414196848cea
-SHA512 (apsw-3.40.1.0.zip) = 9b278bf82dfd3c818d9e06d9fa4801e808e790aff198837466d4a6f5f8a8089184118e222fd5141d83d13cc7b60c450931cf17fbb86331356aa184c82d36c7cf
-Size (apsw-3.40.1.0.zip) = 965947 bytes
+BLAKE2s (apsw-3.41.0.0.zip) = fe3fe5488f208fda64ee42c859e97c9c0335f34c4037c3c02b7156f681b2efeb
+SHA512 (apsw-3.41.0.0.zip) = 89412adc35331081623372214d68ed121e371b7bb15358ba18967501917c4a0b2931b42678dbfd0d5f813c917620b64cf373196a6a8c8a38aa58ea059bd807dd
+Size (apsw-3.41.0.0.zip) = 1284279 bytes



Home | Main Index | Thread Index | Old Index