Skip to content

Commit f1c9dab

Browse files
authored
Merge branch 'main' into agent-card-signature
2 parents 054d187 + 5fea21f commit f1c9dab

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
### Bug Fixes
102102

103103
* apply `history_length` for `message/send` requests ([#498](https://github.com/a2aproject/a2a-python/issues/498)) ([a49f94e](https://github.com/a2aproject/a2a-python/commit/a49f94ef23d81b8375e409b1c1e51afaf1da1956))
104-
* **client:** `A2ACardResolver.get_agent_card` will auto-populate with `agent_card_path` when `relative_card_path` is empty ([#508](https://github.com/a2aproject/a2a-python/issues/508)) ([ba24ead](https://github.com/a2aproject/a2a-python/commit/ba24eadb5b6fcd056a008e4cbcef03b3f72a37c3))
104+
* **client:** `A2ACardResolver.get_agent_card` will autopopulate with `agent_card_path` when `relative_card_path` is empty ([#508](https://github.com/a2aproject/a2a-python/issues/508)) ([ba24ead](https://github.com/a2aproject/a2a-python/commit/ba24eadb5b6fcd056a008e4cbcef03b3f72a37c3))
105105

106106

107107
### Documentation
@@ -438,8 +438,8 @@
438438
* Event consumer should stop on input_required ([#167](https://github.com/a2aproject/a2a-python/issues/167)) ([51c2d8a](https://github.com/a2aproject/a2a-python/commit/51c2d8addf9e89a86a6834e16deb9f4ac0e05cc3))
439439
* Fix Release Version ([#161](https://github.com/a2aproject/a2a-python/issues/161)) ([011d632](https://github.com/a2aproject/a2a-python/commit/011d632b27b201193813ce24cf25e28d1335d18e))
440440
* generate StrEnum types for enums ([#134](https://github.com/a2aproject/a2a-python/issues/134)) ([0c49dab](https://github.com/a2aproject/a2a-python/commit/0c49dabcdb9d62de49fda53d7ce5c691b8c1591c))
441-
* library should released as 0.2.6 ([d8187e8](https://github.com/a2aproject/a2a-python/commit/d8187e812d6ac01caedf61d4edaca522e583d7da))
442-
* remove error types from enqueable events ([#138](https://github.com/a2aproject/a2a-python/issues/138)) ([511992f](https://github.com/a2aproject/a2a-python/commit/511992fe585bd15e956921daeab4046dc4a50a0a))
441+
* library should be released as 0.2.6 ([d8187e8](https://github.com/a2aproject/a2a-python/commit/d8187e812d6ac01caedf61d4edaca522e583d7da))
442+
* remove error types from enqueueable events ([#138](https://github.com/a2aproject/a2a-python/issues/138)) ([511992f](https://github.com/a2aproject/a2a-python/commit/511992fe585bd15e956921daeab4046dc4a50a0a))
443443
* **stream:** don't block event loop in EventQueue ([#151](https://github.com/a2aproject/a2a-python/issues/151)) ([efd9080](https://github.com/a2aproject/a2a-python/commit/efd9080b917c51d6e945572fd123b07f20974a64))
444444
* **task_updater:** fix potential duplicate artifact_id from default v… ([#156](https://github.com/a2aproject/a2a-python/issues/156)) ([1f0a769](https://github.com/a2aproject/a2a-python/commit/1f0a769c1027797b2f252e4c894352f9f78257ca))
445445

Gemini.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
- uv as package manager
55

66
## How to run all tests
7-
1. If dependencies are not installed install them using following command
7+
1. If dependencies are not installed, install them using the following command
88
```
99
uv sync --all-extras
1010
```

src/a2a/utils/error_handlers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,12 @@ async def wrapper(*args: Any, **kwargs: Any) -> Any:
117117
', Data=' + str(error.data) if error.data else '',
118118
)
119119
# Since the stream has started, we can't return a JSONResponse.
120-
# Instead, we runt the error handling logic (provides logging)
120+
# Instead, we run the error handling logic (provides logging)
121121
# and reraise the error and let server framework manage
122122
raise e
123123
except Exception as e:
124124
# Since the stream has started, we can't return a JSONResponse.
125-
# Instead, we runt the error handling logic (provides logging)
125+
# Instead, we run the error handling logic (provides logging)
126126
# and reraise the error and let server framework manage
127127
raise e
128128

tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
uv run pytest -v -s client/test_client_factory.py
66
```
77

8-
In case of failures, you can cleanup the cache:
8+
In case of failures, you can clean up the cache:
99

1010
1. `uv clean`
1111
2. `rm -fR .pytest_cache .venv __pycache__`

tests/e2e/push_notifications/test_default_push_notification_support.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
@pytest.fixture(scope='module')
3636
def notifications_server():
3737
"""
38-
Starts a simple push notifications injesting server and yields its URL.
38+
Starts a simple push notifications ingesting server and yields its URL.
3939
"""
4040
host = '127.0.0.1'
4141
port = find_free_port()
@@ -148,7 +148,7 @@ async def test_notification_triggering_after_config_change_e2e(
148148
notifications_server: str, agent_server: str, http_client: httpx.AsyncClient
149149
):
150150
"""
151-
Tests notification triggering after setting the push notificaiton config in a seperate call.
151+
Tests notification triggering after setting the push notification config in a separate call.
152152
"""
153153
# Configure an A2A client without a push notification config.
154154
a2a_client = ClientFactory(

0 commit comments

Comments
 (0)