Skip to content

deps(deps): bump the go-dependencies group with 4 updates#217

Merged
hanneshapke merged 1 commit intomainfrom
dependabot/go_modules/go-dependencies-d7bbac5230
Feb 18, 2026
Merged

deps(deps): bump the go-dependencies group with 4 updates#217
hanneshapke merged 1 commit intomainfrom
dependabot/go_modules/go-dependencies-d7bbac5230

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 16, 2026

Bumps the go-dependencies group with 4 updates: github.com/daulet/tokenizers, github.com/yalue/onnxruntime_go, modernc.org/sqlite and github.com/getsentry/sentry-go.

Updates github.com/daulet/tokenizers from 1.23.0 to 1.25.0

Release notes

Sourced from github.com/daulet/tokenizers's releases.

v1.25.0

What's Changed

Full Changelog: daulet/tokenizers@v1.24.0...v1.25.0

v1.24.0

What's Changed

New Contributors

Full Changelog: daulet/tokenizers@v1.23.0...v1.24.0

Commits

Updates github.com/yalue/onnxruntime_go from 1.21.0 to 1.26.0

Commits
  • e25f45b Expose shared allocator APIs in onnxruntime_go
  • 2bbf03c add RegisterExecutionProviderLibrary and UnregisterExecutionProviderLibrary
  • 9d326ee upgrade to onnxruntime v1.24.1
  • 751844e Update README wording and comments on deprecated code
  • f93cc99 Update to .gitattributes, CONTRIBUTING, README for new .h file
  • 7db3ea8 upgrade to onnxruntime 1.23.2
  • 87f8121 Adjust README text on execution providers
  • 737d7d2 Implement string tensor support
  • b832b6b Remove RunWithContext
  • 594461b Support RunOptions
  • Additional commits viewable in compare view

Updates modernc.org/sqlite from 1.34.5 to 1.45.0

Changelog

Sourced from modernc.org/sqlite's changelog.

Changelog

  • 2026-02-09 v1.45.0:

  • Introduce vtab subpackage (modernc.org/sqlite/vtab) exposing Module, Table, Cursor, and IndexInfo API for Go virtual tables.

  • Wire vtab registration into the driver: vtab.RegisterModule installs modules globally and each new connection calls sqlite3_create_module_v2.

  • Implement vtab trampolines for xCreate/xConnect/xBestIndex/xDisconnect/xDestroy/xOpen/xClose/xFilter/xNext/xEof/xColumn/xRowid.

  • Map SQLite’s sqlite3_index_info into vtab.IndexInfo, including constraints, ORDER BY terms, and constraint usage (ArgIndex → xFilter argv[]).

  • Add an in‑repo dummy vtab module and test (module_test.go) that validates registration, basic scanning, and constraint visibility.

  • See merge request 90, thanks Adrian Witas!

  • 2026-01-19 v1.44.3: Resolves issue 243.

  • 2026-01-18 v1.44.2: Upgrade to SQLite 3.51.2.

  • 2026-01-13 v1.44.0: Upgrade to SQLite 3.51.1.

  • 2025-10-10 v1.39.1: Upgrade to SQLite 3.50.4.

  • 2025-06-09 v1.38.0: Upgrade to SQLite 3.50.1.

  • 2025-02-26 v1.36.0: Upgrade to SQLite 3.49.0.

  • 2024-11-16 v1.34.0: Implement ResetSession and IsValid methods in connection

  • 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.

  • 2023-12-14: v1.28.0: Add (*Driver).RegisterConnectionHook, ConnectionHookFn, ExecQuerierContext, RegisterConnectionHook.

  • 2023-08-03 v1.25.0: enable SQLITE_ENABLE_DBSTAT_VTAB.

  • 2023-07-11 v1.24.0: Add (*conn).{Serialize,Deserialize,NewBackup,NewRestore} methods, add Backup type.

  • 2023-06-01 v1.23.0: Allow registering aggregate functions.

  • 2023-04-22 v1.22.0: Support linux/s390x.

  • 2023-02-23 v1.21.0: Upgrade to SQLite 3.41.0, release notes at https://sqlite.org/releaselog/3_41_0.html.

  • 2022-11-28 v1.20.0: Support linux/ppc64le.

... (truncated)

Commits
  • b8975b7 CHANGELOG.md: document v1.45.0
  • 394a108 attempt to fix test build broken by bc68721f
  • bc68721 Merge branch 'branch' into 'master'
  • c228a98 - Enable configurable vtab options and add MATCH coverage. Expose Context.Con...
  • d3d9b0d Merge branch 'fix-_time_format-docs' into 'master'
  • 17d0166 fix(docs): _time_format=sqlite corresponds to format 4
  • bb6a17d document v1.42.3, closes #243
  • 3ca56a2 fcntl.go: s/runtime.Pinner/tls.Alloc/, updates #243
  • e6cf8e5 upgrade to SQLite 3.51.2
  • 86a9c45 update dependencies, updates !88
  • Additional commits viewable in compare view

