Skip to content

Commit 4470049

Browse files
committed
Bump version to v0.4.1
1 parent e7a781e commit 4470049

9 files changed

Lines changed: 40 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.1] - 2026-03-25
11+
12+
### Added
13+
14+
- AG-UI agent patterns for both Strands and LangGraph (`patterns/agui-strands-agent/`, `patterns/agui-langgraph-agent/`) with tool support (Gateway, Code Interpreter)
15+
- AG-UI streaming parser in frontend (`frontend/src/lib/agentcore-client/parsers/agui.ts`)
16+
- AG-UI integration documentation (`docs/AGUI_INTEGRATION.md`)
17+
- AgentCore Evaluations integration guide (`docs/AGENTCORE_EVALUATIONS_GUIDE.md`)
18+
- X-Ray VPC endpoint to private VPC deployment documentation
19+
20+
### Changed
21+
22+
- Restructured existing Strands and LangGraph agent patterns with modular `tools/` directories for Gateway and Code Interpreter
23+
- Simplified `basic_agent.py` and `langgraph_agent.py` by extracting tool definitions into separate modules
24+
- Updated OpenTelemetry distro version across all agent pattern Dockerfiles
25+
26+
### Fixed
27+
28+
- API Gateway cache encryption at rest enabled in both CDK and Terraform
29+
- ASH PR comment artifact consolidation and dependabot auto-merge workflow trigger
30+
- Security scanner false positive suppressions (nosemgrep/nosec) for CDK path operations, JWT decode, and zip-packager urlopen
31+
- Added USER directive to `Dockerfile.frontend.dev` (CKV_DOCKER_3)
32+
33+
### Security
34+
35+
- Updated `tj-actions/changed-files` to v47.0.5 (CVE fix for GHSA-mrrh-fwg8-r2c3 and GHSA-mcph-m25j-8j63)
36+
- Bumped `fast-xml-parser` and `@aws-sdk/xml-builder` in frontend
37+
- Bumped `flatted` from 3.3.3 to 3.4.2 in frontend
38+
- Bumped `langgraph` in patterns/langgraph-single-agent
39+
1040
## [0.4.0] - 2026-03-12
1141

1242
### Added

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.0
1+
0.4.1

frontend/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.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fullstack-agentcore-solution-template-frontend",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"private": true,
55
"scripts": {
66
"dev": "vite",

infra-cdk/lib/fast-main-stack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class FastMainStack extends cdk.Stack {
1818

1919
constructor(scope: Construct, id: string, props: FastAmplifyStackProps) {
2020
const description =
21-
"Fullstack AgentCore Solution Template - Main Stack (v0.4.0) (uksb-v6dos0t5g8)"
21+
"Fullstack AgentCore Solution Template - Main Stack (v0.4.1) (uksb-v6dos0t5g8)"
2222
super(scope, id, { ...props, description })
2323

2424
// Step 1: Create the Amplify stack to get the predictable domain

infra-cdk/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.

infra-cdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fast-cdk",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"bin": {
55
"fast-cdk": "bin/fast-cdk.js"
66
},

infra-terraform/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.0-tf.0
1+
0.4.1-tf.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "fullstack-agentcore-solution-template"
7-
version = "0.4.0"
7+
version = "0.4.1"
88
description = "Fullstack AgentCore Solution Template - A template for building AgentCore applications"
99
readme = "README.md"
1010
license = { text = "Apache-2.0" }

0 commit comments

Comments
 (0)