From 8e0f6059fe18fa71e1e6167f1c481aa1f8d07531 Mon Sep 17 00:00:00 2001 From: "acp-release-bot[bot]" <246668977+acp-release-bot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 10:33:31 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 28 +++++++++++++++++++++++++ Cargo.lock | 4 ++-- Cargo.toml | 2 +- agent-client-protocol-schema/Cargo.toml | 2 +- schema/v1/CHANGELOG.md | 17 +++++++++++++++ schema/v1/Cargo.toml | 2 +- 6 files changed, 50 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 709ae8ee1..83715d7cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # Changelog +## [1.3.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/v1.2.0...v1.3.0) - 2026-07-06 + +### Added + +- *(schema)* Stabilize boolean session config options ([#1604](https://github.com/agentclientprotocol/agent-client-protocol/pull/1604)) +- *(unstable-v2)* tighten v2 field validation ([#1587](https://github.com/agentclientprotocol/agent-client-protocol/pull/1587)) +- *(unstable-v2)* New diff format ([#1586](https://github.com/agentclientprotocol/agent-client-protocol/pull/1586)) +- *(unstable-v2)* Unify session/load and session/resume ([#1584](https://github.com/agentclientprotocol/agent-client-protocol/pull/1584)) +- *(unstable-v2)* require more session methods by default ([#1578](https://github.com/agentclientprotocol/agent-client-protocol/pull/1578)) +- *(unstable-v2)* More flexible permission requests ([#1577](https://github.com/agentclientprotocol/agent-client-protocol/pull/1577)) +- *(unstable-v2)* Align v2 Content types with the latest MCP spec ([#1576](https://github.com/agentclientprotocol/agent-client-protocol/pull/1576)) +- *(unstable-v2)* Unify the ID naming conventions across the schema ([#1567](https://github.com/agentclientprotocol/agent-client-protocol/pull/1567)) +- *(unstable-v2)* require typed config values ([#1561](https://github.com/agentclientprotocol/agent-client-protocol/pull/1561)) + +### Fixed + +- *(schema)* Reject malformed protocol fields ([#1583](https://github.com/agentclientprotocol/agent-client-protocol/pull/1583)) +- *(unstable)* remove URL elicitation error ([#1574](https://github.com/agentclientprotocol/agent-client-protocol/pull/1574)) +- *(unstable-v2)* Preserve meta update signals in v2 ([#1573](https://github.com/agentclientprotocol/agent-client-protocol/pull/1573)) +- *(unstable-v2)* Continue to make more enums future compatible ([#1571](https://github.com/agentclientprotocol/agent-client-protocol/pull/1571)) +- *(unstable-v2)* Make empty MCP arrays optional ([#1570](https://github.com/agentclientprotocol/agent-client-protocol/pull/1570)) +- *(unstable-v2)* Make all session lifecycle requests consistent ([#1555](https://github.com/agentclientprotocol/agent-client-protocol/pull/1555)) + +### Other + +- *(schema)* Clean up generated documentation and make wording more consistent ([#1568](https://github.com/agentclientprotocol/agent-client-protocol/pull/1568)) +- *(rust)* Box v2 protocol enum variants ([#1562](https://github.com/agentclientprotocol/agent-client-protocol/pull/1562)) + ## [1.2.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/v1.1.0...v1.2.0) - 2026-06-29 ### Added diff --git a/Cargo.lock b/Cargo.lock index d265c74b2..f3df8599a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agent-client-protocol-json-schema-v1" -version = "1.17.0" +version = "1.18.0" [[package]] name = "agent-client-protocol-json-schema-v2" @@ -12,7 +12,7 @@ version = "2.0.0-alpha.0" [[package]] name = "agent-client-protocol-schema" -version = "1.2.0" +version = "1.3.0" dependencies = [ "anyhow", "derive_more", diff --git a/Cargo.toml b/Cargo.toml index 0158b3356..a4a15f9cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ members = [ resolver = "3" [workspace.dependencies] -agent-client-protocol-schema = { path = "agent-client-protocol-schema", version = "1.2.0" } +agent-client-protocol-schema = { path = "agent-client-protocol-schema", version = "1.3.0" } [workspace.lints.rust] future_incompatible = { level = "warn", priority = -1 } diff --git a/agent-client-protocol-schema/Cargo.toml b/agent-client-protocol-schema/Cargo.toml index c50d7d2ad..28e387cf7 100644 --- a/agent-client-protocol-schema/Cargo.toml +++ b/agent-client-protocol-schema/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "agent-client-protocol-schema" authors = ["Zed "] -version = "1.2.0" +version = "1.3.0" edition = "2024" license = "Apache-2.0" description = "A protocol for standardizing communication between code editors and AI coding agents" diff --git a/schema/v1/CHANGELOG.md b/schema/v1/CHANGELOG.md index 623611f67..f6b311aef 100644 --- a/schema/v1/CHANGELOG.md +++ b/schema/v1/CHANGELOG.md @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.18.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/schema-v1.17.0...schema-v1.18.0) - 2026-07-06 + +### Added + +- *(schema)* Stabilize boolean session config options ([#1604](https://github.com/agentclientprotocol/agent-client-protocol/pull/1604)) +- *(unstable-v2)* Unify the ID naming conventions across the schema ([#1567](https://github.com/agentclientprotocol/agent-client-protocol/pull/1567)) + +### Fixed + +- *(schema)* Reject malformed protocol fields ([#1583](https://github.com/agentclientprotocol/agent-client-protocol/pull/1583)) +- *(unstable)* remove URL elicitation error ([#1574](https://github.com/agentclientprotocol/agent-client-protocol/pull/1574)) +- *(unstable-v2)* Continue to make more enums future compatible ([#1571](https://github.com/agentclientprotocol/agent-client-protocol/pull/1571)) + +### Other + +- *(schema)* Clean up generated documentation and make wording more consistent ([#1568](https://github.com/agentclientprotocol/agent-client-protocol/pull/1568)) + ## [1.17.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/schema-v1.16.0...schema-v1.17.0) - 2026-06-29 ### Added diff --git a/schema/v1/Cargo.toml b/schema/v1/Cargo.toml index 84931e9e1..977785d89 100644 --- a/schema/v1/Cargo.toml +++ b/schema/v1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-client-protocol-json-schema-v1" -version = "1.17.0" +version = "1.18.0" edition = "2024" license = "Apache-2.0" description = "Version marker for ACP v1 JSON Schema GitHub releases"