Skip to content

Commit 90924d6

Browse files
chore: bump version to 0.13.0 (#1076)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent eab8c87 commit 90924d6

4 files changed

Lines changed: 331 additions & 3 deletions

File tree

CHANGELOG.md

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

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

5+
## [0.13.0] - 2026-05-01
6+
7+
### Added
8+
- feat: evo preview features — config bundles, batch evaluation, recommendations, AB testing (#1068) (9ccf802)
9+
- feat: wire telemetry into all add.* commands (#1050) (e9dfc16)
10+
- feat: make parsing resilient to individual failures (#1062) (a4c37a2)
11+
- feat: update @aws/agent-inspector to 0.3.0 (90f17b4)
12+
- feat: update @aws/agent-inspector to 0.3.0 (278783a)
13+
14+
### Fixed
15+
- fix: remove unnecessary non-null assertions after .default([]) revert (#1075) (eab8c87)
16+
- fix: revert .optional() to .default([]) and strip empty evo arrays on write (#1074) (8c5cdfe)
17+
- fix: remove dead preflight patch, proper teardown, optional evo schema fields (#1073) (839b32b)
18+
- fix: remove dead preflight patch and use proper teardown for evo resources (#1072) (0e38e9e)
19+
- fix: resolve e2e import test concurrency races (#1067) (bd6f841)
20+
- fix: forward custom headers in bearer token invoke paths (#1065) (3dccd97)
21+
22+
### Other Changes
23+
- refactor: consolidate cli-config into global-config (#802) (3aec000)
24+
- ci: cut full e2e time in half via vitest sharding (#1016) (4daca83)
25+
526
## [0.11.0] - 2026-04-24
627

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

schemas/agentcore.schema.v1.json

Lines changed: 307 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -690,6 +690,10 @@
690690
"type": "string",
691691
"minLength": 1
692692
},
693+
"endpoint": {
694+
"type": "string",
695+
"minLength": 1
696+
},
693697
"evaluators": {
694698
"minItems": 1,
695699
"type": "array",
@@ -1840,6 +1844,309 @@
18401844
"required": ["name"],
18411845
"additionalProperties": false
18421846
}
1847+
},
1848+
"configBundles": {
1849+
"default": [],
1850+
"type": "array",
1851+
"items": {
1852+
"type": "object",
1853+
"properties": {
1854+
"name": {
1855+
"type": "string",
1856+
"minLength": 1,
1857+
"maxLength": 100,
1858+
"pattern": "^[a-zA-Z][a-zA-Z0-9_]{0,99}$"
1859+
},
1860+
"type": {
1861+
"default": "ConfigurationBundle",
1862+
"type": "string",
1863+
"const": "ConfigurationBundle"
1864+
},
1865+
"description": {
1866+
"type": "string",
1867+
"minLength": 1,
1868+
"maxLength": 500
1869+
},
1870+
"components": {
1871+
"type": "object",
1872+
"propertyNames": {
1873+
"type": "string"
1874+
},
1875+
"additionalProperties": {
1876+
"type": "object",
1877+
"properties": {
1878+
"configuration": {
1879+
"type": "object",
1880+
"propertyNames": {
1881+
"type": "string"
1882+
},
1883+
"additionalProperties": {}
1884+
}
1885+
},
1886+
"required": ["configuration"],
1887+
"additionalProperties": false
1888+
}
1889+
},
1890+
"branchName": {
1891+
"type": "string",
1892+
"maxLength": 128
1893+
},
1894+
"commitMessage": {
1895+
"type": "string",
1896+
"maxLength": 500
1897+
}
1898+
},
1899+
"required": ["name", "components"],
1900+
"additionalProperties": false
1901+
}
1902+
},
1903+
"abTests": {
1904+
"default": [],
1905+
"type": "array",
1906+
"items": {
1907+
"type": "object",
1908+
"properties": {
1909+
"name": {
1910+
"type": "string",
1911+
"minLength": 1,
1912+
"maxLength": 48,
1913+
"pattern": "^[a-zA-Z][a-zA-Z0-9_]{0,47}$"
1914+
},
1915+
"description": {
1916+
"type": "string",
1917+
"minLength": 1,
1918+
"maxLength": 200
1919+
},
1920+
"mode": {
1921+
"default": "config-bundle",
1922+
"type": "string",
1923+
"enum": ["config-bundle", "target-based"]
1924+
},
1925+
"gatewayRef": {
1926+
"type": "string",
1927+
"minLength": 1
1928+
},
1929+
"roleArn": {
1930+
"type": "string",
1931+
"minLength": 1
1932+
},
1933+
"variants": {
1934+
"minItems": 2,
1935+
"maxItems": 2,
1936+
"type": "array",
1937+
"items": {
1938+
"type": "object",
1939+
"properties": {
1940+
"name": {
1941+
"type": "string",
1942+
"enum": ["C", "T1"]
1943+
},
1944+
"weight": {
1945+
"type": "integer",
1946+
"minimum": 1,
1947+
"maximum": 100
1948+
},
1949+
"variantConfiguration": {
1950+
"anyOf": [
1951+
{
1952+
"type": "object",
1953+
"properties": {
1954+
"configurationBundle": {
1955+
"type": "object",
1956+
"properties": {
1957+
"bundleArn": {
1958+
"type": "string",
1959+
"minLength": 1
1960+
},
1961+
"bundleVersion": {
1962+
"type": "string",
1963+
"minLength": 1
1964+
}
1965+
},
1966+
"required": ["bundleArn", "bundleVersion"],
1967+
"additionalProperties": false
1968+
},
1969+
"target": {
1970+
"not": {}
1971+
}
1972+
},
1973+
"required": ["configurationBundle"],
1974+
"additionalProperties": false
1975+
},
1976+
{
1977+
"type": "object",
1978+
"properties": {
1979+
"configurationBundle": {
1980+
"not": {}
1981+
},
1982+
"target": {
1983+
"type": "object",
1984+
"properties": {
1985+
"targetName": {
1986+
"type": "string",
1987+
"minLength": 1,
1988+
"maxLength": 100
1989+
}
1990+
},
1991+
"required": ["targetName"],
1992+
"additionalProperties": false
1993+
}
1994+
},
1995+
"required": ["target"],
1996+
"additionalProperties": false
1997+
}
1998+
]
1999+
}
2000+
},
2001+
"required": ["name", "weight", "variantConfiguration"],
2002+
"additionalProperties": false
2003+
}
2004+
},
2005+
"evaluationConfig": {
2006+
"anyOf": [
2007+
{
2008+
"type": "object",
2009+
"properties": {
2010+
"onlineEvaluationConfigArn": {
2011+
"type": "string",
2012+
"minLength": 1
2013+
}
2014+
},
2015+
"required": ["onlineEvaluationConfigArn"],
2016+
"additionalProperties": false
2017+
},
2018+
{
2019+
"type": "object",
2020+
"properties": {
2021+
"perVariantOnlineEvaluationConfig": {
2022+
"minItems": 2,
2023+
"maxItems": 2,
2024+
"type": "array",
2025+
"items": {
2026+
"type": "object",
2027+
"properties": {
2028+
"treatmentName": {
2029+
"type": "string",
2030+
"enum": ["C", "T1"]
2031+
},
2032+
"onlineEvaluationConfigArn": {
2033+
"type": "string",
2034+
"minLength": 1
2035+
}
2036+
},
2037+
"required": ["treatmentName", "onlineEvaluationConfigArn"],
2038+
"additionalProperties": false
2039+
}
2040+
}
2041+
},
2042+
"required": ["perVariantOnlineEvaluationConfig"],
2043+
"additionalProperties": false
2044+
}
2045+
]
2046+
},
2047+
"gatewayFilter": {
2048+
"type": "object",
2049+
"properties": {
2050+
"targetPaths": {
2051+
"maxItems": 1,
2052+
"type": "array",
2053+
"items": {
2054+
"type": "string",
2055+
"minLength": 1,
2056+
"maxLength": 500
2057+
}
2058+
}
2059+
},
2060+
"required": ["targetPaths"],
2061+
"additionalProperties": false
2062+
},
2063+
"trafficAllocationConfig": {
2064+
"type": "object",
2065+
"properties": {
2066+
"routeOnHeader": {
2067+
"type": "object",
2068+
"properties": {
2069+
"headerName": {
2070+
"type": "string",
2071+
"minLength": 1
2072+
}
2073+
},
2074+
"required": ["headerName"],
2075+
"additionalProperties": false
2076+
}
2077+
},
2078+
"required": ["routeOnHeader"],
2079+
"additionalProperties": false
2080+
},
2081+
"maxDurationDays": {
2082+
"type": "integer",
2083+
"minimum": 1,
2084+
"maximum": 90
2085+
},
2086+
"enableOnCreate": {
2087+
"type": "boolean"
2088+
},
2089+
"promoted": {
2090+
"type": "boolean"
2091+
}
2092+
},
2093+
"required": ["name", "gatewayRef", "variants", "evaluationConfig"],
2094+
"additionalProperties": false
2095+
}
2096+
},
2097+
"httpGateways": {
2098+
"default": [],
2099+
"type": "array",
2100+
"items": {
2101+
"type": "object",
2102+
"properties": {
2103+
"name": {
2104+
"type": "string",
2105+
"minLength": 1,
2106+
"maxLength": 48,
2107+
"pattern": "^[a-zA-Z][a-zA-Z0-9-]{0,47}$"
2108+
},
2109+
"description": {
2110+
"type": "string",
2111+
"minLength": 1,
2112+
"maxLength": 200
2113+
},
2114+
"runtimeRef": {
2115+
"type": "string",
2116+
"minLength": 1
2117+
},
2118+
"roleArn": {
2119+
"type": "string",
2120+
"minLength": 1
2121+
},
2122+
"targets": {
2123+
"type": "array",
2124+
"items": {
2125+
"type": "object",
2126+
"properties": {
2127+
"name": {
2128+
"type": "string",
2129+
"minLength": 1,
2130+
"maxLength": 100
2131+
},
2132+
"runtimeRef": {
2133+
"type": "string",
2134+
"minLength": 1
2135+
},
2136+
"qualifier": {
2137+
"default": "DEFAULT",
2138+
"type": "string",
2139+
"minLength": 1
2140+
}
2141+
},
2142+
"required": ["name", "runtimeRef"],
2143+
"additionalProperties": false
2144+
}
2145+
}
2146+
},
2147+
"required": ["name", "runtimeRef"],
2148+
"additionalProperties": false
2149+
}
18432150
}
18442151
},
18452152
"required": ["name", "version"],

0 commit comments

Comments
 (0)