Skip to content

Commit 48b2abf

Browse files
chore: release (#1556)
Co-authored-by: acp-release-bot[bot] <246668977+acp-release-bot[bot]@users.noreply.github.com>
1 parent eb88e99 commit 48b2abf

6 files changed

Lines changed: 50 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# Changelog
22

3+
## [1.3.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/v1.2.0...v1.3.0) - 2026-07-06
4+
5+
### Added
6+
7+
- *(schema)* Stabilize boolean session config options ([#1604](https://github.com/agentclientprotocol/agent-client-protocol/pull/1604))
8+
- *(unstable-v2)* tighten v2 field validation ([#1587](https://github.com/agentclientprotocol/agent-client-protocol/pull/1587))
9+
- *(unstable-v2)* New diff format ([#1586](https://github.com/agentclientprotocol/agent-client-protocol/pull/1586))
10+
- *(unstable-v2)* Unify session/load and session/resume ([#1584](https://github.com/agentclientprotocol/agent-client-protocol/pull/1584))
11+
- *(unstable-v2)* require more session methods by default ([#1578](https://github.com/agentclientprotocol/agent-client-protocol/pull/1578))
12+
- *(unstable-v2)* More flexible permission requests ([#1577](https://github.com/agentclientprotocol/agent-client-protocol/pull/1577))
13+
- *(unstable-v2)* Align v2 Content types with the latest MCP spec ([#1576](https://github.com/agentclientprotocol/agent-client-protocol/pull/1576))
14+
- *(unstable-v2)* Unify the ID naming conventions across the schema ([#1567](https://github.com/agentclientprotocol/agent-client-protocol/pull/1567))
15+
- *(unstable-v2)* require typed config values ([#1561](https://github.com/agentclientprotocol/agent-client-protocol/pull/1561))
16+
17+
### Fixed
18+
19+
- *(schema)* Reject malformed protocol fields ([#1583](https://github.com/agentclientprotocol/agent-client-protocol/pull/1583))
20+
- *(unstable)* remove URL elicitation error ([#1574](https://github.com/agentclientprotocol/agent-client-protocol/pull/1574))
21+
- *(unstable-v2)* Preserve meta update signals in v2 ([#1573](https://github.com/agentclientprotocol/agent-client-protocol/pull/1573))
22+
- *(unstable-v2)* Continue to make more enums future compatible ([#1571](https://github.com/agentclientprotocol/agent-client-protocol/pull/1571))
23+
- *(unstable-v2)* Make empty MCP arrays optional ([#1570](https://github.com/agentclientprotocol/agent-client-protocol/pull/1570))
24+
- *(unstable-v2)* Make all session lifecycle requests consistent ([#1555](https://github.com/agentclientprotocol/agent-client-protocol/pull/1555))
25+
26+
### Other
27+
28+
- *(schema)* Clean up generated documentation and make wording more consistent ([#1568](https://github.com/agentclientprotocol/agent-client-protocol/pull/1568))
29+
- *(rust)* Box v2 protocol enum variants ([#1562](https://github.com/agentclientprotocol/agent-client-protocol/pull/1562))
30+
331
## [1.2.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/v1.1.0...v1.2.0) - 2026-06-29
432

533
### Added

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ members = [
1414
resolver = "3"
1515

1616
[workspace.dependencies]
17-
agent-client-protocol-schema = { path = "agent-client-protocol-schema", version = "1.2.0" }
17+
agent-client-protocol-schema = { path = "agent-client-protocol-schema", version = "1.3.0" }
1818

1919
[workspace.lints.rust]
2020
future_incompatible = { level = "warn", priority = -1 }

agent-client-protocol-schema/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "agent-client-protocol-schema"
33
authors = ["Zed <hi@zed.dev>"]
4-
version = "1.2.0"
4+
version = "1.3.0"
55
edition = "2024"
66
license = "Apache-2.0"
77
description = "A protocol for standardizing communication between code editors and AI coding agents"

schema/v1/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.18.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/schema-v1.17.0...schema-v1.18.0) - 2026-07-06
11+
12+
### Added
13+
14+
- *(schema)* Stabilize boolean session config options ([#1604](https://github.com/agentclientprotocol/agent-client-protocol/pull/1604))
15+
- *(unstable-v2)* Unify the ID naming conventions across the schema ([#1567](https://github.com/agentclientprotocol/agent-client-protocol/pull/1567))
16+
17+
### Fixed
18+
19+
- *(schema)* Reject malformed protocol fields ([#1583](https://github.com/agentclientprotocol/agent-client-protocol/pull/1583))
20+
- *(unstable)* remove URL elicitation error ([#1574](https://github.com/agentclientprotocol/agent-client-protocol/pull/1574))
21+
- *(unstable-v2)* Continue to make more enums future compatible ([#1571](https://github.com/agentclientprotocol/agent-client-protocol/pull/1571))
22+
23+
### Other
24+
25+
- *(schema)* Clean up generated documentation and make wording more consistent ([#1568](https://github.com/agentclientprotocol/agent-client-protocol/pull/1568))
26+
1027
## [1.17.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/schema-v1.16.0...schema-v1.17.0) - 2026-06-29
1128

1229
### Added

schema/v1/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agent-client-protocol-json-schema-v1"
3-
version = "1.17.0"
3+
version = "1.18.0"
44
edition = "2024"
55
license = "Apache-2.0"
66
description = "Version marker for ACP v1 JSON Schema GitHub releases"

0 commit comments

Comments
 (0)