Skip to content

Commit 1afe035

Browse files
chore: bump version to 0.15.0 (#1373)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 5939a7e commit 1afe035

3 files changed

Lines changed: 70 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

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

5+
## [0.15.0] - 2026-05-22
6+
57
## [0.14.2] - 2026-05-21
68

79
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws/agentcore",
3-
"version": "0.14.2",
3+
"version": "0.15.0",
44
"description": "CLI for Amazon Bedrock AgentCore",
55
"license": "Apache-2.0",
66
"repository": {

schemas/agentcore.schema.v1.json

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,27 @@
397397
"additionalProperties": false
398398
}
399399
},
400+
"indexedKeys": {
401+
"maxItems": 10,
402+
"type": "array",
403+
"items": {
404+
"type": "object",
405+
"properties": {
406+
"key": {
407+
"type": "string",
408+
"minLength": 1,
409+
"maxLength": 128,
410+
"pattern": "^[a-zA-Z0-9\\s._:/=+@-]+$"
411+
},
412+
"type": {
413+
"type": "string",
414+
"enum": ["STRING", "STRINGLIST", "NUMBER"]
415+
}
416+
},
417+
"required": ["key", "type"],
418+
"additionalProperties": false
419+
}
420+
},
400421
"tags": {
401422
"type": "object",
402423
"propertyNames": {
@@ -2162,6 +2183,52 @@
21622183
"required": ["name", "runtimeRef"],
21632184
"additionalProperties": false
21642185
}
2186+
},
2187+
"datasets": {
2188+
"type": "array",
2189+
"items": {
2190+
"type": "object",
2191+
"properties": {
2192+
"name": {
2193+
"type": "string",
2194+
"minLength": 1,
2195+
"maxLength": 48,
2196+
"pattern": "^[a-zA-Z][a-zA-Z0-9_]{0,47}$"
2197+
},
2198+
"schemaType": {
2199+
"type": "string",
2200+
"enum": ["AGENTCORE_EVALUATION_PREDEFINED_V1", "AGENTCORE_EVALUATION_SIMULATED_V1"]
2201+
},
2202+
"description": {
2203+
"type": "string",
2204+
"maxLength": 200
2205+
},
2206+
"config": {
2207+
"type": "object",
2208+
"properties": {
2209+
"managed": {
2210+
"type": "object",
2211+
"properties": {
2212+
"location": {
2213+
"type": "string",
2214+
"minLength": 1
2215+
}
2216+
},
2217+
"required": ["location"],
2218+
"additionalProperties": false
2219+
}
2220+
},
2221+
"required": ["managed"],
2222+
"additionalProperties": false
2223+
},
2224+
"kmsKeyArn": {
2225+
"type": "string",
2226+
"pattern": "^arn:aws(-[a-z]+)*:kms:[a-zA-Z0-9-]*:[0-9]{12}:key\\/[a-zA-Z0-9-]{36}$"
2227+
}
2228+
},
2229+
"required": ["name", "schemaType", "config"],
2230+
"additionalProperties": false
2231+
}
21652232
}
21662233
},
21672234
"required": ["name", "version"],

0 commit comments

Comments
 (0)