From 7d58afd301eb96091ad1772b7475cb164861b7eb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 22 May 2026 20:12:53 +0000 Subject: [PATCH] chore: bump version to 0.15.0 Co-authored-by: github-actions[bot] --- CHANGELOG.md | 2 + package.json | 2 +- schemas/agentcore.schema.v1.json | 67 ++++++++++++++++++++++++++++++++ 3 files changed, 70 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1743de58a..a372b3f81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. +## [0.15.0] - 2026-05-22 + ## [0.14.2] - 2026-05-21 ### Added diff --git a/package.json b/package.json index 6c20b0883..98a834a6e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aws/agentcore", - "version": "0.14.2", + "version": "0.15.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 f40695419..1a888205b 100644 --- a/schemas/agentcore.schema.v1.json +++ b/schemas/agentcore.schema.v1.json @@ -397,6 +397,27 @@ "additionalProperties": false } }, + "indexedKeys": { + "maxItems": 10, + "type": "array", + "items": { + "type": "object", + "properties": { + "key": { + "type": "string", + "minLength": 1, + "maxLength": 128, + "pattern": "^[a-zA-Z0-9\\s._:/=+@-]+$" + }, + "type": { + "type": "string", + "enum": ["STRING", "STRINGLIST", "NUMBER"] + } + }, + "required": ["key", "type"], + "additionalProperties": false + } + }, "tags": { "type": "object", "propertyNames": { @@ -2162,6 +2183,52 @@ "required": ["name", "runtimeRef"], "additionalProperties": false } + }, + "datasets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string", + "minLength": 1, + "maxLength": 48, + "pattern": "^[a-zA-Z][a-zA-Z0-9_]{0,47}$" + }, + "schemaType": { + "type": "string", + "enum": ["AGENTCORE_EVALUATION_PREDEFINED_V1", "AGENTCORE_EVALUATION_SIMULATED_V1"] + }, + "description": { + "type": "string", + "maxLength": 200 + }, + "config": { + "type": "object", + "properties": { + "managed": { + "type": "object", + "properties": { + "location": { + "type": "string", + "minLength": 1 + } + }, + "required": ["location"], + "additionalProperties": false + } + }, + "required": ["managed"], + "additionalProperties": false + }, + "kmsKeyArn": { + "type": "string", + "pattern": "^arn:aws(-[a-z]+)*:kms:[a-zA-Z0-9-]*:[0-9]{12}:key\\/[a-zA-Z0-9-]{36}$" + } + }, + "required": ["name", "schemaType", "config"], + "additionalProperties": false + } } }, "required": ["name", "version"],