From b8cf4e4d4170b3a8896348a699ff4cc8a42e4d19 Mon Sep 17 00:00:00 2001 From: Abir Abbas Date: Sun, 10 May 2026 11:45:07 -0400 Subject: [PATCH] chore(deps): bump agentfield floor to 0.1.82 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Picks up the polling-task pause-aware overdue-check fix shipped in agentfield v0.1.82 (Agent-Field/agentfield#564). v0.1.81 made the ``wait_for_result`` loop pause-aware, but missed the second wallclock overdue check inside ``_poll_active_executions`` — so a parent waiting on a child sitting in ``waiting`` for hours still got flipped to TIMEOUT at exactly the wallclock budget. v0.1.82 attaches the parent PauseClock to the awaited ExecutionState so both the wait loop and the polling task read paused-time from the same source. Bumping the floor (rather than relying on the existing constraint) so Docker layer caching does not restore the old layer with v0.1.81. Co-Authored-By: Claude Opus 4.7 (1M context) --- pyproject.toml | 2 +- requirements-docker.txt | 2 +- requirements.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index dbf9fae..08e26a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Autonomous SWE agent node for AgentField" requires-python = ">=3.12" dependencies = [ - "agentfield>=0.1.81", + "agentfield>=0.1.82", "pydantic>=2.0", # Compatibility pin: newer SDK builds have surfaced # "Unknown message type: rate_limit_event" during streaming. diff --git a/requirements-docker.txt b/requirements-docker.txt index d98f9aa..0c62785 100644 --- a/requirements-docker.txt +++ b/requirements-docker.txt @@ -2,7 +2,7 @@ # # Same runtime dependencies as requirements.txt. -agentfield>=0.1.81 +agentfield>=0.1.82 pydantic>=2.0 claude-agent-sdk==0.1.20 hax-sdk>=0.2.0 diff --git a/requirements.txt b/requirements.txt index 4b9a5b3..96b83bd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ # # Install: python -m pip install -r requirements.txt -agentfield>=0.1.81 +agentfield>=0.1.82 pydantic>=2.0 claude-agent-sdk==0.1.20 hax-sdk>=0.2.0