diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b5879f1..032e4d2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,47 @@ # Changelog +## [0.13.7](https://github.com/agentclientprotocol/agent-client-protocol/compare/v0.13.6...v0.13.7) - 2026-06-11 + +### Added + +- *(unstable-v2)* Add streaming tool-call content in v2 ([#1407](https://github.com/agentclientprotocol/agent-client-protocol/pull/1407)) +- *(unstable-v2)* Add v2 whole-message session updates ([#1396](https://github.com/agentclientprotocol/agent-client-protocol/pull/1396)) +- *(unstable-v2)* Unify v2 tool call updates ([#1390](https://github.com/agentclientprotocol/agent-client-protocol/pull/1390)) +- *(unstable-v2)* Require auth method type discriminator in v2 ([#1387](https://github.com/agentclientprotocol/agent-client-protocol/pull/1387)) +- *(unstable-v2)* Nest session-scoped capabilities under session ([#1373](https://github.com/agentclientprotocol/agent-client-protocol/pull/1373)) + +### Fixed + +- *(rust)* Preserve JSON object key order ([#1393](https://github.com/agentclientprotocol/agent-client-protocol/pull/1393)) +- *(unstable-v2)* Clean up old agent auth deserialization ([#1388](https://github.com/agentclientprotocol/agent-client-protocol/pull/1388)) + +### Other + +- update registry agents ([#1410](https://github.com/agentclientprotocol/agent-client-protocol/pull/1410)) +- update registry agents ([#1409](https://github.com/agentclientprotocol/agent-client-protocol/pull/1409)) +- update registry agents ([#1408](https://github.com/agentclientprotocol/agent-client-protocol/pull/1408)) +- update registry agents ([#1406](https://github.com/agentclientprotocol/agent-client-protocol/pull/1406)) +- update registry agents ([#1405](https://github.com/agentclientprotocol/agent-client-protocol/pull/1405)) +- update registry agents ([#1404](https://github.com/agentclientprotocol/agent-client-protocol/pull/1404)) +- update registry agents ([#1403](https://github.com/agentclientprotocol/agent-client-protocol/pull/1403)) +- update registry agents ([#1402](https://github.com/agentclientprotocol/agent-client-protocol/pull/1402)) +- update registry agents ([#1401](https://github.com/agentclientprotocol/agent-client-protocol/pull/1401)) +- update registry agents ([#1400](https://github.com/agentclientprotocol/agent-client-protocol/pull/1400)) +- update registry agents ([#1399](https://github.com/agentclientprotocol/agent-client-protocol/pull/1399)) +- update registry agents ([#1398](https://github.com/agentclientprotocol/agent-client-protocol/pull/1398)) +- update registry agents ([#1395](https://github.com/agentclientprotocol/agent-client-protocol/pull/1395)) +- update registry agents ([#1394](https://github.com/agentclientprotocol/agent-client-protocol/pull/1394)) +- update registry agents ([#1392](https://github.com/agentclientprotocol/agent-client-protocol/pull/1392)) +- update registry agents ([#1391](https://github.com/agentclientprotocol/agent-client-protocol/pull/1391)) +- update registry agents ([#1389](https://github.com/agentclientprotocol/agent-client-protocol/pull/1389)) +- *(deps)* bump the minor group with 41 updates ([#1386](https://github.com/agentclientprotocol/agent-client-protocol/pull/1386)) +- *(deps)* bump crate-ci/typos from 1.47.0 to 1.47.2 ([#1383](https://github.com/agentclientprotocol/agent-client-protocol/pull/1383)) +- *(deps)* bump taiki-e/install-action from 2.81.2 to 2.81.8 ([#1384](https://github.com/agentclientprotocol/agent-client-protocol/pull/1384)) +- Fix versioning for new schema git releases ([#1382](https://github.com/agentclientprotocol/agent-client-protocol/pull/1382)) +- add acp.cr Crystal community library ([#1381](https://github.com/agentclientprotocol/agent-client-protocol/pull/1381)) +- *(rfd)* add v1/v2 durability and reliability expectations to remote transport RFD ([#1376](https://github.com/agentclientprotocol/agent-client-protocol/pull/1376)) +- Setup separate publishes for JSON Schemas ([#1377](https://github.com/agentclientprotocol/agent-client-protocol/pull/1377)) + ## [0.13.6](https://github.com/agentclientprotocol/agent-client-protocol/compare/v0.13.5...v0.13.6) - 2026-06-05 ### Added diff --git a/Cargo.lock b/Cargo.lock index acfb177e..f8640596 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12,7 +12,7 @@ version = "2.0.0-alpha.0" [[package]] name = "agent-client-protocol-schema" -version = "0.13.6" +version = "0.13.7" dependencies = [ "anyhow", "derive_more", diff --git a/Cargo.toml b/Cargo.toml index 48bbd366..67f95852 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "agent-client-protocol-schema" authors = ["Zed "] -version = "0.13.6" +version = "0.13.7" 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 825c32f0..3b8783f2 100644 --- a/schema/v1/CHANGELOG.md +++ b/schema/v1/CHANGELOG.md @@ -1 +1,20 @@ # Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [1.13.7](https://github.com/agentclientprotocol/agent-client-protocol/releases/tag/schema-v1.13.7) - 2026-06-11 + +### Fixed + +- *(rust)* Preserve JSON object key order ([#1393](https://github.com/agentclientprotocol/agent-client-protocol/pull/1393)) + +### Other + +- Fix versioning for new schema git releases ([#1382](https://github.com/agentclientprotocol/agent-client-protocol/pull/1382)) +- Setup separate publishes for JSON Schemas ([#1377](https://github.com/agentclientprotocol/agent-client-protocol/pull/1377)) +# Changelog