Skip to content

build(deps): bump github.com/coder/acp-go-sdk from 0.6.3 to 0.12.0#665

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/github.com/coder/acp-go-sdk-0.12.0
Closed

build(deps): bump github.com/coder/acp-go-sdk from 0.6.3 to 0.12.0#665
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/github.com/coder/acp-go-sdk-0.12.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 21, 2026

Bumps github.com/coder/acp-go-sdk from 0.6.3 to 0.12.0.

Release notes

Sourced from github.com/coder/acp-go-sdk's releases.

v0.12.0

What's Changed

Full Changelog: coder/acp-go-sdk@v0.11.7...v0.12.0

v0.11.7

Change Impact
Agent interface gained ListSessions() All Agent implementors must add this method
Client interface: KillTerminalCommand()KillTerminal() Method rename — all Client implementors break
KillTerminalCommandRequest/ResponseKillTerminalRequest/Response Type renames
FileSystemCapabilityFileSystemCapabilities Type rename
AuthMethod changed from flat struct to discriminated union Was AuthMethod{Id: "x", Name: "y"}, now AuthMethod{Agent: &AuthMethodAgent{Id: "x", Name: "y"}}
ClientCapabilities / AgentCapabilities now serialize "auth":{} by default Wire format change

What's Changed

Full Changelog: coder/acp-go-sdk@v0.10.8...v0.11.7

v0.10.8

What's Changed

New Contributors

Full Changelog: coder/acp-go-sdk@v0.6.3...v0.10.8

Commits
  • 72c8f1d chore: bump version to 0.12.0 (#31)
  • 3a19dcb fix(connection): response-scoped notification barrier (fixes WaitGroup reuse ...
  • c180b9d chore: bump version to 0.11.7 (#29)
  • 584abe6 feat(unstable): expose typed session selector/capability fields for clients (...
  • d5cd19f ci: re-enable depot runners (#25)
  • dbb5044 Add unstable ACP schema support + $/cancel_request (#17)
  • 38d6de7 fix: serialize notification processing to maintain message order (#8)
  • 2b2c16c ci: bump nix-community/cache-nix-action in the github-actions group (#19)
  • 62137e8 ci: bump the github-actions group across 1 directory with 2 updates (#16)
  • c225368 Bump ACP schema to 0.10.7 (#15)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/coder/acp-go-sdk](https://github.com/coder/acp-go-sdk) from 0.6.3 to 0.12.0.
- [Release notes](https://github.com/coder/acp-go-sdk/releases)
- [Commits](coder/acp-go-sdk@v0.6.3...v0.12.0)

---
updated-dependencies:
- dependency-name: github.com/coder/acp-go-sdk
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Apr 21, 2026
@roborev-ci
Copy link
Copy Markdown

roborev-ci Bot commented Apr 21, 2026

roborev: Combined Review (76d0dbc)

Verdict: Medium-risk dependency update; verify ACP compatibility and include complete module metadata before merging.

Medium

  • go.mod:13
    Bumping github.com/coder/acp-go-sdk from v0.6.3 to v0.12.0 is a significant 0.x upgrade, which can include breaking API or protocol changes. This dependency is used in production ACP integration code, but the change only updates module manifests and does not show corresponding compatibility updates or stronger ACP-specific test coverage.
    Fix: Validate the ACP adapter against v0.12.0 before merge and add or update ACP-focused tests, especially around session initialization, mode negotiation, and tool handling.

  • go.mod
    The dependency bump is reported without corresponding go.sum updates. If go.sum is actually missing from the change, that can break clean builds or force consumers to regenerate module metadata locally.
    Fix: Run go mod tidy and include any resulting go.sum changes in the commit.


Synthesized from 3 reviews (agents: codex, gemini | types: default, security)

wesm added a commit that referenced this pull request Apr 22, 2026
## Summary

Consolidates the following dependabot updates:

- #663 -- build(deps): bump github.com/jackc/pgx/v5 from 5.9.1 to 5.9.2
- #664 -- build(deps): bump modernc.org/sqlite from 1.48.2 to 1.49.1
- #665 -- build(deps): bump github.com/coder/acp-go-sdk from 0.6.3 to 0.12.0

The acp-go-sdk 0.6.3 → 0.12.0 jump introduces breaking renames that are adapted in `internal/agent`:

- `KillTerminalCommand` method → `KillTerminal` (to satisfy the new `acp.Client` interface), along with the associated `KillTerminalCommandRequest`/`Response` → `KillTerminalRequest`/`Response` types
- `acp.FileSystemCapability` → `acp.FileSystemCapabilities`
- `conn.SetSessionModel` / `acp.SetSessionModelRequest` / `acp.ModelId` → `conn.UnstableSetSessionModel` / `acp.UnstableSetSessionModelRequest` / `acp.UnstableModelId`
- `acp.RequestPermissionToolCall` → `acp.ToolCallUpdate` in tests

`flake.nix` vendorHash updated for the new dependency set.

Closes #663, #664, #665

Co-authored-by: Wes McKinney <wesm@users.noreply.github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 22, 2026

Looks like github.com/coder/acp-go-sdk is up-to-date now, so this is no longer needed.

@dependabot dependabot Bot closed this Apr 22, 2026
@dependabot dependabot Bot deleted the dependabot/go_modules/github.com/coder/acp-go-sdk-0.12.0 branch April 22, 2026 00:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants