From 57678dd0e1156c3e730687f379c337f92d4417e1 Mon Sep 17 00:00:00 2001 From: Abir Abbas Date: Mon, 11 May 2026 11:15:24 -0400 Subject: [PATCH] chore: bump agentfield pin to >=0.1.84 to pick up pause-cascade logs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 0.1.84 adds INFO-level diagnostics on the cross-reasoner pause- cascade path (agentfield#569). The flexible >=0.1.83 constraint on its own won't reinstall the SDK on the next Docker build because the cached `pip install` layer keys off file contents; changing the floor forces re-resolution. Bumped both pyproject.toml AND Dockerfile here since the Dockerfile pins separately. Same playbook as the 0.1.82→0.1.83 round (PR #33 here). 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 d1f71f1..bc54c0d 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.83" \ + "agentfield>=0.1.84" \ "pydantic>=2.0" \ "httpx>=0.27" \ "python-dotenv>=1.0" \ diff --git a/pyproject.toml b/pyproject.toml index c9a0fbe..ce42d3d 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.83", + "agentfield>=0.1.84", "pydantic>=2.0", "httpx>=0.27", "pyyaml>=6.0",