From 8ae3ee5b554f7b47e7c3b0dbd0e9c939009c91e1 Mon Sep 17 00:00:00 2001 From: Deepthi Rao Date: Thu, 30 Jul 2026 14:13:50 -0400 Subject: [PATCH 1/2] fix(tutorials): add pytest-asyncio to async tutorial dev deps (#481) Co-authored-by: Claude Opus 4.8 (1M context) --- .../00_base/090_multi_agent_non_temporal/pyproject.toml | 2 ++ .../060_open_ai_agents_sdk_hello_world/pyproject.toml | 2 ++ .../10_temporal/070_open_ai_agents_sdk_tools/pyproject.toml | 2 ++ .../080_open_ai_agents_sdk_human_in_the_loop/pyproject.toml | 2 ++ .../10_temporal/090_claude_agents_sdk_mvp/pyproject.toml | 2 ++ 5 files changed, 10 insertions(+) diff --git a/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/pyproject.toml b/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/pyproject.toml index a2234c45e..97c221dc2 100644 --- a/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/pyproject.toml +++ b/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/pyproject.toml @@ -16,6 +16,8 @@ dependencies = [ [project.optional-dependencies] dev = [ "pytest", + "pytest-asyncio", + "httpx", "black", "isort", "flake8", diff --git a/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/pyproject.toml b/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/pyproject.toml index 5a1cd08d0..28cfa2f1d 100644 --- a/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/pyproject.toml +++ b/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/pyproject.toml @@ -17,6 +17,8 @@ dependencies = [ [project.optional-dependencies] dev = [ "pytest", + "pytest-asyncio", + "httpx", "black", "isort", "flake8", diff --git a/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/pyproject.toml b/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/pyproject.toml index 22f4e0080..343d4e01a 100644 --- a/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/pyproject.toml +++ b/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/pyproject.toml @@ -17,6 +17,8 @@ dependencies = [ [project.optional-dependencies] dev = [ "pytest", + "pytest-asyncio", + "httpx", "black", "isort", "flake8", diff --git a/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/pyproject.toml b/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/pyproject.toml index b38ee6e63..5f4c7fbe7 100644 --- a/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/pyproject.toml +++ b/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/pyproject.toml @@ -17,6 +17,8 @@ dependencies = [ [project.optional-dependencies] dev = [ "pytest", + "pytest-asyncio", + "httpx", "black", "isort", "flake8", diff --git a/examples/tutorials/10_async/10_temporal/090_claude_agents_sdk_mvp/pyproject.toml b/examples/tutorials/10_async/10_temporal/090_claude_agents_sdk_mvp/pyproject.toml index 12573a90f..23213dfd0 100644 --- a/examples/tutorials/10_async/10_temporal/090_claude_agents_sdk_mvp/pyproject.toml +++ b/examples/tutorials/10_async/10_temporal/090_claude_agents_sdk_mvp/pyproject.toml @@ -17,6 +17,8 @@ dependencies = [ [project.optional-dependencies] dev = [ "pytest", + "pytest-asyncio", + "httpx", "black", "isort", "flake8", From 4599d6bbc087287b13cf650399d163e8594e360e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2026 18:14:22 +0000 Subject: [PATCH 2/2] chore: release main --- .release-please-manifest.json | 4 ++-- CHANGELOG.md | 8 ++++++++ adk/CHANGELOG.md | 8 ++++++++ adk/pyproject.toml | 2 +- pyproject.toml | 2 +- src/agentex/_version.py | 2 +- 6 files changed, 21 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fad1feb45..6e2eef653 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - ".": "0.22.1", - "adk": "0.22.1" + ".": "0.22.2", + "adk": "0.22.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f25ef3fc..9b175a931 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,14 @@ * **tracing:** emit OTel metrics for async span queue depth, batch drain, and SGP export success/failure (HTTP status labels). Disable SDK-side recording with ``AGENTEX_TRACING_METRICS=0``. +## 0.22.2 (2026-07-30) + +Full Changelog: [agentex-client-v0.22.1...agentex-client-v0.22.2](https://github.com/scaleapi/scale-agentex-python/compare/agentex-client-v0.22.1...agentex-client-v0.22.2) + +### Bug Fixes + +* **tutorials:** add pytest-asyncio to async tutorial dev deps ([#481](https://github.com/scaleapi/scale-agentex-python/issues/481)) ([8ae3ee5](https://github.com/scaleapi/scale-agentex-python/commit/8ae3ee5b554f7b47e7c3b0dbd0e9c939009c91e1)) + ## 0.22.1 (2026-07-29) Full Changelog: [agentex-client-v0.22.0...agentex-client-v0.22.1](https://github.com/scaleapi/scale-agentex-python/compare/agentex-client-v0.22.0...agentex-client-v0.22.1) diff --git a/adk/CHANGELOG.md b/adk/CHANGELOG.md index cf88c3a08..aba187304 100644 --- a/adk/CHANGELOG.md +++ b/adk/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.22.2 (2026-07-30) + +Full Changelog: [agentex-sdk-v0.22.1...agentex-sdk-v0.22.2](https://github.com/scaleapi/scale-agentex-python/compare/agentex-sdk-v0.22.1...agentex-sdk-v0.22.2) + +### Chores + +* **agentex-sdk:** Synchronize agentex versions + ## 0.22.1 (2026-07-29) Full Changelog: [agentex-sdk-v0.22.0...agentex-sdk-v0.22.1](https://github.com/scaleapi/scale-agentex-python/compare/agentex-sdk-v0.22.0...agentex-sdk-v0.22.1) diff --git a/adk/pyproject.toml b/adk/pyproject.toml index 349e84ce0..3569a8e52 100644 --- a/adk/pyproject.toml +++ b/adk/pyproject.toml @@ -4,7 +4,7 @@ # (agentex/{__init__.py, _*.py, types/, resources/}) ships from the slim # sibling package `agentex-client` which is pinned as a runtime dep. name = "agentex-sdk" -version = "0.22.1" +version = "0.22.2" description = "Agent Development Kit (ADK) overlay for the Agentex API — FastACP server, Temporal workflows, LLM provider integrations, observability" license = "Apache-2.0" authors = [ diff --git a/pyproject.toml b/pyproject.toml index 9ed408bb3..f73829573 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ # overlay (formerly `src/agentex/lib/*`) now lives in `adk/` and ships # as the sibling `agentex-sdk` package — see `adk/pyproject.toml`. name = "agentex-client" -version = "0.22.1" +version = "0.22.2" description = "The official Python REST client for the Agentex API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/agentex/_version.py b/src/agentex/_version.py index bdf484749..11f3825fe 100644 --- a/src/agentex/_version.py +++ b/src/agentex/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "agentex" -__version__ = "0.22.1" # x-release-please-version +__version__ = "0.22.2" # x-release-please-version