Skip to content

Commit b5b6fd3

Browse files
authored
Merge branch 'a2aproject:main' into main
2 parents 01b421e + 174d58d commit b5b6fd3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1776
-413
lines changed

.github/workflows/linter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
python-version-file: .python-version
2020
- name: Install uv
21-
uses: astral-sh/setup-uv@v6
21+
uses: astral-sh/setup-uv@v7
2222
- name: Add uv to PATH
2323
run: |
2424
echo "$HOME/.cargo/bin" >> $GITHUB_PATH

.github/workflows/python-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v5
1616

1717
- name: Install uv
18-
uses: astral-sh/setup-uv@v6
18+
uses: astral-sh/setup-uv@v7
1919

2020
- name: "Set up Python"
2121
uses: actions/setup-python@v6
@@ -26,7 +26,7 @@ jobs:
2626
run: uv build
2727

2828
- name: Upload distributions
29-
uses: actions/upload-artifact@v4
29+
uses: actions/upload-artifact@v5
3030
with:
3131
name: release-dists
3232
path: dist/
@@ -40,7 +40,7 @@ jobs:
4040

4141
steps:
4242
- name: Retrieve release distributions
43-
uses: actions/download-artifact@v5
43+
uses: actions/download-artifact@v6
4444
with:
4545
name: release-dists
4646
path: dist/

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
echo "MYSQL_TEST_DSN=mysql+aiomysql://a2a:a2a_password@localhost:3306/a2a_test" >> $GITHUB_ENV
4747
4848
- name: Install uv for Python ${{ matrix.python-version }}
49-
uses: astral-sh/setup-uv@v6
49+
uses: astral-sh/setup-uv@v7
5050
with:
5151
python-version: ${{ matrix.python-version }}
5252
- name: Add uv to PATH

.github/workflows/update-a2a-types.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
python-version: '3.10'
2020
- name: Install uv
21-
uses: astral-sh/setup-uv@v6
21+
uses: astral-sh/setup-uv@v7
2222
- name: Configure uv shell
2323
run: echo "$HOME/.cargo/bin" >> $GITHUB_PATH
2424
- name: Install dependencies (datamodel-code-generator)

CHANGELOG.md

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,76 @@
11
# Changelog
22

