Skip to content

Commit 39b604c

Browse files
committed
chore(release): v9.1.0
1 parent 404535d commit 39b604c

20 files changed

Lines changed: 62 additions & 41 deletions

File tree

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6767
- Remove `--port`/`--foreground` from `up` invocations; set `AGENT_RELAY_BROKER_PORT` in place of `AGENT_RELAY_DASHBOARD_PORT` to pin the broker port.
6868
- Dashboard assets are no longer managed by `agent-relay uninstall`; delete any leftover `~/.agentworkforce/relay/dashboard` directory manually.
6969

70+
## [9.1.0] - 2026-06-24
71+
72+
### Added
73+
74+
- Add inbound channel webhook commands (create-inbound/list-inbound/delete-inbound)
75+
76+
### Changed
77+
78+
- Default Agent Relay clients to cast.agentrelay.com
79+
- Decompose the three largest TypeScript god files into single-responsibility modules
80+
- Drop redundant gateway.relaycast.dev default in MCP server
81+
- Clarify positioning
82+
- Remove the web app (moved to AgentWorkforce/agentrelay.com)
83+
84+
### Fixed
85+
86+
- Pin verify-standalone-macos to macos-15 and add smoke wait timeout
87+
- Record workspace_id from agent registration response
88+
- Use @relaycast/sdk instead of dead bespoke RPC API
89+
- Drop redundant @agent-relay/* tsconfig paths so the compiled CLI keeps workspace exports
90+
7091
## [9.0.1] - 2026-06-21
7192

7293
### Changed

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/monorepo",
3-
"version": "9.0.1",
3+
"version": "9.1.0",
44
"private": true,
55
"description": "Agent Relay monorepo",
66
"type": "module",

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": "9.0.1",
3+
"version": "9.1.0",
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": "9.0.1",
3+
"version": "9.1.0",
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": "9.0.1",
3+
"version": "9.1.0",
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": "9.0.1",
3+
"version": "9.1.0",
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": "9.0.1",
3+
"version": "9.1.0",
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": "9.0.1",
3+
"version": "9.1.0",
44
"description": "agent-relay-broker binary for win32 x64. Installed automatically as an optional dependency of @agent-relay/sdk.",
55
"files": [
66
"bin"

packages/cli/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agent-relay",
3-
"version": "9.0.1",
3+
"version": "9.1.0",
44
"description": "Real-time agent-to-agent communication system",
55
"type": "module",
66
"main": "dist/index.cjs",
@@ -43,12 +43,12 @@
4343
"pack:validate": "npm pack --dry-run"
4444
},
4545
"dependencies": {
46-
"@agent-relay/cloud": "9.0.1",
47-
"@agent-relay/config": "9.0.1",
48-
"@agent-relay/fleet": "9.0.1",
49-
"@agent-relay/harness-driver": "9.0.1",
50-
"@agent-relay/sdk": "9.0.1",
51-
"@agent-relay/utils": "9.0.1",
46+
"@agent-relay/cloud": "9.1.0",
47+
"@agent-relay/config": "9.1.0",
48+
"@agent-relay/fleet": "9.1.0",
49+
"@agent-relay/harness-driver": "9.1.0",
50+
"@agent-relay/sdk": "9.1.0",
51+
"@agent-relay/utils": "9.1.0",
5252
"@modelcontextprotocol/sdk": "^1.0.0",
5353
"@relaycast/sdk": "^4.1.6",
5454
"@relayflows/cli": "^1.0.1",

packages/cloud/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/cloud",
3-
"version": "9.0.1",
3+
"version": "9.1.0",
44
"description": "Cloud SDK for Agent Relay — auth, workflow execution, and provider connections",
55
"type": "module",
66
"main": "dist/index.js",
@@ -43,7 +43,7 @@
4343
"test:watch": "vitest"
4444
},
4545
"dependencies": {
46-
"@agent-relay/config": "9.0.1",
46+
"@agent-relay/config": "9.1.0",
4747
"@aws-sdk/client-s3": "3.1020.0",
4848
"ignore": "^7.0.5",
4949
"tar": "^7.5.10"

0 commit comments

Comments
 (0)