From b5037374929bf589031e35e1f85b2df8f4342345 Mon Sep 17 00:00:00 2001 From: JangHaryeom <101104772+CocoRoF@users.noreply.github.com> Date: Tue, 19 May 2026 11:48:41 +0900 Subject: [PATCH] =?UTF-8?q?deps:=20bump=20geny-executor=20pin=202.0.2=20?= =?UTF-8?q?=E2=86=92=202.0.3=20(message-form=20parser=20+=20auth=5Ffailed)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2.0.3 fixes two follow-on bugs the user hit on prod after 2.0.2: 1. Claude Code 2.x emits the full assistant message in one ``assistant.message.content[]`` envelope (not delta form) by default. The 2.0.2 accumulator only handled the delta form so sessions came back with ``output_len=0`` despite the pipeline reporting SUCCESS. 2. ``error="authentication_failed"`` envelopes were treated as normal assistant output. The "Not logged in · Please run /login" placeholder was returned as the agent's reply. See CocoRoF/geny-executor#205 for the full root-cause + fix. Co-Authored-By: Claude Opus 4.7 (1M context) --- backend/pyproject.toml | 2 +- backend/requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 716393ee..f09dd7ba 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -41,7 +41,7 @@ dependencies = [ # provider/parallel/max_concurrent for multi-provider sub-agents. # Earlier 1.21.0 surfaces (bounded root _index.json, provider-driven # Stage 2 / Stage 18, etc.) all retained. - "geny-executor>=2.0.2,<3.0.0", + "geny-executor>=2.0.3,<3.0.0", # MCP (Model Context Protocol) "mcp>=1.0.0", # Auth diff --git a/backend/requirements.txt b/backend/requirements.txt index 6fdb45b1..ac182ae7 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -25,7 +25,7 @@ playwright>=1.49.0 # Must match the version pin in backend/pyproject.toml — out-of-sync # pins are what caused the prod Docker build to install 1.21.0 and # blow up on `from geny_executor import CredentialBundle`. -geny-executor>=2.0.2,<3.0.0 +geny-executor>=2.0.3,<3.0.0 # MCP (Model Context Protocol) mcp>=1.0.0 # TTS (Text-to-Speech)