3+
## [0.3.20](https://github.com/a2aproject/a2a-python/compare/v0.3.19...v0.3.20) (2025-12-03)
4+
5+
6+
### Bug Fixes
7+
8+
* Improve streaming errors handling ([#576](https://github.com/a2aproject/a2a-python/issues/576)) ([7ea7475](https://github.com/a2aproject/a2a-python/commit/7ea7475091df2ee40d3035ef1bc34ee2f86524ee))
9+
10+
## [0.3.19](https://github.com/a2aproject/a2a-python/compare/v0.3.18...v0.3.19) (2025-11-25)
11+
12+
13+
### Bug Fixes
14+
15+
* **jsonrpc, rest:** `extensions` support in `get_card` methods in `json-rpc` and `rest` transports ([#564](https://github.com/a2aproject/a2a-python/issues/564)) ([847f18e](https://github.com/a2aproject/a2a-python/commit/847f18eff59985f447c39a8e5efde87818b68d15))
16+
17+
## [0.3.18](https://github.com/a2aproject/a2a-python/compare/v0.3.17...v0.3.18) (2025-11-24)
18+
19+
20+
### Bug Fixes
21+
22+
* return updated `agent_card` in `JsonRpcTransport.get_card()` ([#552](https://github.com/a2aproject/a2a-python/issues/552)) ([0ce239e](https://github.com/a2aproject/a2a-python/commit/0ce239e98f67ccbf154f2edcdbcee43f3b080ead))
23+
24+
## [0.3.17](https://github.com/a2aproject/a2a-python/compare/v0.3.16...v0.3.17) (2025-11-24)
25+
26+
27+
### Features
28+
29+
* **client:** allow specifying `history_length` via call-site `MessageSendConfiguration` in `BaseClient.send_message` ([53bbf7a](https://github.com/a2aproject/a2a-python/commit/53bbf7ae3ad58fb0c10b14da05cf07c0a7bd9651))
30+
31+
## [0.3.16](https://github.com/a2aproject/a2a-python/compare/v0.3.15...v0.3.16) (2025-11-21)
32+
33+
34+
### Bug Fixes
35+
36+
* Ensure metadata propagation for `Task` `ToProto` and `FromProto` conversion ([#557](https://github.com/a2aproject/a2a-python/issues/557)) ([fc31d03](https://github.com/a2aproject/a2a-python/commit/fc31d03e8c6acb68660f6d1924262e16933c5d50))
37+
38+
## [0.3.15](https://github.com/a2aproject/a2a-python/compare/v0.3.14...v0.3.15) (2025-11-19)
39+
40+
41+
### Features
42+
43+
* Add client-side extension support ([#525](https://github.com/a2aproject/a2a-python/issues/525)) ([9a92bd2](https://github.com/a2aproject/a2a-python/commit/9a92bd238e7560b195165ac5f78742981760525e))
44+
* **rest, jsonrpc:** Add client-side extension support ([9a92bd2](https://github.com/a2aproject/a2a-python/commit/9a92bd238e7560b195165ac5f78742981760525e))
45+
46+
## [0.3.14](https://github.com/a2aproject/a2a-python/compare/v0.3.13...v0.3.14) (2025-11-17)
47+
48+
49+
### Features
50+
51+
* **jsonrpc:** add option to disable oversized payload check in JSONRPC applications ([ba142df](https://github.com/a2aproject/a2a-python/commit/ba142df821d1c06be0b96e576fd43015120fcb0b))
52+
53+
## [0.3.13](https://github.com/a2aproject/a2a-python/compare/v0.3.12...v0.3.13) (2025-11-13)
54+
55+
56+
### Bug Fixes
57+
58+
* return entire history when history_length=0 ([#537](https://github.com/a2aproject/a2a-python/issues/537)) ([acdc0de](https://github.com/a2aproject/a2a-python/commit/acdc0de4fa03d34a6b287ab252ff51b19c3016b5))
59+
60+
## [0.3.12](https://github.com/a2aproject/a2a-python/compare/v0.3.11...v0.3.12) (2025-11-12)
61+
62+
63+
### Bug Fixes
64+
65+
* **grpc:** Add `extensions` to `Artifact` converters. ([#523](https://github.com/a2aproject/a2a-python/issues/523)) ([c03129b](https://github.com/a2aproject/a2a-python/commit/c03129b99a663ae1f1ae72f20e4ead7807ede941))
66+
67+
## [0.3.11](https://github.com/a2aproject/a2a-python/compare/v0.3.10...v0.3.11) (2025-11-07)
68+
69+
70+
### Bug Fixes
71+
72+
* add metadata to send message request ([12b4a1d](https://github.com/a2aproject/a2a-python/commit/12b4a1d565a53794f5b55c8bd1728221c906ed41))
73+
374
## [0.3.10](https://github.com/a2aproject/a2a-python/compare/v0.3.9...v0.3.10) (2025-10-21)
475

576

scripts/generate_types.sh

Lines changed: 78 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,105 @@
44
# Treat unset variables as an error.
55
set -euo pipefail
66

7-
REMOTE_URL="https://raw.githubusercontent.com/a2aproject/A2A/refs/heads/main/specification/json/a2a.json"
7+
# A2A specification version to use
8+
# Can be overridden via environment variable: A2A_SPEC_VERSION=v1.2.0 ./generate_types.sh
9+
# Or via command-line flag: ./generate_types.sh --version v1.2.0 output.py
10+
# Use a specific git tag, branch name, or commit SHA
11+
# Examples: "v1.0.0", "v1.2.0", "main", "abc123def"
12+
A2A_SPEC_VERSION="${A2A_SPEC_VERSION:-v0.3.0}"
13+
14+
# Build URL based on version format
15+
# Tags use /refs/tags/, branches use /refs/heads/, commits use direct ref
16+
build_remote_url() {
17+
local version="$1"
18+
local base_url="https://raw.githubusercontent.com/a2aproject/A2A"
19+
local spec_path="specification/json/a2a.json"
20+
local url_part
21+
22+
if [[ "$version" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
23+
# Looks like a version tag (v1.0.0, v1.2.3)
24+
url_part="refs/tags/${version}"
25+
elif [[ "$version" =~ ^[0-9a-f]{7,40}$ ]]; then
26+
# Looks like a commit SHA (7+ hex chars)
27+
url_part="${version}"
28+
else
29+
# Assume it's a branch name (main, develop, etc.)
30+
url_part="refs/heads/${version}"
31+
fi
32+
echo "${base_url}/${url_part}/${spec_path}"
33+
}
34+
35+
REMOTE_URL=$(build_remote_url "$A2A_SPEC_VERSION")
836

937
GENERATED_FILE=""
1038
INPUT_FILE=""
1139

1240
# Parse command-line arguments
1341
while [[ $# -gt 0 ]]; do
1442
case "$1" in
15-
--input-file)
16-
INPUT_FILE="$2"
17-
shift 2
18-
;;
19-
*)
20-
GENERATED_FILE="$1"
21-
shift 1
22-
;;
43+
--input-file)
44+
INPUT_FILE="$2"
45+
shift 2
46+
;;
47+
--version)
48+
A2A_SPEC_VERSION="$2"
49+
REMOTE_URL=$(build_remote_url "$A2A_SPEC_VERSION")
50+
shift 2
51+
;;
52+
*)
53+
GENERATED_FILE="$1"
54+
shift 1
55+
;;
2356
esac
2457
done
2558

2659
if [ -z "$GENERATED_FILE" ]; then
27-
echo "Error: Output file path must be provided." >&2
28-
echo "Usage: $0 [--input-file <path>] <output-file-path>"
60+
cat >&2 <<EOF
61+
Error: Output file path must be provided.
62+
Usage: $0 [--input-file <path>] [--version <version>] <output-file-path>
63+
Options:
64+
--input-file <path> Use a local JSON schema file instead of fetching from remote
65+
--version <version> Specify A2A spec version (default: v0.3.0)
66+
Can be a git tag (v1.0.0), branch (main), or commit SHA
67+
Environment variables:
68+
A2A_SPEC_VERSION Override default spec version
69+
Examples:
70+
$0 src/a2a/types.py
71+
$0 --version v1.2.0 src/a2a/types.py
72+
$0 --input-file local/a2a.json src/a2a/types.py
73+
A2A_SPEC_VERSION=main $0 src/a2a/types.py
74+
EOF
2975
exit 1
3076
fi
3177

3278
echo "Running datamodel-codegen..."
3379
declare -a source_args
3480
if [ -n "$INPUT_FILE" ]; then
3581
echo " - Source File: $INPUT_FILE"
82+
if [ ! -f "$INPUT_FILE" ]; then
83+
echo "Error: Input file does not exist: $INPUT_FILE" >&2
84+
exit 1
85+
fi
3686
source_args=("--input" "$INPUT_FILE")
3787
else
88+
echo " - A2A Spec Version: $A2A_SPEC_VERSION"
3889
echo " - Source URL: $REMOTE_URL"
90+
91+
# Validate that the remote URL is accessible
92+
echo " - Validating remote URL..."
93+
if ! curl --fail --silent --head "$REMOTE_URL" >/dev/null 2>&1; then
94+
cat >&2 <<EOF
95+
96+
Error: Unable to access A2A specification at version '$A2A_SPEC_VERSION'
97+
URL: $REMOTE_URL
98+
99+
The version may not exist. Available versions can be found at:
100+
https://github.com/a2aproject/A2A/tags
101+
102+
EOF
103+
exit 1
104+
fi
105+
39106
source_args=("--url" "$REMOTE_URL")
40107
fi
41108
echo " - Output File: $GENERATED_FILE"

src/a2a/client/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
CredentialService,
88
InMemoryContextCredentialStore,
99
)
10+
from a2a.client.base_client import BaseClient
1011
from a2a.client.card_resolver import A2ACardResolver
1112
from a2a.client.client import Client, ClientConfig, ClientEvent, Consumer
1213
from a2a.client.client_factory import ClientFactory, minimal_agent_card
@@ -51,6 +52,7 @@ def __init__(self, *args, **kwargs):
5152
'A2AClientTimeoutError',
5253
'A2AGrpcClient',
5354
'AuthInterceptor',
55+
'BaseClient',
5456
'Client',
5557
'ClientCallContext',
5658
'ClientCallInterceptor',

0 commit comments

Comments
 (0)