Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

chore(deps): bump the all group with 3 updates#673

Merged
github-actions[bot] merged 1 commit intomainfrom
dependabot/go_modules/all-720b694090
Feb 23, 2026
Merged

chore(deps): bump the all group with 3 updates#673
github-actions[bot] merged 1 commit intomainfrom
dependabot/go_modules/all-720b694090

Conversation

@dependabot
Copy link
Contributor

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

Bumps the all group with 3 updates: github.com/anthropics/anthropic-sdk-go, github.com/ollama/ollama and modernc.org/sqlite.

Updates github.com/anthropics/anthropic-sdk-go from 1.22.1 to 1.26.0

Release notes

Sourced from github.com/anthropics/anthropic-sdk-go's releases.

v1.26.0

1.26.0 (2026-02-19)

Full Changelog: v1.25.1...v1.26.0

Features

  • api: Add top-level cache control (automatic caching) (75f9f70)
  • client: add BetaToolRunner for automatic tool use loops (#603) (e44128a)

Chores

  • internal: codegen related update (6247d2f)

v1.25.1

1.25.1 (2026-02-19)

Full Changelog: v1.25.0...v1.25.1

Bug Fixes

  • client: use correct format specifier for header serialization (9115a61)

v1.25.0

1.25.0 (2026-02-18)

Full Changelog: v1.24.0...v1.25.0

Features

  • api: fix shared UserLocation and error code types (cb98cd0)

v1.24.0

1.24.0 (2026-02-18)

Full Changelog: v1.23.0...v1.24.0

Features

  • api: Make new tool versions available as top level tool types (54d01f5)

v1.23.0

1.23.0 (2026-02-17)

Full Changelog: v1.22.1...v1.23.0

Features

  • api: Releasing claude-sonnet-4-6 (782d5a5)

... (truncated)

Changelog

Sourced from github.com/anthropics/anthropic-sdk-go's changelog.

1.26.0 (2026-02-19)

Full Changelog: v1.25.1...v1.26.0

Features

  • api: Add top-level cache control (automatic caching) (75f9f70)
  • client: add BetaToolRunner for automatic tool use loops (#603) (e44128a)

Chores

  • internal: codegen related update (6247d2f)

1.25.1 (2026-02-19)

Full Changelog: v1.25.0...v1.25.1

Bug Fixes

  • client: use correct format specifier for header serialization (9115a61)

1.25.0 (2026-02-18)

Full Changelog: v1.24.0...v1.25.0

Features

  • api: fix shared UserLocation and error code types (cb98cd0)

1.24.0 (2026-02-18)

Full Changelog: v1.23.0...v1.24.0

Features

1.23.0 (2026-02-17)

Full Changelog: v1.22.1...v1.23.0

Features

  • api: Releasing claude-sonnet-4-6 (782d5a5)

Bug Fixes

... (truncated)

Commits
  • 4d66933 release: 1.26.0
  • e49644f feat(api): Add top-level cache control (automatic caching)
  • 04189ba chore(internal): codegen related update
  • aeafa3d feat(client): add BetaToolRunner for automatic tool use loops (#603)
  • 810d31b release: 1.25.1
  • bb4eef8 fix(client): use correct format specifier for header serialization
  • 1ec20dd release: 1.25.0
  • 030bc93 feat(api): fix shared UserLocation and error code types
  • 8eaaf7d codegen metadata
  • 2666499 codegen metadata
  • Additional commits viewable in compare view

Updates github.com/ollama/ollama from 0.16.1 to 0.17.0

Release notes

Sourced from github.com/ollama/ollama's releases.

v0.17.0

What's Changed

New Contributors

Full Changelog: ollama/ollama@v0.16.3...v0.17.0-rc0

v0.16.3

What's Changed

  • New ollama launch cline added for the Cline CLI
  • ollama launch <integration> will now always show the model picker
  • Added Gemma 3, Llama and Qwen 3 architectures to MLX runner

New Contributors

Full Changelog: ollama/ollama@v0.16.2...v0.16.3

v0.16.2

What's Changed

  • ollama launch claude now supports searching the web when using :cloud models
  • Fixed rendering issue when running ollama in PowerShell
  • New setting in Ollama's app makes it easier to disable cloud models for sensitive and private tasks where data cannot leave your computer. For Linux or when running ollama serve manually, set OLLAMA_NO_CLOUD=1.
  • Fixed issue where experimental image generation models would not run in 0.16.0 and 0.16.1

Full Changelog: ollama/ollama@v0.16.1...v0.16.2-rc0

Commits

Updates modernc.org/sqlite from 1.45.0 to 1.46.1

Changelog

Sourced from modernc.org/sqlite's changelog.

Changelog

  • 2026-02-17 v1.46.1:

    • 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.
    • Fixes [GitHub issue #2](modernc-org/sqlite#2), thanks Edoardo Spadolini!
  • 2026-02-17 v1.46.0:

    • Enable ColumnTypeScanType to report time.Time instead of string for TEXT columns declared as DATE, DATETIME, TIME, or TIMESTAMP via a new _texttotime URI parameter.
    • See [GitHub pull request #1](modernc-org/sqlite#1), thanks devhaozi!
  • 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 [GitLab merge request #90](https://gitlab.com/cznic/sqlite/-/merge_requests/90), thanks Adrian Witas!
  • 2026-01-19 v1.44.3: Resolves [GitLab issue #243](https://gitlab.com/cznic/sqlite/-/issues/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.

... (truncated)

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

Bumps the all group with 3 updates: [github.com/anthropics/anthropic-sdk-go](https://github.com/anthropics/anthropic-sdk-go), [github.com/ollama/ollama](https://github.com/ollama/ollama) and [modernc.org/sqlite](https://gitlab.com/cznic/sqlite).


Updates `github.com/anthropics/anthropic-sdk-go` from 1.22.1 to 1.26.0
- [Release notes](https://github.com/anthropics/anthropic-sdk-go/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-go/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-go@v1.22.1...v1.26.0)

Updates `github.com/ollama/ollama` from 0.16.1 to 0.17.0
- [Release notes](https://github.com/ollama/ollama/releases)
- [Commits](ollama/ollama@v0.16.1...v0.17.0)

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

---
updated-dependencies:
- dependency-name: github.com/anthropics/anthropic-sdk-go
  dependency-version: 1.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/ollama/ollama
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: modernc.org/sqlite
  dependency-version: 1.46.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@github-actions github-actions bot merged commit 364aae5 into main Feb 23, 2026
10 of 16 checks passed
@github-actions github-actions bot deleted the dependabot/go_modules/all-720b694090 branch February 23, 2026 10:58
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants