From c0f5aafc103590f6e8b197f4a5d54bf4849f0e68 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 24 Apr 2026 21:38:56 +0000 Subject: [PATCH] chore: bump version to 0.11.0 Co-authored-by: github-actions[bot] --- CHANGELOG.md | 18 ++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- schemas/agentcore.schema.v1.json | 2 +- 4 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c13e9041..ec13d3ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ All notable changes to this project will be documented in this file. +## [0.11.0] - 2026-04-24 + +### Added +- feat: add telemetry schemas and client (#941) (7c37fa6) +- feat: add GitHub Action for automated PR review via AgentCore Harness (#934) (a365bf5) + +### Fixed +- fix: display session ID after CLI invoke completes (#957) (51e4a8e) +- fix: lower eventExpiryDuration minimum from 7 to 3 days (closes #744) (#956) (8613657) +- fix: use pull_request_target for fork PR support (#958) (933bac8) +- fix: agentcore dev not working in windows (#951) (5271f55) +- fix: add TTY detection before TUI fallbacks to prevent agent/CI hangs (#949) (c30ed54) +- fix: allow code-based evaluators in online eval configs (#947) (3d2d671) +- fix: buffer streaming text to avoid per-token log lines in GitHub Actions (#946) (cb1e81a) + +### Other Changes +- test: add browser tests for agent inspector (#938) (7a4104d) + ## [0.10.0] - 2026-04-23 ### Added diff --git a/package-lock.json b/package-lock.json index d1b1e85b..4df323d1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@aws/agentcore", - "version": "0.10.0", + "version": "0.11.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@aws/agentcore", - "version": "0.10.0", + "version": "0.11.0", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index b0446fb4..36ef0468 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aws/agentcore", - "version": "0.10.0", + "version": "0.11.0", "description": "CLI for Amazon Bedrock AgentCore", "license": "Apache-2.0", "repository": { diff --git a/schemas/agentcore.schema.v1.json b/schemas/agentcore.schema.v1.json index a81371d4..15877fa4 100644 --- a/schemas/agentcore.schema.v1.json +++ b/schemas/agentcore.schema.v1.json @@ -321,7 +321,7 @@ }, "eventExpiryDuration": { "type": "integer", - "minimum": 7, + "minimum": 3, "maximum": 365 }, "strategies": {