From 482d86b66d380a187163541ee0f21b9734587523 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) --- Dockerfile | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c81e8cd..dc2446a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ COPY pyproject.toml README.md ./ COPY src/ src/ RUN pip install --no-cache-dir --prefix=/install \ - "agentfield>=0.1.81" \ + "agentfield>=0.1.82" \ "pydantic>=2.0" \ "httpx>=0.27" \ "python-dotenv>=1.0" \ diff --git a/pyproject.toml b/pyproject.toml index 279635b..9547c11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ license = "Apache-2.0" requires-python = ">=3.11" authors = [{ name = "AgentField", email = "hello@agentfield.dev" }] dependencies = [ - "agentfield>=0.1.81", + "agentfield>=0.1.82", "pydantic>=2.0", "httpx>=0.27", "pyyaml>=6.0",