Skip to content

Commit f2e3deb

Browse files
chore: bump version to 0.6.0 (#771)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 8119910 commit f2e3deb

File tree

4 files changed

+72
-5
lines changed

4 files changed

+72
-5
lines changed

CHANGELOG.md

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

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

5+
## [0.6.0] - 2026-04-02
6+
7+
### Added
8+
- feat: add code-based evaluator support (#739) (11ca658)
9+
10+
### Other Changes
11+
- ci: block schema changes in PRs (#712) (8119910)
12+
- fix(ci): regenerate lockfile for npm 11 compatibility (#770) (ee7aea2)
13+
- feat(import): add runtime and memory import subcommands with TUI wizard (#763) (cb79649)
14+
- ci: use draft releases for PR tarballs to avoid notifying watchers (#745) (1a45c28)
15+
516
## [0.5.1] - 2026-03-31
617

718
### Added

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.5.1",
3+
"version": "0.6.0",
44
"description": "CLI for Amazon Bedrock AgentCore",
55
"license": "Apache-2.0",
66
"repository": {

schemas/agentcore.schema.v1.json

Lines changed: 58 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@
4747
"maxLength": 48,
4848
"pattern": "^[a-zA-Z][a-zA-Z0-9_]{0,47}$"
4949
},
50+
"description": {
51+
"type": "string",
52+
"maxLength": 200
53+
},
5054
"build": {
5155
"type": "string",
5256
"enum": ["CodeZip", "Container"]
@@ -272,7 +276,7 @@
272276
"additionalProperties": false
273277
}
274278
},
275-
"required": ["name", "build", "entrypoint", "codeLocation", "runtimeVersion"],
279+
"required": ["name", "build", "entrypoint", "codeLocation"],
276280
"additionalProperties": false
277281
}
278282
},
@@ -342,6 +346,12 @@
342346
"maxLength": 256,
343347
"pattern": "^[\\p{L}\\p{N}\\s_.:/=+\\-@]*$"
344348
}
349+
},
350+
"encryptionKeyArn": {
351+
"type": "string"
352+
},
353+
"executionRoleArn": {
354+
"type": "string"
345355
}
346356
},
347357
"required": ["name", "eventExpiryDuration"],
@@ -494,9 +504,55 @@
494504
},
495505
"required": ["model", "instructions", "ratingScale"],
496506
"additionalProperties": false
507+
},
508+
"codeBased": {
509+
"type": "object",
510+
"properties": {
511+
"managed": {
512+
"type": "object",
513+
"properties": {
514+
"codeLocation": {
515+
"type": "string",
516+
"minLength": 1
517+
},
518+
"entrypoint": {
519+
"default": "lambda_function.handler",
520+
"type": "string",
521+
"minLength": 1
522+
},
523+
"timeoutSeconds": {
524+
"default": 60,
525+
"type": "integer",
526+
"minimum": 1,
527+
"maximum": 300
528+
},
529+
"additionalPolicies": {
530+
"type": "array",
531+
"items": {
532+
"type": "string",
533+
"minLength": 1
534+
}
535+
}
536+
},
537+
"required": ["codeLocation"],
538+
"additionalProperties": false
539+
},
540+
"external": {
541+
"type": "object",
542+
"properties": {
543+
"lambdaArn": {
544+
"type": "string",
545+
"minLength": 1,
546+
"pattern": "^arn:aws[a-z-]*:lambda:[a-z0-9-]+:\\d{12}:function:.+$"
547+
}
548+
},
549+
"required": ["lambdaArn"],
550+
"additionalProperties": false
551+
}
552+
},
553+
"additionalProperties": false
497554
}
498555
},
499-
"required": ["llmAsAJudge"],
500556
"additionalProperties": false
501557
},
502558
"tags": {

0 commit comments

Comments
 (0)