From c2b918b6b692c7fb28f509ded116d64eb55c455a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 16 Apr 2026 23:33:58 +0000 Subject: [PATCH 1/3] chore: bump version to 1.6.3 Co-authored-by: github-actions[bot] --- CHANGELOG.md | 5 +++++ pyproject.toml | 2 +- uv.lock | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe5f5053..af1a1e7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [1.6.3] - 2026-04-16 + +### Fixed +- fix: validate region parameter to prevent SSRF request redirection (#417) (640b3ad) + ## [1.6.2] - 2026-04-13 ### Fixed diff --git a/pyproject.toml b/pyproject.toml index be45606a..7ed78e7e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "bedrock-agentcore" -version = "1.6.2" +version = "1.6.3" description = "An SDK for using Bedrock AgentCore" readme = "README.md" requires-python = ">=3.10" diff --git a/uv.lock b/uv.lock index 04923572..771e7f13 100644 --- a/uv.lock +++ b/uv.lock @@ -270,7 +270,7 @@ wheels = [ [[package]] name = "bedrock-agentcore" -version = "1.6.2" +version = "1.6.3" source = { editable = "." } dependencies = [ { name = "boto3" }, From a83544603968c4c82fd99416697da27a29304db7 Mon Sep 17 00:00:00 2001 From: Trirmadura J Ariyawansa Date: Thu, 16 Apr 2026 19:36:35 -0400 Subject: [PATCH 2/3] empty commit Signed-off-by: Trirmadura J Ariyawansa --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 99d6e19c..006fc7a3 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ from strands.a2a import StrandsA2AExecutor from bedrock_agentcore.runtime import serve_a2a agent = Agent(model="us.anthropic.claude-sonnet-4-20250514", system_prompt="You are a helpful assistant.") -serve_a2a(StrandsA2AExecutor(agent)) +serve_a2a(StrandsA2AExecutor(agent)) ``` See [A2A Protocol Examples](docs/examples/a2a_protocol_examples.md) for LangGraph, Google ADK, and advanced usage. From 5372cede9f33d2ca6602f2447a33047a6767678d Mon Sep 17 00:00:00 2001 From: "T.J Ariyawansa" Date: Thu, 16 Apr 2026 19:41:29 -0400 Subject: [PATCH 3/3] fix: remove trailing whitespace in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 006fc7a3..99d6e19c 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ from strands.a2a import StrandsA2AExecutor from bedrock_agentcore.runtime import serve_a2a agent = Agent(model="us.anthropic.claude-sonnet-4-20250514", system_prompt="You are a helpful assistant.") -serve_a2a(StrandsA2AExecutor(agent)) +serve_a2a(StrandsA2AExecutor(agent)) ``` See [A2A Protocol Examples](docs/examples/a2a_protocol_examples.md) for LangGraph, Google ADK, and advanced usage.