From 91698d4c0e0a8c74941540642a141156b1349e92 Mon Sep 17 00:00:00 2001 From: Abir Abbas Date: Sat, 9 May 2026 12:08:44 -0400 Subject: [PATCH] chore(deps): bump agentfield floor to 0.1.81 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Picks up the poll-driven cross-reasoner pause propagation fix shipped in agentfield v0.1.81 (Agent-Field/agentfield#562). v0.1.80 attempted the same fix via an SSE listener that was gated behind ``enable_event_stream`` (default off) and never fired in production — observed on a long implement_from_issue run that timed out at exactly the 7200s wallclock budget despite a long hax-sdk approval gap. Bumping the constraint string is required to bust the Docker pip-install layer cache; otherwise the cached layer would keep restoring 0.1.80 even once 0.1.81 is on PyPI. 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 e927965..dbf9fae 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.80", + "agentfield>=0.1.81", "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 c6f6fb8..d98f9aa 100644 --- a/requirements-docker.txt +++ b/requirements-docker.txt @@ -2,7 +2,7 @@ # # Same runtime dependencies as requirements.txt. -agentfield>=0.1.80 +agentfield>=0.1.81 pydantic>=2.0 claude-agent-sdk==0.1.20 hax-sdk>=0.2.0 diff --git a/requirements.txt b/requirements.txt index 8c9199a..4b9a5b3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ # # Install: python -m pip install -r requirements.txt -agentfield>=0.1.80 +agentfield>=0.1.81 pydantic>=2.0 claude-agent-sdk==0.1.20 hax-sdk>=0.2.0