Received: by mail.netbsd.org (Postfix, from userid 605) id 9993B84D65; Mon, 10 Oct 2022 08:06:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CB52E84CFA for ; Mon, 10 Oct 2022 08:06:33 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 2ziQK83CX75K for ; Mon, 10 Oct 2022 08:06:33 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3E16C84CD9 for ; Mon, 10 Oct 2022 08:06:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 318F7FA90; Mon, 10 Oct 2022 08:06:33 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1665389193119760" MIME-Version: 1.0 Date: Mon, 10 Oct 2022 08:06:33 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/databases/py-apsw To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20221010080633.318F7FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1665389193119760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Mon Oct 10 08:06:33 UTC 2022 Modified Files: pkgsrc/databases/py-apsw: Makefile distinfo Log Message: py-apsw: updated to 3.39.4.0 3.39.4.0 Added Connection.cache_stats() to provide more information about the statement cache. Cursor.execute() now uses sqlite_prepare_v3 which allows supplying flags. Cursor.execute() has a new can_cache parameter to control whether the query can use the statement cache. One example use is with authorizers because they only run during prepare, which doesn’t happen with already cached statements. (The Cursor.execute() additional parameters are keyword only and also present in Cursor.executemany(), and the corresponding Connection.execute() and Connection.executemany() methods.) Added Cursor.is_readonly, Cursor.is_explain, and Cursor.expanded_sql. Updated processing named bindings so that types registered with collections.abc.Mapping (such as collections.UserDict) will also be treated as dictionaries. (APSW issue 373) To generate a diff of this commit: cvs rdiff -u -r1.46 -r1.47 pkgsrc/databases/py-apsw/Makefile cvs rdiff -u -r1.25 -r1.26 pkgsrc/databases/py-apsw/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1665389193119760 Content-Disposition: inline Content-Length: 1570 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/py-apsw/Makefile diff -u pkgsrc/databases/py-apsw/Makefile:1.46 pkgsrc/databases/py-apsw/Makefile:1.47 --- pkgsrc/databases/py-apsw/Makefile:1.46 Mon Sep 12 08:22:18 2022 +++ pkgsrc/databases/py-apsw/Makefile Mon Oct 10 08:06:33 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.46 2022/09/12 08:22:18 adam Exp $ +# $NetBSD: Makefile,v 1.47 2022/10/10 08:06:33 adam Exp $ -DISTNAME= apsw-3.39.3.0 +DISTNAME= apsw-3.39.4.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/-r1//} CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_GITHUB:=rogerbinns/} Index: pkgsrc/databases/py-apsw/distinfo diff -u pkgsrc/databases/py-apsw/distinfo:1.25 pkgsrc/databases/py-apsw/distinfo:1.26 --- pkgsrc/databases/py-apsw/distinfo:1.25 Mon Sep 12 08:22:18 2022 +++ pkgsrc/databases/py-apsw/distinfo Mon Oct 10 08:06:33 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.25 2022/09/12 08:22:18 adam Exp $ +$NetBSD: distinfo,v 1.26 2022/10/10 08:06:33 adam Exp $ -BLAKE2s (apsw-3.39.3.0.zip) = d96bc9b91294c1cddb6bf8fbb898543f22bc3401e0b05de10f038e97a063544c -SHA512 (apsw-3.39.3.0.zip) = f366a10d8a991ddc9a43c9af73f89da24ce5d9993a6e9a0253c1143e85b4fb4bff911085609576230a5bd5d22204decda589062c2e95e708b392b07c250e8570 -Size (apsw-3.39.3.0.zip) = 752861 bytes +BLAKE2s (apsw-3.39.4.0.zip) = aa31b77265787cee6e0cd45cbe83c22e26f2c3472cae969a328bc3df46d4afd5 +SHA512 (apsw-3.39.4.0.zip) = f4100f65ae2eea98f1ae23e6e9ecc7beb8e7632a056f3ba0bd6818414fdb01e61452c5abb7d808a7893f6348ab244622f1c38c8994a4d63008cefe932040611e +Size (apsw-3.39.4.0.zip) = 866238 bytes --_----------=_1665389193119760--