From ce87bacd877b5123854cd32d27ad93f4c8ec7468 Mon Sep 17 00:00:00 2001 From: Abir Abbas Date: Sun, 10 May 2026 19:54:02 -0400 Subject: [PATCH] chore(deps): bump agentfield floor to 0.1.83 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Picks up the cancellation-skips-sync-fallback fix in agentfield 0.1.83 (Agent-Field/agentfield#566): cancelling a run no longer triggers a silent sync-fallback re-execution of the awaited child. Bumped in both pyproject.toml AND Dockerfile so the Docker layer cache key changes — leaving the Dockerfile pin at 0.1.82 would keep restoring the cached layer and shipping 0.1.82 even after 0.1.83 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 dc2446a..d1f71f1 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.82" \ + "agentfield>=0.1.83" \ "pydantic>=2.0" \ "httpx>=0.27" \ "python-dotenv>=1.0" \ diff --git a/pyproject.toml b/pyproject.toml index 9547c11..c9a0fbe 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.82", + "agentfield>=0.1.83", "pydantic>=2.0", "httpx>=0.27", "pyyaml>=6.0",