You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge origin/next into maxparke/agx1-418-build-provenance-capture
One add/add conflict in obs_ids.py, which both branches created independently.
Took next's side on both hunks:
- `from typing import Dict, Tuple, Optional` — next's length-sorted order is
what ruff's isort config wants here. This branch's alphabetical order was the
I001 that had been failing the lint job, so resolving the conflict fixes it.
- `from ddtrace.trace import tracer` — the path ddtrace exposes now, and the
only form used elsewhere in the tree.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,21 @@
12
12
13
13
***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``.
14
14
15
+
## 0.21.0 (2026-07-28)
16
+
17
+
Full Changelog: [agentex-client-v0.20.0...agentex-client-v0.21.0](https://github.com/scaleapi/scale-agentex-python/compare/agentex-client-v0.20.0...agentex-client-v0.21.0)
18
+
19
+
### Features
20
+
21
+
***api:** add include_live parameter to schedules list method ([199fd6a](https://github.com/scaleapi/scale-agentex-python/commit/199fd6a633bc82626a4629ee1ac52a40e6f10271))
22
+
***codex:** republish todo_list revisions as they are ticked off ([#473](https://github.com/scaleapi/scale-agentex-python/issues/473)) ([0252fcc](https://github.com/scaleapi/scale-agentex-python/commit/0252fcc1d00c96066e4500d09b07a6b0da836437))
23
+
***stlc:** configurable CI runner and private-production-repo support in workflow templates ([23c1b6b](https://github.com/scaleapi/scale-agentex-python/commit/23c1b6b8dc60f16c5e19a1aab68d244d286caffc))
24
+
25
+
26
+
### Bug Fixes
27
+
28
+
***api:** remove params field from task list response ([152bc75](https://github.com/scaleapi/scale-agentex-python/commit/152bc75b242c2ff4179e0cfac0f33edbc6bcae38))
29
+
15
30
## 0.20.0 (2026-07-16)
16
31
17
32
Full Changelog: [agentex-client-v0.19.0...agentex-client-v0.20.0](https://github.com/scaleapi/scale-agentex-python/compare/agentex-client-v0.19.0...agentex-client-v0.20.0)
Copy file name to clipboardExpand all lines: adk/CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,13 @@
1
1
# Changelog
2
2
3
+
## 0.21.0 (2026-07-28)
4
+
5
+
Full Changelog: [agentex-sdk-v0.20.0...agentex-sdk-v0.21.0](https://github.com/scaleapi/scale-agentex-python/compare/agentex-sdk-v0.20.0...agentex-sdk-v0.21.0)
6
+
7
+
### Chores
8
+
9
+
***agentex-sdk:** Synchronize agentex versions
10
+
3
11
## 0.20.0 (2026-07-16)
4
12
5
13
Full Changelog: [agentex-sdk-v0.19.0...agentex-sdk-v0.20.0](https://github.com/scaleapi/scale-agentex-python/compare/agentex-sdk-v0.19.0...agentex-sdk-v0.20.0)
Copy file name to clipboardExpand all lines: examples/tutorials/10_async/10_temporal/020_state_machine/project/workflows/deep_research/performing_deep_research.py
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -13,21 +13,28 @@
13
13
14
14
logger=make_logger(__name__)
15
15
16
+
# These reference MCP servers still import the mcp 1.x API (``McpError``), which
17
+
# mcp 2.0.0 renamed to ``MCPError``. uvx gives each server its own isolated env and
18
+
# resolves ``mcp`` unpinned there, ignoring the version this project pins, so without
19
+
# this constraint every server dies at import and the agent silently makes zero tool
20
+
# calls. Drop the pin once the servers support mcp 2.x.
0 commit comments