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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All notable changes to this project will be documented in this file.

## [1.2.0] - 2026-05-18

### Changed

- Emits canonical `@commandlayer/runtime-core` receipts.
- Uses the `metadata.proof` envelope for receipt proofs.
- Delegates signing to `@commandlayer/runtime-core`.
- Verifies SDK-emitted receipts with `@commandlayer/runtime-core` in tests.
- Build fixes: Ajv 2020 compatibility and cross-platform schema copy handling.
- No publishing was performed in this PR.

## [1.1.0] - 2026-05-12

### Breaking Changes
Expand Down
10 changes: 10 additions & 0 deletions RELEASE_CHECKLIST.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Release Checklist

- npm install
- npm run build
- npm test
- npm pack --dry-run
- inspect tarball for dist/src, schemas, README, LICENSE, package.json
- npm publish --access public
- git tag v1.2.0
- git push origin v1.2.0
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
{
"name": "@commandlayer/agent-sdk",
"version": "1.1.0",
"version": "1.2.0",
"description": "TypeScript SDK for signing and verifying CommandLayer agent receipts",
"license": "MIT",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src",
"dist/examples",
"README.md",
"LICENSE"
],
Expand Down Expand Up @@ -39,5 +38,11 @@
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"@commandlayer/runtime-core": "^1.2.0"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
}
}
Loading