From 9b036fb10fe2bf3c0e905417873ea93edf7de729 Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Sun, 18 Jan 2026 18:57:18 +0200 Subject: [PATCH] updated modernc.org/sqlite to 1.44.2 --- CHANGELOG.md | 2 ++ go.mod | 2 +- go.sum | 4 ++-- modernc_versions_check.go | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22cf5613..26ab7568 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ and the minor performance boost that you may get when used on large records is not enough to justify the more common use ([#7461](https://github.com/pocketbase/pocketbase/discussions/7461)). _A better generic deduplication optimization for large records (aka. records with large `text`/`json` fields or many small ones) will be researched but there are no ETAs._ +- Updated `modernc.org/sqlite` to v1.44.2 _(SQLite 3.51.2)_. + - Fixed code comment typos. diff --git a/go.mod b/go.mod index 298f6a25..f18ed025 100644 --- a/go.mod +++ b/go.mod @@ -22,7 +22,7 @@ require ( golang.org/x/net v0.49.0 golang.org/x/oauth2 v0.34.0 golang.org/x/sync v0.19.0 - modernc.org/sqlite v1.44.1 + modernc.org/sqlite v1.44.2 ) require ( diff --git a/go.sum b/go.sum index 9b460b9f..28ef19bb 100644 --- a/go.sum +++ b/go.sum @@ -137,8 +137,8 @@ modernc.org/opt v0.1.4 h1:2kNGMRiUjrp4LcaPuLY2PzUfqM/w9N23quVwhKt5Qm8= modernc.org/opt v0.1.4/go.mod h1:03fq9lsNfvkYSfxrfUhZCWPk1lm4cq4N+Bh//bEtgns= modernc.org/sortutil v1.2.1 h1:+xyoGf15mM3NMlPDnFqrteY07klSFxLElE2PVuWIJ7w= modernc.org/sortutil v1.2.1/go.mod h1:7ZI3a3REbai7gzCLcotuw9AC4VZVpYMjDzETGsSMqJE= -modernc.org/sqlite v1.44.1 h1:qybx/rNpfQipX/t47OxbHmkkJuv2JWifCMH8SVUiDas= -modernc.org/sqlite v1.44.1/go.mod h1:CzbrU2lSB1DKUusvwGz7rqEKIq+NUd8GWuBBZDs9/nA= +modernc.org/sqlite v1.44.2 h1:EdYqXeBpKFJjg8QYnw6E71MpANkoxyuYi+g68ugOL8g= +modernc.org/sqlite v1.44.2/go.mod h1:CzbrU2lSB1DKUusvwGz7rqEKIq+NUd8GWuBBZDs9/nA= modernc.org/strutil v1.2.1 h1:UneZBkQA+DX2Rp35KcM69cSsNES9ly8mQWD71HKlOA0= modernc.org/strutil v1.2.1/go.mod h1:EHkiggD70koQxjVdSBM3JKM7k6L0FbGE5eymy9i3B9A= modernc.org/token v1.1.0 h1:Xl7Ap9dKaEs5kLoOQeQmPWevfnk/DM5qcLcYlA8ys6Y= diff --git a/modernc_versions_check.go b/modernc_versions_check.go index b86cecc1..e8917cca 100644 --- a/modernc_versions_check.go +++ b/modernc_versions_check.go @@ -10,7 +10,7 @@ import ( ) const ( - expectedDriverVersion = "v1.44.1" + expectedDriverVersion = "v1.44.2" expectedLibcVersion = "v1.67.6" // ModerncDepsCheckHookId is the id of the hook that performs the modernc.org/* deps checks.