Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- `agent-relay cloud whoami` prints the organization and workspace IDs alongside their names.
- `agent-relay` pins `@relayflows/cli` exactly, so each Relay release resolves one reviewed workflow dependency tree instead of changing with later compatible Relayflows publishes.

## [11.3.1] - 2026-07-31

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"@agent-relay/utils": "11.3.1",
"@modelcontextprotocol/sdk": "^1.23.0",
"@relayfile/client": "^0.10.27",
"@relayflows/cli": "^1.0.1",
"@relayflows/cli": "1.0.1",
"@xterm/headless": "^6.0.0",
"commander": "^12.1.0",
"dotenv": "^17.2.3",
Expand Down
8 changes: 8 additions & 0 deletions packages/cli/src/cli/entrypoint.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,12 @@ describe('CLI entrypoints', () => {

expect(packageJson.bin?.['agent-relay']).toBe('dist/cli/index.js');
});

it('pins relayflows so an Agent Relay release has a reproducible workflow dependency tree', () => {
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf-8')) as {
dependencies?: Record<string, string>;
};

expect(packageJson.dependencies?.['@relayflows/cli']).toMatch(/^\d+\.\d+\.\d+$/);
});
});
Loading