From f75b7fb9188a9b8476636d7bc1dc5072e1c02ec9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 10 Jul 2026 19:51:11 +0000 Subject: [PATCH] chore: bump main to 0.24.0, preview to 1.0.0-preview.21 --- CHANGELOG.md | 34 ++++++++++++++++++++++++++++++++ package.json | 2 +- preview-version.json | 2 +- schemas/agentcore.schema.v1.json | 26 ++++++++++++++++++++++-- 4 files changed, 60 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebb37999e..d981e427b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,40 @@ All notable changes to this project will be documented in this file. +## [0.24.0] - 2026-07-10 + +### Added +- feat(issue-1236): enhance docker build with additional build configuration (#1284) (f8ab1ca9) +- feat(region): add ap-southeast-5/7, eu-south-1/2 to AgentCore regions (#1722) (85427ef3) +- feat: add description field to connector configuration entries (#1721) (dcfc6de4) +- feat(run): add --kms-key flag to run insights for KMS parity (#1688) (e61338c3) + +### Fixed +- fix: auto-trigger ingestion on connector config file content changes (#1732) (a93302b7) +- fix(exec): support harness deployments (#1724) (#1728) (9bd83275) +- fix(dev): apply model config for all providers in dev, not just Bedrock (#1729) (d429f024) +- fix: pass through max tokens for non-mantle Bedrock models (#1719) (b6fc3386) +- fix(tool): resolve HTTP gateways in `add tool --gateway` (#1658 follow-up) (#1693) (bb9cf2b5) +- fix: reap orphaned dev-server child on process exit (#1695) (0f115e7e) +- fix(add): print confirmation after non-interactive add agent (#671) (#1689) (fce4d160) +- fix: keep AGUI browser thread IDs stable (#1686) (3cee6f14) +- fix(deploy): scope TUI deploy to the picker-selected targets (#1267) (#1659) (fb778fde) + +### Other Changes +- ci: pin browser-tests to ubuntu-latest (fix Playwright deps on CodeBuild) (#1736) (5f7958d5) +- chore: ungate 'run ingest' command (#1731) (70c77fc0) +- ci: run all workflows on CodeBuild-hosted runners (#1715) (6c5e43ef) +- Revert "feat(run): add --kms-key flag to run insights for KMS parity (#1688)" (#1723) (1fefd37e) +- chore: add e2e and integ tests for web-search connector (#1711) (7f46367e) +- ci: gate fork-PR E2E/tarball on PR author (fix pwn-request + checkout@v7 fork block) (#1716) (60e68b4d) +- ci(e2e): run E2E job on CodeBuild-hosted runner (POC) (#1713) (192ff38e) +- ci: bump the github-actions group across 1 directory with 8 updates (#1710) (31ae0823) +- ci(e2e): skip E2E tests on docs-only PRs (#1705) (32536fa3) +- ci(e2e): emit JUnit reports and upload as CI artifact (#1706) (6d226625) +- ci: add API reference docs generation workflow (#1694) (c1bc3e4f) +- ci(canary): run canary every 15 minutes instead of hourly (#1707) (65afd9f6) +- ci(e2e): cancel superseded in-progress E2E runs (#1704) (4786786f) + ## [0.23.0] - 2026-07-08 ### Fixed diff --git a/package.json b/package.json index dd310da8d..377e90ff9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aws/agentcore", - "version": "0.23.0", + "version": "0.24.0", "description": "CLI for Amazon Bedrock AgentCore", "license": "Apache-2.0", "repository": { diff --git a/preview-version.json b/preview-version.json index ecd13a989..99e631e6c 100644 --- a/preview-version.json +++ b/preview-version.json @@ -1,3 +1,3 @@ { - "version": "1.0.0-preview.20" + "version": "1.0.0-preview.21" } diff --git a/schemas/agentcore.schema.v1.json b/schemas/agentcore.schema.v1.json index fdad415d3..689343cf2 100644 --- a/schemas/agentcore.schema.v1.json +++ b/schemas/agentcore.schema.v1.json @@ -67,8 +67,24 @@ "dockerfile": { "type": "string", "minLength": 1, - "maxLength": 255, - "pattern": "^[a-zA-Z0-9][a-zA-Z0-9._-]*$" + "maxLength": 255 + }, + "buildContextPath": { + "type": "string", + "minLength": 1 + }, + "customDockerBuildArgs": { + "type": "object", + "propertyNames": { + "type": "string", + "minLength": 1, + "maxLength": 255, + "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" + }, + "additionalProperties": { + "type": "string", + "maxLength": 4096 + } }, "runtimeVersion": { "anyOf": [ @@ -1723,6 +1739,9 @@ "name": { "type": "string" }, + "description": { + "type": "string" + }, "parameterValues": { "type": "object", "propertyNames": { @@ -2649,6 +2668,9 @@ "name": { "type": "string" }, + "description": { + "type": "string" + }, "parameterValues": { "type": "object", "propertyNames": {