Skip to content

Commit 21176ca

Browse files
build(deps): bump modernc.org/sqlite from 1.46.1 to 1.47.0 in the gomod group (#1045)
Bumps the gomod group with 1 update: [modernc.org/sqlite](https://gitlab.com/cznic/sqlite). Updates `modernc.org/sqlite` from 1.46.1 to 1.47.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://gitlab.com/cznic/sqlite/blob/master/CHANGELOG.md">modernc.org/sqlite's changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <ul> <li> <p>2026-03-17 v1.47.0: Add CGO-free version of the vector extensions from <a href="https://github.com/asg017/sqlite-vec">https://github.com/asg017/sqlite-vec</a>. See <code>vec_test.go</code> for example usage. From the GitHub project page:</p> <ul> <li><strong>Important:</strong> sqlite-vec is a pre-v1, so expect breaking changes!</li> <li>Store and query float, int8, and binary vectors in vec0 virtual tables</li> <li>Written in pure C, no dependencies, runs anywhere SQLite runs (Linux/MacOS/Windows, in the browser with WASM, Raspberry Pis, etc.)</li> <li>Store non-vector data in metadata, auxiliary, or partition key columns</li> <li>Thanks Zhenghao Zhang!</li> </ul> </li> <li> <p>2026-03-16 v1.46.2: Upgrade to <a href="https://sqlite.org/releaselog/3_51_3.html">SQLite 3.51.3</a>.</p> </li> <li> <p>2026-02-17 v1.46.1:</p> <ul> <li>Ensure connection state is reset if Tx.Commit fails. Previously, errors like SQLITE_BUSY during COMMIT could leave the underlying connection inside a transaction, causing errors when the connection was reused by the database/sql pool. The driver now detects this state and forces a rollback internally.</li> <li>Fixes [GitHub issue <a href="https://gitlab.com/cznic/sqlite/issues/2">#2</a>](<a href="https://redirect.github.com/modernc-org/sqlite/issues/2">modernc-org/sqlite#2</a>), thanks Edoardo Spadolini!</li> </ul> </li> <li> <p>2026-02-17 v1.46.0:</p> <ul> <li>Enable ColumnTypeScanType to report time.Time instead of string for TEXT columns declared as DATE, DATETIME, TIME, or TIMESTAMP via a new <code>_texttotime</code> URI parameter.</li> <li>See [GitHub pull request <a href="https://gitlab.com/cznic/sqlite/issues/1">#1</a>](<a href="https://redirect.github.com/modernc-org/sqlite/pull/1">modernc-org/sqlite#1</a>), thanks devhaozi!</li> </ul> </li> <li> <p>2026-02-09 v1.45.0:</p> <ul> <li>Introduce vtab subpackage (modernc.org/sqlite/vtab) exposing Module, Table, Cursor, and IndexInfo API for Go virtual tables.</li> <li>Wire vtab registration into the driver: vtab.RegisterModule installs modules globally and each new connection calls sqlite3_create_module_v2.</li> <li>Implement vtab trampolines for xCreate/xConnect/xBestIndex/xDisconnect/xDestroy/xOpen/xClose/xFilter/xNext/xEof/xColumn/xRowid.</li> <li>Map SQLite’s sqlite3_index_info into vtab.IndexInfo, including constraints, ORDER BY terms, and constraint usage (ArgIndex → xFilter argv[]).</li> <li>Add an in‑repo dummy vtab module and test (module_test.go) that validates registration, basic scanning, and constraint visibility.</li> <li>See [GitLab merge request <a href="https://gitlab.com/cznic/sqlite/issues/90">#90</a>](<a href="https://gitlab.com/cznic/sqlite/-/merge_requests/90">https://gitlab.com/cznic/sqlite/-/merge_requests/90</a>), thanks Adrian Witas!</li> </ul> </li> <li> <p>2026-01-19 v1.44.3: Resolves [GitLab issue <a href="https://gitlab.com/cznic/sqlite/issues/243">#243</a>](<a href="https://gitlab.com/cznic/sqlite/-/issues/243">https://gitlab.com/cznic/sqlite/-/issues/243</a>).</p> </li> <li> <p>2026-01-18 v1.44.2: Upgrade to <a href="https://sqlite.org/releaselog/3_51_2.html">SQLite 3.51.2</a>.</p> </li> <li> <p>2026-01-13 v1.44.0: Upgrade to SQLite 3.51.1.</p> </li> <li> <p>2025-10-10 v1.39.1: Upgrade to SQLite 3.50.4.</p> </li> <li> <p>2025-06-09 v1.38.0: Upgrade to SQLite 3.50.1.</p> </li> <li> <p>2025-02-26 v1.36.0: Upgrade to SQLite 3.49.0.</p> </li> <li> <p>2024-11-16 v1.34.0: Implement ResetSession and IsValid methods in connection</p> </li> <li> <p>2024-07-22 v1.31.0: Support windows/386.</p> </li> <li> <p>2024-06-04 v1.30.0: Upgrade to SQLite 3.46.0, release notes at <a href="https://sqlite.org/releaselog/3_46_0.html">https://sqlite.org/releaselog/3_46_0.html</a>.</p> </li> <li> <p>2024-02-13 v1.29.0: Upgrade to SQLite 3.45.1, release notes at <a href="https://sqlite.org/releaselog/3_45_1.html">https://sqlite.org/releaselog/3_45_1.html</a>.</p> </li> <li> <p>2023-12-14: v1.28.0: Add (*Driver).RegisterConnectionHook,</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://gitlab.com/cznic/sqlite/commit/b4deaee99fa6db5c82923a642425ecd815484492"><code>b4deaee</code></a> include Zhenghao Zhang in CHANGELOG, AUTHORS, CONTRIBUTORS, updates !93</li> <li><a href="https://gitlab.com/cznic/sqlite/commit/ba4fc0ba6cc299eab6ba09e12ac34abad0d72b6b"><code>ba4fc0b</code></a> add sqlite_vec extension, updates !93</li> <li><a href="https://gitlab.com/cznic/sqlite/commit/8b9ffba7e524e8e1336ed501b71dbcc87415e3c9"><code>8b9ffba</code></a> Merge branch 'windows' into 'master'</li> <li><a href="https://gitlab.com/cznic/sqlite/commit/614a125a7a127075574e877f09fe0c05308ef6c0"><code>614a125</code></a> Add sqlite-vec support</li> <li><a href="https://gitlab.com/cznic/sqlite/commit/d7c9932b311af8741de8fa03011de3704940d210"><code>d7c9932</code></a> vendor libsqlite3/SQLite 3.51.3, updates <a href="https://gitlab.com/cznic/sqlite/issues/247">#247</a></li> <li>See full diff in <a href="https://gitlab.com/cznic/sqlite/compare/v1.46.1...v1.47.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=modernc.org/sqlite&package-manager=go_modules&previous-version=1.46.1&new-version=1.47.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e7bd535 commit 21176ca

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ require (
2121
github.com/ziutek/mymysql v1.5.4
2222
go.uber.org/multierr v1.11.0
2323
golang.org/x/sync v0.20.0
24-
modernc.org/sqlite v1.46.1
24+
modernc.org/sqlite v1.47.0
2525
)
2626

2727
require (
@@ -76,14 +76,14 @@ require (
7676
golang.org/x/crypto v0.48.0 // indirect
7777
golang.org/x/exp v0.0.0-20260218203240-3dfff04db8fa // indirect
7878
golang.org/x/net v0.50.0 // indirect
79-
golang.org/x/sys v0.41.0 // indirect
79+
golang.org/x/sys v0.42.0 // indirect
8080
golang.org/x/text v0.34.0 // indirect
8181
google.golang.org/genproto/googleapis/rpc v0.0.0-20260217215200-42d3e9bedb6d // indirect
8282
google.golang.org/grpc v1.79.3 // indirect
8383
google.golang.org/protobuf v1.36.11 // indirect
8484
gopkg.in/yaml.v3 v3.0.1 // indirect
8585
howett.net/plist v1.0.1 // indirect
86-
modernc.org/libc v1.68.0 // indirect
86+
modernc.org/libc v1.70.0 // indirect
8787
modernc.org/mathutil v1.7.1 // indirect
8888
modernc.org/memory v1.11.0 // indirect
8989
)

go.sum

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -303,8 +303,8 @@ golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7w
303303
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
304304
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
305305
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
306-
golang.org/x/sys v0.41.0 h1:Ivj+2Cp/ylzLiEU89QhWblYnOE9zerudt9Ftecq2C6k=
307-
golang.org/x/sys v0.41.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
306+
golang.org/x/sys v0.42.0 h1:omrd2nAlyT5ESRdCLYdm3+fMfNFE/+Rf4bDIQImRJeo=
307+
golang.org/x/sys v0.42.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
308308
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
309309
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
310310
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
@@ -380,18 +380,18 @@ howett.net/plist v1.0.1 h1:37GdZ8tP09Q35o9ych3ehygcsL+HqKSwzctveSlarvM=
380380
howett.net/plist v1.0.1/go.mod h1:lqaXoTrLY4hg8tnEzNru53gicrbv7rrk+2xJA/7hw9g=
381381
modernc.org/cc/v4 v4.27.1 h1:9W30zRlYrefrDV2JE2O8VDtJ1yPGownxciz5rrbQZis=
382382
modernc.org/cc/v4 v4.27.1/go.mod h1:uVtb5OGqUKpoLWhqwNQo/8LwvoiEBLvZXIQ/SmO6mL0=
383-
modernc.org/ccgo/v4 v4.30.2 h1:4yPaaq9dXYXZ2V8s1UgrC3KIj580l2N4ClrLwnbv2so=
384-
modernc.org/ccgo/v4 v4.30.2/go.mod h1:yZMnhWEdW0qw3EtCndG1+ldRrVGS+bIwyWmAWzS0XEw=
385-
modernc.org/fileutil v1.3.40 h1:ZGMswMNc9JOCrcrakF1HrvmergNLAmxOPjizirpfqBA=
386-
modernc.org/fileutil v1.3.40/go.mod h1:HxmghZSZVAz/LXcMNwZPA/DRrQZEVP9VX0V4LQGQFOc=
383+
modernc.org/ccgo/v4 v4.32.0 h1:hjG66bI/kqIPX1b2yT6fr/jt+QedtP2fqojG2VrFuVw=
384+
modernc.org/ccgo/v4 v4.32.0/go.mod h1:6F08EBCx5uQc38kMGl+0Nm0oWczoo1c7cgpzEry7Uc0=
385+
modernc.org/fileutil v1.4.0 h1:j6ZzNTftVS054gi281TyLjHPp6CPHr2KCxEXjEbD6SM=
386+
modernc.org/fileutil v1.4.0/go.mod h1:EqdKFDxiByqxLk8ozOxObDSfcVOv/54xDs/DUHdvCUU=
387387
modernc.org/gc/v2 v2.6.5 h1:nyqdV8q46KvTpZlsw66kWqwXRHdjIlJOhG6kxiV/9xI=
388388
modernc.org/gc/v2 v2.6.5/go.mod h1:YgIahr1ypgfe7chRuJi2gD7DBQiKSLMPgBQe9oIiito=
389389
modernc.org/gc/v3 v3.1.2 h1:ZtDCnhonXSZexk/AYsegNRV1lJGgaNZJuKjJSWKyEqo=
390390
modernc.org/gc/v3 v3.1.2/go.mod h1:HFK/6AGESC7Ex+EZJhJ2Gni6cTaYpSMmU/cT9RmlfYY=
391391
modernc.org/goabi0 v0.2.0 h1:HvEowk7LxcPd0eq6mVOAEMai46V+i7Jrj13t4AzuNks=
392392
modernc.org/goabi0 v0.2.0/go.mod h1:CEFRnnJhKvWT1c1JTI3Avm+tgOWbkOu5oPA8eH8LnMI=
393-
modernc.org/libc v1.68.0 h1:PJ5ikFOV5pwpW+VqCK1hKJuEWsonkIJhhIXyuF/91pQ=
394-
modernc.org/libc v1.68.0/go.mod h1:NnKCYeoYgsEqnY3PgvNgAeaJnso968ygU8Z0DxjoEc0=
393+
modernc.org/libc v1.70.0 h1:U58NawXqXbgpZ/dcdS9kMshu08aiA6b7gusEusqzNkw=
394+
modernc.org/libc v1.70.0/go.mod h1:OVmxFGP1CI/Z4L3E0Q3Mf1PDE0BucwMkcXjjLntvHJo=
395395
modernc.org/mathutil v1.7.1 h1:GCZVGXdaN8gTqB1Mf/usp1Y/hSqgI2vAGGP4jZMCxOU=
396396
modernc.org/mathutil v1.7.1/go.mod h1:4p5IwJITfppl0G4sUEDtCr4DthTaT47/N3aT6MhfgJg=
397397
modernc.org/memory v1.11.0 h1:o4QC8aMQzmcwCK3t3Ux/ZHmwFPzE6hf2Y5LbkRs+hbI=
@@ -400,8 +400,8 @@ modernc.org/opt v0.1.4 h1:2kNGMRiUjrp4LcaPuLY2PzUfqM/w9N23quVwhKt5Qm8=
400400
modernc.org/opt v0.1.4/go.mod h1:03fq9lsNfvkYSfxrfUhZCWPk1lm4cq4N+Bh//bEtgns=
401401
modernc.org/sortutil v1.2.1 h1:+xyoGf15mM3NMlPDnFqrteY07klSFxLElE2PVuWIJ7w=
402402
modernc.org/sortutil v1.2.1/go.mod h1:7ZI3a3REbai7gzCLcotuw9AC4VZVpYMjDzETGsSMqJE=
403-
modernc.org/sqlite v1.46.1 h1:eFJ2ShBLIEnUWlLy12raN0Z1plqmFX9Qe3rjQTKt6sU=
404-
modernc.org/sqlite v1.46.1/go.mod h1:CzbrU2lSB1DKUusvwGz7rqEKIq+NUd8GWuBBZDs9/nA=
403+
modernc.org/sqlite v1.47.0 h1:R1XyaNpoW4Et9yly+I2EeX7pBza/w+pmYee/0HJDyKk=
404+
modernc.org/sqlite v1.47.0/go.mod h1:hWjRO6Tj/5Ik8ieqxQybiEOUXy0NJFNp2tpvVpKlvig=
405405
modernc.org/strutil v1.2.1 h1:UneZBkQA+DX2Rp35KcM69cSsNES9ly8mQWD71HKlOA0=
406406
modernc.org/strutil v1.2.1/go.mod h1:EHkiggD70koQxjVdSBM3JKM7k6L0FbGE5eymy9i3B9A=
407407
modernc.org/token v1.1.0 h1:Xl7Ap9dKaEs5kLoOQeQmPWevfnk/DM5qcLcYlA8ys6Y=

0 commit comments

Comments
 (0)