From f0a9cbf31bf528657c3ca7c8373cd9d9a3152d9f Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Fri, 19 Dec 2025 17:11:21 +0200 Subject: [PATCH] updated modernc.org/sqlite to v1.41.0 --- CHANGELOG.md | 4 ++-- go.mod | 2 +- go.sum | 4 ++-- modernc_versions_check.go | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 618d47a5..2d051b35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,10 @@ - Store the correct `image/png` as attrs content type when generating a thumb fallback _(e.g. for `webp`)_. -- Trimmed the uploaded file name and extension from leftover `.` characters after normalization. +- Trimmed custom uploaded file name and extension from leftover `.` characters after `filesystem.File` normalization. _This was done to prevent issues with external files sync programs that may have special handling for "invisible" files._ -- Updated Go deps. +- Updated `modernc.org/sqlite` _(v1.41.0 includes prepared statements optimization)_ and other minor Go deps. ## v0.34.2 diff --git a/go.mod b/go.mod index 6f5950b3..6fcc5297 100644 --- a/go.mod +++ b/go.mod @@ -22,7 +22,7 @@ require ( golang.org/x/net v0.48.0 golang.org/x/oauth2 v0.34.0 golang.org/x/sync v0.19.0 - modernc.org/sqlite v1.40.1 + modernc.org/sqlite v1.41.0 ) require ( diff --git a/go.sum b/go.sum index f487154d..f07bb00e 100644 --- a/go.sum +++ b/go.sum @@ -133,8 +133,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.40.1 h1:VfuXcxcUWWKRBuP8+BR9L7VnmusMgBNNnBYGEe9w/iY= -modernc.org/sqlite v1.40.1/go.mod h1:9fjQZ0mB1LLP0GYrp39oOJXx/I2sxEnZtzCmEQIKvGE= +modernc.org/sqlite v1.41.0 h1:bJXddp4ZpsqMsNN1vS0jWo4IJTZzb8nWpcgvyCFG9Ck= +modernc.org/sqlite v1.41.0/go.mod h1:9fjQZ0mB1LLP0GYrp39oOJXx/I2sxEnZtzCmEQIKvGE= 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 b157419f..fad80803 100644 --- a/modernc_versions_check.go +++ b/modernc_versions_check.go @@ -10,7 +10,7 @@ import ( ) const ( - expectedDriverVersion = "v1.40.1" + expectedDriverVersion = "v1.41.0" expectedLibcVersion = "v1.66.10" // ModerncDepsCheckHookId is the id of the hook that performs the modernc.org/* deps checks.