From 86c1dadc838ca55c38e16411ce5a8012bdb1f778 Mon Sep 17 00:00:00 2001 From: Abir Abbas Date: Sat, 9 May 2026 12:08:46 -0400 Subject: [PATCH] chore(deps): bump agentfield floor to 0.1.81 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. 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) --- Dockerfile | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9ec0b78..c81e8cd 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.80" \ + "agentfield>=0.1.81" \ "pydantic>=2.0" \ "httpx>=0.27" \ "python-dotenv>=1.0" \ diff --git a/pyproject.toml b/pyproject.toml index e9ad146..279635b 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.80", + "agentfield>=0.1.81", "pydantic>=2.0", "httpx>=0.27", "pyyaml>=6.0",