update modernc/sqlite to v1.33.1 (with our concurrency workaround) (#3367)

This commit is contained in:
kim 2024-09-27 22:53:36 +00:00 committed by GitHub
commit 3f9a1dbfff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
70 changed files with 622427 additions and 148036 deletions

37
vendor/modernc.org/sqlite/doc.go generated vendored
View file

@ -19,20 +19,21 @@
//
// OS Arch SQLite version
// ------------------------------
// darwin amd64 3.45.3
// darwin arm64 3.45.3
// freebsd amd64 3.45.3
// freebsd arm64 3.45.3
// linux 386 3.45.3
// linux amd64 3.45.3
// linux arm 3.45.3
// linux arm64 3.45.3
// linux loong64 3.45.3
// linux ppc64le 3.45.3
// linux riscv64 3.45.3
// linux s390x 3.45.3
// windows amd64 3.45.3
// windows arm64 3.45.3
// darwin amd64 3.46.0
// darwin arm64 3.46.0
// freebsd amd64 3.46.0
// freebsd arm64 3.46.0
// linux 386 3.46.0
// linux amd64 3.46.0
// linux arm 3.46.0
// linux arm64 3.46.0
// linux loong64 3.46.0
// linux ppc64le 3.46.0
// linux riscv64 3.46.0
// linux s390x 3.46.0
// windows 386 3.46.0
// windows amd64 3.46.0
// windows arm64 3.46.0
//
// # Builders
//
@ -50,6 +51,14 @@
//
// # Changelog
//
// 2024-07-22: v1.31.0
//
// Support windows/386.
//
// 2024-06-04: v1.30.0
//
// Upgrade to SQLite 3.46.0, release notes at https://sqlite.org/releaselog/3_46_0.html.
//
// 2024-02-13: v1.29.0
//
// Upgrade to SQLite 3.45.1, release notes at https://sqlite.org/releaselog/3_45_1.html.