Updates github.com/getsentry/sentry-go from 0.40.0 to 0.42.0

Release notes

Sourced from github.com/getsentry/sentry-go's releases.

0.42.0

Breaking Changes 🛠

  • refactor Telemetry Processor to use TelemetryItem instead of ItemConvertible by @​giortzisg in #1180
    • remove ToEnvelopeItem from single log items
    • rename TelemetryBuffer to Telemetry Processor to adhere to spec
    • remove unsed ToEnvelopeItem(dsn) from Event.

New Features ✨

  • Add metric support by @​aldy505 in #1151
    • support for three metric methods (counter, gauge, distribution)
    • custom metric units
    • unexport batchlogger

Internal Changes 🔧

Release

Other

0.41.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.41.0.

Features

  • Add HTTP client integration for distributed tracing via sentryhttpclient package (#876)
    • Provides an http.RoundTripper implementation that automatically creates spans for outgoing HTTP requests
    • Supports trace propagation targets configuration via WithTracePropagationTargets option
    • Example usage:
      import sentryhttpclient "github.com/getsentry/sentry-go/httpclient"
      roundTripper := sentryhttpclient.NewSentryRoundTripper(nil)
      client := &http.Client{
      Transport: roundTripper,
      }

  • Add ClientOptions.PropagateTraceparent option to control W3C traceparent header propagation in outgoing HTTP requests (#1161)
  • Add SpanID field to structured logs (#1169)
Changelog

Sourced from github.com/getsentry/sentry-go's changelog.

0.42.0

Breaking Changes 🛠

  • refactor Telemetry Processor to use TelemetryItem instead of ItemConvertible by @​giortzisg in #1180
    • remove ToEnvelopeItem from single log items
    • rename TelemetryBuffer to Telemetry Processor to adhere to spec
    • remove unsed ToEnvelopeItem(dsn) from Event.

New Features ✨

  • Add metric support by @​aldy505 in #1151
    • support for three metric methods (counter, gauge, distribution)
    • custom metric units
    • unexport batchlogger

Internal Changes 🔧

Release

Other

0.41.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.41.0.

Features

  • Add HTTP client integration for distributed tracing via sentryhttpclient package (#876)
    • Provides an http.RoundTripper implementation that automatically creates spans for outgoing HTTP requests
    • Supports trace propagation targets configuration via WithTracePropagationTargets option
    • Example usage:
      import sentryhttpclient "github.com/getsentry/sentry-go/httpclient"
      roundTripper := sentryhttpclient.NewSentryRoundTripper(nil)
      client := &http.Client{
      Transport: roundTripper,
      }

  • Add ClientOptions.PropagateTraceparent option to control W3C traceparent header propagation in outgoing HTTP requests (#1161)
  • Add SpanID field to structured logs (#1169)
Commits

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 commands and options

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

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 16, 2026

Labels

The following labels could not be found: dependencies, go. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Bumps the go-dependencies group with 4 updates: [github.com/daulet/tokenizers](https://github.com/daulet/tokenizers), [github.com/yalue/onnxruntime_go](https://github.com/yalue/onnxruntime_go), [modernc.org/sqlite](https://gitlab.com/cznic/sqlite) and [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go).


Updates `github.com/daulet/tokenizers` from 1.23.0 to 1.25.0
- [Release notes](https://github.com/daulet/tokenizers/releases)
- [Commits](daulet/tokenizers@v1.23.0...v1.25.0)

Updates `github.com/yalue/onnxruntime_go` from 1.21.0 to 1.26.0
- [Commits](yalue/onnxruntime_go@v1.21.0...v1.26.0)

Updates `modernc.org/sqlite` from 1.34.5 to 1.45.0
- [Changelog](https://gitlab.com/cznic/sqlite/blob/master/CHANGELOG.md)
- [Commits](https://gitlab.com/cznic/sqlite/compare/v1.34.5...v1.45.0)

Updates `github.com/getsentry/sentry-go` from 0.40.0 to 0.42.0
- [Release notes](https://github.com/getsentry/sentry-go/releases)
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-go@v0.40.0...v0.42.0)

---
updated-dependencies:
- dependency-name: github.com/daulet/tokenizers
  dependency-version: 1.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/yalue/onnxruntime_go
  dependency-version: 1.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: modernc.org/sqlite
  dependency-version: 1.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/getsentry/sentry-go
  dependency-version: 0.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/go-dependencies-d7bbac5230 branch from 778c88b to a643eee Compare February 17, 2026 23:44
@hanneshapke hanneshapke merged commit 2b9d49a into main Feb 18, 2026
4 checks passed
@dependabot dependabot bot deleted the dependabot/go_modules/go-dependencies-d7bbac5230 branch February 18, 2026 00:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant