Skip to content

Commit 2923dea

Browse files
authored
Merge pull request #1145 from aws/fix/pin-a2a-sdk-below-1.0
fix: pin a2a-sdk below 1.0 to prevent breaking changes
2 parents d9ec423 + 42487c0 commit 2923dea

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/assets/__tests__/__snapshots__/assets.snapshot.test.ts.snap

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1164,7 +1164,7 @@ description = "AgentCore A2A Agent using Google ADK"
11641164
readme = "README.md"
11651165
requires-python = ">=3.10"
11661166
dependencies = [
1167-
"a2a-sdk >= 0.2.0",
1167+
"a2a-sdk >= 0.2.0, < 1.0.0",
11681168
"aws-opentelemetry-distro",
11691169
"bedrock-agentcore[a2a] >= 1.0.3",
11701170
"google-adk >= 1.0.0",
@@ -1525,7 +1525,7 @@ description = "AgentCore A2A Agent using LangChain + LangGraph"
15251525
readme = "README.md"
15261526
requires-python = ">=3.10"
15271527
dependencies = [
1528-
"a2a-sdk >= 0.2.0",
1528+
"a2a-sdk >= 0.2.0, < 1.0.0",
15291529
{{#if (eq modelProvider "Anthropic")}}"langchain-anthropic >= 0.3.0",
15301530
{{/if}}{{#if (eq modelProvider "Bedrock")}}"langchain-aws >= 0.2.0",
15311531
{{/if}}{{#if (eq modelProvider "Gemini")}}"langchain-google-genai >= 2.0.0",
@@ -1869,7 +1869,7 @@ readme = "README.md"
18691869
requires-python = ">=3.10"
18701870
dependencies = [
18711871
{{#if (eq modelProvider "Anthropic")}}"anthropic >= 0.30.0",
1872-
{{/if}}"a2a-sdk[all] >= 0.2.0",
1872+
{{/if}}"a2a-sdk[all] >= 0.2.0, < 1.0.0",
18731873
"aws-opentelemetry-distro",
18741874
"bedrock-agentcore[a2a] >= 1.0.3",
18751875
"botocore[crt] >= 1.35.0",

src/assets/python/a2a/googleadk/base/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "AgentCore A2A Agent using Google ADK"
99
readme = "README.md"
1010
requires-python = ">=3.10"
1111
dependencies = [
12-
"a2a-sdk >= 0.2.0",
12+
"a2a-sdk >= 0.2.0, < 1.0.0",
1313
"aws-opentelemetry-distro",
1414
"bedrock-agentcore[a2a] >= 1.0.3",
1515
"google-adk >= 1.0.0",

src/assets/python/a2a/langchain_langgraph/base/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "AgentCore A2A Agent using LangChain + LangGraph"
99
readme = "README.md"
1010
requires-python = ">=3.10"
1111
dependencies = [
12-
"a2a-sdk >= 0.2.0",
12+
"a2a-sdk >= 0.2.0, < 1.0.0",
1313
{{#if (eq modelProvider "Anthropic")}}"langchain-anthropic >= 0.3.0",
1414
{{/if}}{{#if (eq modelProvider "Bedrock")}}"langchain-aws >= 0.2.0",
1515
{{/if}}{{#if (eq modelProvider "Gemini")}}"langchain-google-genai >= 2.0.0",

src/assets/python/a2a/strands/base/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ readme = "README.md"
1010
requires-python = ">=3.10"
1111
dependencies = [
1212
{{#if (eq modelProvider "Anthropic")}}"anthropic >= 0.30.0",
13-
{{/if}}"a2a-sdk[all] >= 0.2.0",
13+
{{/if}}"a2a-sdk[all] >= 0.2.0, < 1.0.0",
1414
"aws-opentelemetry-distro",
1515
"bedrock-agentcore[a2a] >= 1.0.3",
1616
"botocore[crt] >= 1.35.0",

0 commit comments

Comments
 (0)