diff options
author | adam <adam@pkgsrc.org> | 2022-01-07 21:06:28 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2022-01-07 21:06:28 +0000 |
commit | 4077bf683a571fe3488b0139c80c2bd64e5703b3 (patch) | |
tree | 690a4d83a65a43c60e96ecff85379b3ef77c7de7 /databases | |
parent | 462078ca0be0e6d97bba103a9b0ff6e60b15e375 (diff) | |
download | pkgsrc-4077bf683a571fe3488b0139c80c2bd64e5703b3.tar.gz |
sqlite3: updated to 3.37.2
Changes in version 3.37.2:
Fix a bug introduced in version 3.35.0 (2021-03-12) that can cause database corruption if a SAVEPOINT is rolled back while in PRAGMA temp_store=MEMORY mode, and other changes are made, and then the outer transaction commits. Check-in 73c2b50211d3ae26
Fix a long-standing problem with ON DELETE CASCADE and ON UPDATE CASCADE in which a cache of the bytecode used to implement the cascading change was not being reset following a local DDL change. Check-in 5232c9777fe4fb13.
Other minor fixes that should not impact production builds.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/sqlite3-docs/PLIST | 3 | ||||
-rw-r--r-- | databases/sqlite3-docs/distinfo | 8 | ||||
-rw-r--r-- | databases/sqlite3-tcl/distinfo | 8 | ||||
-rw-r--r-- | databases/sqlite3/Makefile.common | 10 | ||||
-rw-r--r-- | databases/sqlite3/distinfo | 8 |
5 files changed, 19 insertions, 18 deletions
diff --git a/databases/sqlite3-docs/PLIST b/databases/sqlite3-docs/PLIST index fc2508f4367..d4d29e79a5e 100644 --- a/databases/sqlite3-docs/PLIST +++ b/databases/sqlite3-docs/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.106 2021/12/30 20:31:51 adam Exp $ +@comment $NetBSD: PLIST,v 1.107 2022/01/07 21:06:28 adam Exp $ share/doc/sqlite3/34to35.html share/doc/sqlite3/35to36.html share/doc/sqlite3/about.html @@ -636,6 +636,7 @@ share/doc/sqlite3/releaselog/3_35_5.html share/doc/sqlite3/releaselog/3_36_0.html share/doc/sqlite3/releaselog/3_37_0.html share/doc/sqlite3/releaselog/3_37_1.html +share/doc/sqlite3/releaselog/3_37_2.html share/doc/sqlite3/releaselog/3_3_0.html share/doc/sqlite3/releaselog/3_3_1.html share/doc/sqlite3/releaselog/3_3_10.html diff --git a/databases/sqlite3-docs/distinfo b/databases/sqlite3-docs/distinfo index 065d6aae8c3..3a96619b43d 100644 --- a/databases/sqlite3-docs/distinfo +++ b/databases/sqlite3-docs/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.109 2021/12/30 20:31:51 adam Exp $ +$NetBSD: distinfo,v 1.110 2022/01/07 21:06:28 adam Exp $ -BLAKE2s (sqlite-doc-3370100.zip) = 2dd0c877eb0602d5bc7013e0083b16dd1054f2fa2d02d812772ed04ebc59c35f -SHA512 (sqlite-doc-3370100.zip) = 76184e913399734982ddad256273603670e650fc2332ac20a044218fb7e8df69e77ad0970af328d8a8c4403f11de29a7b01ded6a72b9cf727c41d14ccaefd316 -Size (sqlite-doc-3370100.zip) = 10530906 bytes +BLAKE2s (sqlite-doc-3370200.zip) = 1e2232c02989f511a9809b02702dc9af71884d956f1a60ef1d0cb99da89a7cc4 +SHA512 (sqlite-doc-3370200.zip) = 02c68a3906aee3fd05a4340549144032a239e5ab885d9b3b09236ed2b74a90c770de373e4ca9f99e72f92df090d0fb6789213fb361e954d9dd6709af20336857 +Size (sqlite-doc-3370200.zip) = 10542395 bytes diff --git a/databases/sqlite3-tcl/distinfo b/databases/sqlite3-tcl/distinfo index 5e599f83660..5ab2e88c606 100644 --- a/databases/sqlite3-tcl/distinfo +++ b/databases/sqlite3-tcl/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.121 2021/12/30 20:31:51 adam Exp $ +$NetBSD: distinfo,v 1.122 2022/01/07 21:06:28 adam Exp $ -BLAKE2s (sqlite-autoconf-3370100.tar.gz) = d8a824e862b52e29909aadee7334848affda012331c7e6ba8767fc4a6b257d90 -SHA512 (sqlite-autoconf-3370100.tar.gz) = 426f087733a864ed16648b162f80484ffdb415c55da837224fd22365c2ab4621840af984f9c8eb4f1d91aceaabb1f4c1285bd9e92a678f686fdd5d4544f98c81 -Size (sqlite-autoconf-3370100.tar.gz) = 3001542 bytes +BLAKE2s (sqlite-autoconf-3370200.tar.gz) = 02e087a45653742a3a3e949f3a617eb5f54300ada84e075a910a262a8575cf32 +SHA512 (sqlite-autoconf-3370200.tar.gz) = d41049ce4a2007c57f81c54b1cdc3f812abbfafd40736134604392ab16d2d4c29e40f4b927f1deb133b128a869cfdb3434c8640ec227bc4a5da1686024f65d4e +Size (sqlite-autoconf-3370200.tar.gz) = 3001797 bytes SHA1 (patch-Makefile.in) = 6cbbc33a5bc9c98b5aa128279f8e21e47406f537 diff --git a/databases/sqlite3/Makefile.common b/databases/sqlite3/Makefile.common index 81daa0bbe42..eba395e32d4 100644 --- a/databases/sqlite3/Makefile.common +++ b/databases/sqlite3/Makefile.common @@ -1,15 +1,15 @@ -# $NetBSD: Makefile.common,v 1.83 2021/12/30 20:31:51 adam Exp $ +# $NetBSD: Makefile.common,v 1.84 2022/01/07 21:06:28 adam Exp $ # # used by databases/sqlite3/Makefile # used by databases/sqlite3-docs/Makefile # used by databases/sqlite3-tcl/Makefile # used by devel/lemon/Makefile -SQLITE3_DISTVERSION= 3370100 -SQLITE3_VERSION= 3.37.1 +SQLITE3_DISTVERSION= 3370200 +SQLITE3_VERSION= 3.37.2 -MASTER_SITES= http://www.sqlite.org/2021/ -MASTER_SITES+= http://www.hwaci.com/sw/sqlite/2021/ +MASTER_SITES= http://www.sqlite.org/2022/ +MASTER_SITES+= http://www.hwaci.com/sw/sqlite/2022/ HOMEPAGE?= http://www.sqlite.org/ LICENSE= public-domain diff --git a/databases/sqlite3/distinfo b/databases/sqlite3/distinfo index 120c6485f99..2ee97bb5119 100644 --- a/databases/sqlite3/distinfo +++ b/databases/sqlite3/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.176 2021/12/30 20:31:51 adam Exp $ +$NetBSD: distinfo,v 1.177 2022/01/07 21:06:28 adam Exp $ -BLAKE2s (sqlite-autoconf-3370100.tar.gz) = d8a824e862b52e29909aadee7334848affda012331c7e6ba8767fc4a6b257d90 -SHA512 (sqlite-autoconf-3370100.tar.gz) = 426f087733a864ed16648b162f80484ffdb415c55da837224fd22365c2ab4621840af984f9c8eb4f1d91aceaabb1f4c1285bd9e92a678f686fdd5d4544f98c81 -Size (sqlite-autoconf-3370100.tar.gz) = 3001542 bytes +BLAKE2s (sqlite-autoconf-3370200.tar.gz) = 02e087a45653742a3a3e949f3a617eb5f54300ada84e075a910a262a8575cf32 +SHA512 (sqlite-autoconf-3370200.tar.gz) = d41049ce4a2007c57f81c54b1cdc3f812abbfafd40736134604392ab16d2d4c29e40f4b927f1deb133b128a869cfdb3434c8640ec227bc4a5da1686024f65d4e +Size (sqlite-autoconf-3370200.tar.gz) = 3001797 bytes SHA1 (patch-configure) = c0aa83bddc20d090b3cd2fd840ac69031f4396e4 |