Skip to content

Commit f953d0f

Browse files
committed
chore(release): v7.0.1
1 parent bbe4f00 commit f953d0f

30 files changed

Lines changed: 85 additions & 65 deletions

File tree

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
106106
- The PTY watchdog marks agents with pending delivery work as blocked-on-send instead of idle.
107107
- PTY `worker_stream` events preserve multi-byte UTF-8 characters split across read chunks instead of emitting `U+FFFD` replacement glyphs.
108108

109+
## [7.0.1] - 2026-05-22
110+
111+
### Product Perspective
112+
#### User-Facing Features & Improvements
113+
- **AddListener overload accepts BeforeAgentSpawnHandler**
114+
115+
#### User-Impacting Fixes
116+
- Find stale SST ACM validation state
117+
- Repair timed-out SST ACM certificate state
118+
- Pin next via overrides to dedupe duplicate install
119+
120+
### Technical Perspective
121+
#### Dependencies & Tooling
122+
- Upgrade @posthog/next 0.1.0 → 0.4.61 (#937)
123+
124+
#### Releases
125+
- v7.0.1
126+
127+
---
128+
109129
## [6.3.6] - 2026-05-21
110130

111131
### Product Perspective

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agent-relay",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "Real-time agent-to-agent communication system",
55
"type": "module",
66
"main": "dist/index.cjs",
@@ -132,14 +132,14 @@
132132
},
133133
"homepage": "https://github.com/AgentWorkforce/relay#readme",
134134
"dependencies": {
135-
"@agent-relay/cloud": "7.0.0",
136-
"@agent-relay/config": "7.0.0",
137-
"@agent-relay/hooks": "7.0.0",
138-
"@agent-relay/sdk": "7.0.0",
139-
"@agent-relay/telemetry": "7.0.0",
140-
"@agent-relay/trajectory": "7.0.0",
141-
"@agent-relay/user-directory": "7.0.0",
142-
"@agent-relay/utils": "7.0.0",
135+
"@agent-relay/cloud": "7.0.1",
136+
"@agent-relay/config": "7.0.1",
137+
"@agent-relay/hooks": "7.0.1",
138+
"@agent-relay/sdk": "7.0.1",
139+
"@agent-relay/telemetry": "7.0.1",
140+
"@agent-relay/trajectory": "7.0.1",
141+
"@agent-relay/user-directory": "7.0.1",
142+
"@agent-relay/utils": "7.0.1",
143143
"@aws-sdk/client-s3": "3.1020.0",
144144
"@modelcontextprotocol/sdk": "^1.0.0",
145145
"@relayauth/core": "^0.1.2",

packages/acp-bridge/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agent-relay/acp-bridge",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "ACP (Agent Client Protocol) bridge for Agent Relay - expose relay agents to ACP-compatible editors like Zed",
55
"type": "module",
66
"main": "dist/index.js",
@@ -46,7 +46,7 @@
4646
"access": "public"
4747
},
4848
"dependencies": {
49-
"@agent-relay/sdk": "7.0.0",
49+
"@agent-relay/sdk": "7.0.1",
5050
"@agentclientprotocol/sdk": "^0.12.0"
5151
},
5252
"devDependencies": {

packages/agent/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agent-relay/agent",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"type": "module",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -19,7 +19,7 @@
1919
"typecheck": "tsc -p tsconfig.json --noEmit"
2020
},
2121
"dependencies": {
22-
"@agent-relay/events": "7.0.0",
22+
"@agent-relay/events": "7.0.1",
2323
"@relaycast/sdk": "1.1.2",
2424
"@relayfile/sdk": "^0.7.2"
2525
},

packages/brand/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agent-relay/brand",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "Shared brand tokens, CSS variables, and color system for Agent Relay and associated properties",
55
"main": "brand.css",
66
"style": "brand.css",

packages/broker-darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agent-relay/broker-darwin-arm64",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "agent-relay-broker binary for darwin arm64. Installed automatically as an optional dependency of @agent-relay/sdk.",
55
"files": [
66
"bin"

packages/broker-darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agent-relay/broker-darwin-x64",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "agent-relay-broker binary for darwin x64. Installed automatically as an optional dependency of @agent-relay/sdk.",
55
"files": [
66
"bin"

packages/broker-linux-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agent-relay/broker-linux-arm64",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "agent-relay-broker binary for linux arm64. Installed automatically as an optional dependency of @agent-relay/sdk.",
55
"files": [
66
"bin"

packages/broker-linux-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agent-relay/broker-linux-x64",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "agent-relay-broker binary for linux x64. Installed automatically as an optional dependency of @agent-relay/sdk.",
55
"files": [
66
"bin"

packages/broker-win32-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agent-relay/broker-win32-x64",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "agent-relay-broker binary for win32 x64. Installed automatically as an optional dependency of @agent-relay/sdk.",
55
"files": [
66
"bin"

0 commit comments

Comments
 (0)