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

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

## [0.10.0] - 2026-04-23

### Added
- feat: upgrade agent inspector to 0.2.1 (#937) (b49a06f)
- feat: remove deployed/local from status legend (#936) (c0d5b7b)
- feat: add GovCloud multi-partition support (#908) (098b104)
- feat: support preview releases from feature branches (#905) (1a93f92)
- feat: add AG-UI (AGUI) as fourth first-class protocol mode (#858) (52144dc)
- feat: add session filesystem storage support (#893) (b97e337)

### Fixed
- fix: agentcore add component opens component wizard directly (#896) (74a35cb)
- fix: propagate sessionId as A2A contextId in Inspector proxy (#892) (08d452e)

### Documentation
- docs: update vended AGENTS.md, README.md, and llm-context references (#898) (84a6dde)

### Other Changes
- fix(deploy): honor aws-targets.json region for all SDK and CDK calls (#925) (1903f7d)
- fix(invoke): show full session ID and print resume command on exit (#904) (ce683c0)
- chore: remove preview bump type from release workflow (#847) (13f16d3)
- chore: remove single-commit-must-match-PR-title validation (#897) (4d7da2f)
- fix(invoke): pass session ID to local invoke log files (#894) (e966cb6)

## [0.9.1] - 2026-04-17

## [0.9.0] - 2026-04-17
Expand Down
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws/agentcore",
"version": "0.9.1",
"version": "0.10.0",
"description": "CLI for Amazon Bedrock AgentCore",
"license": "Apache-2.0",
"repository": {
Expand Down
23 changes: 22 additions & 1 deletion schemas/agentcore.schema.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
},
"protocol": {
"type": "string",
"enum": ["HTTP", "MCP", "A2A"]
"enum": ["HTTP", "MCP", "A2A", "AGUI"]
},
"requestHeaderAllowlist": {
"maxItems": 20,
Expand Down Expand Up @@ -280,6 +280,27 @@
}
},
"additionalProperties": false
},
"filesystemConfigurations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"sessionStorage": {
"type": "object",
"properties": {
"mountPath": {
"type": "string",
"pattern": "^\\/mnt\\/[^/]+$"
}
},
"required": ["mountPath"],
"additionalProperties": false
}
},
"required": ["sessionStorage"],
"additionalProperties": false
}
}
},
"required": ["name", "build", "entrypoint", "codeLocation"],
Expand Down
Loading