[chore] Update uptrace/bun and modernc/sqlite dependencies (#1598)

* [chore] Update bun from 1.1.10 -> 1.1.12

* [chore] bump modernc/sqlite 1.20.4 -> 1.21.0
This commit is contained in:
tobi 2023-03-06 11:00:53 +01:00 committed by GitHub
commit b344c2c8f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
84 changed files with 127892 additions and 111380 deletions

View file

@ -5,6 +5,10 @@
//go:build generator
// +build generator
//TODO 2023-02-23, netbsd/amd64 fails generating SQLite 3.41:
//
// C front end 36/85: testdata/sqlite-src-3410000/ext/recover/sqlite3recover.c ... testdata/sqlite-src-3410000/ext/recover/sqlite3recover.c:2023:41: front-end: undefined: SQLITE_FCNTL_RESET_CACHE
package main
import (
@ -265,12 +269,12 @@ var (
sz int
dev bool
}{
{sqliteDir, "https://www.sqlite.org/2022/sqlite-amalgamation-3400100.zip", 2457, false},
{sqliteSrcDir, "https://www.sqlite.org/2022/sqlite-src-3400100.zip", 12814, false},
{sqliteDir, "https://www.sqlite.org/2023/sqlite-amalgamation-3410000.zip", 2457, false},
{sqliteSrcDir, "https://www.sqlite.org/2023/sqlite-src-3410000.zip", 12814, false},
}
sqliteDir = filepath.FromSlash("testdata/sqlite-amalgamation-3400100")
sqliteSrcDir = filepath.FromSlash("testdata/sqlite-src-3400100")
sqliteDir = filepath.FromSlash("testdata/sqlite-amalgamation-3410000")
sqliteSrcDir = filepath.FromSlash("testdata/sqlite-src-3410000")
)
func download() {
@ -527,8 +531,9 @@ func makeTestfixture(goos, goarch string, more []string) {
"ext/fts5/fts5_tcl.c",
"ext/fts5/fts5_test_mi.c",
"ext/fts5/fts5_test_tok.c",
"ext/misc/appendvfs.c",
"ext/misc/amatch.c",
"ext/misc/appendvfs.c",
"ext/misc/basexx.c",
"ext/misc/carray.c",
"ext/misc/cksumvfs.c",
"ext/misc/closure.c",
@ -566,7 +571,6 @@ func makeTestfixture(goos, goarch string, more []string) {
"src/test4.c",
"src/test5.c",
"src/test6.c",
"src/test7.c",
"src/test8.c",
"src/test9.c",
"src/test_async.c",
@ -595,7 +599,6 @@ func makeTestfixture(goos, goarch string, more []string) {
"src/test_quota.c",
"src/test_rtree.c",
"src/test_schema.c",
"src/test_server.c",
"src/test_superlock.c",
"src/test_syscall.c",
"src/test_tclsh.c",