Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [1.2.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/v1.1.0...v1.2.0) - 2026-06-27

### Added

- *(unstable-v2)* use EnvVariable for terminal auth env ([#1522](https://github.com/agentclientprotocol/agent-client-protocol/pull/1522))
- *(unstable-v2)* Require auth logout support ([#1520](https://github.com/agentclientprotocol/agent-client-protocol/pull/1520))
- *(unstable-v2)* Group v2 auth methods under auth/* ([#1519](https://github.com/agentclientprotocol/agent-client-protocol/pull/1519))
- *(unstable-v2)* require v2 implementation info ([#1517](https://github.com/agentclientprotocol/agent-client-protocol/pull/1517))

### Fixed

- Deserialization leniency part 2 ([#1526](https://github.com/agentclientprotocol/agent-client-protocol/pull/1526))
- *(unstable-v2)* make mcpServers optional in new sessions ([#1523](https://github.com/agentclientprotocol/agent-client-protocol/pull/1523))
- *(rust)* Clean up Protocol version handling ([#1515](https://github.com/agentclientprotocol/agent-client-protocol/pull/1515))

### Other

- *(schema)* correct Implementation description ([#1518](https://github.com/agentclientprotocol/agent-client-protocol/pull/1518))

## [1.1.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/v1.0.0...v1.1.0) - 2026-06-24

### Added
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [
resolver = "3"

[workspace.dependencies]
agent-client-protocol-schema = { path = "agent-client-protocol-schema", version = "1.1.0" }
agent-client-protocol-schema = { path = "agent-client-protocol-schema", version = "1.2.0" }

[workspace.lints.rust]
future_incompatible = { level = "warn", priority = -1 }
Expand Down
2 changes: 1 addition & 1 deletion agent-client-protocol-schema/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "agent-client-protocol-schema"
authors = ["Zed <hi@zed.dev>"]
version = "1.1.0"
version = "1.2.0"
edition = "2024"
license = "Apache-2.0"
description = "A protocol for standardizing communication between code editors and AI coding agents"
Expand Down
11 changes: 11 additions & 0 deletions schema/v1/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.16.1](https://github.com/agentclientprotocol/agent-client-protocol/compare/schema-v1.16.0...schema-v1.16.1) - 2026-06-27

### Fixed

- Deserialization leniency part 2 ([#1526](https://github.com/agentclientprotocol/agent-client-protocol/pull/1526))
- *(unstable-v2)* make mcpServers optional in new sessions ([#1523](https://github.com/agentclientprotocol/agent-client-protocol/pull/1523))

### Other

- *(schema)* correct Implementation description ([#1518](https://github.com/agentclientprotocol/agent-client-protocol/pull/1518))

## [1.16.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/schema-v1.15.0...schema-v1.16.0) - 2026-06-24

### Added
Expand Down
2 changes: 1 addition & 1 deletion schema/v1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent-client-protocol-json-schema-v1"
version = "1.16.0"
version = "1.16.1"
edition = "2024"
license = "Apache-2.0"
description = "Version marker for ACP v1 JSON Schema GitHub releases"
Expand Down