From 536e5f80cd679323a3be6a22fdf449f0ca24c5f6 Mon Sep 17 00:00:00 2001 From: chaodu-agent Date: Thu, 16 Apr 2026 20:46:39 +0000 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20bump=20CLI=20versions=20=E2=80=94=20?= =?UTF-8?q?codex=200.121.0,=20gemini=200.38.1,=20copilot=201.0.30?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - @openai/codex: 0.120.0 → 0.121.0 (no CLI-specific regressions) - @google/gemini-cli: 0.37.2 → 0.38.1 (clean, no open bugs) - @github/copilot: 1.0.25 → 1.0.30 (no public issue tracker, low risk) NOT updated (intentionally): - kiro-cli: stays at 2.0.0 (already latest) - @anthropic-ai/claude-code: stays at 2.1.104 (2.1.112 has ENOENT race condition on parallel sessions — anthropics/claude-code#49512, labeled regression on Linux; 2.1.111 has model preference bug anthropics/claude-code#49503) --- Dockerfile.codex | 2 +- Dockerfile.copilot | 2 +- Dockerfile.gemini | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.codex b/Dockerfile.codex index a2de9f3e..24d23f5d 100644 --- a/Dockerfile.codex +++ b/Dockerfile.codex @@ -11,7 +11,7 @@ FROM node:22-bookworm-slim RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl procps && rm -rf /var/lib/apt/lists/* # Pre-install codex-acp and codex CLI globally -ARG CODEX_VERSION=0.120.0 +ARG CODEX_VERSION=0.121.0 RUN npm install -g @zed-industries/codex-acp@0.9.5 @openai/codex@${CODEX_VERSION} --retry 3 # Install gh CLI diff --git a/Dockerfile.copilot b/Dockerfile.copilot index d1033ef1..bdb319c5 100644 --- a/Dockerfile.copilot +++ b/Dockerfile.copilot @@ -11,7 +11,7 @@ FROM node:22-bookworm-slim RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl procps && rm -rf /var/lib/apt/lists/* # Install GitHub Copilot CLI via npm (pinned version) -ARG COPILOT_VERSION=1.0.25 +ARG COPILOT_VERSION=1.0.30 RUN npm install -g @github/copilot@${COPILOT_VERSION} --retry 3 # Install gh CLI (for auth and token management) diff --git a/Dockerfile.gemini b/Dockerfile.gemini index 4352f49a..01ba7dfd 100644 --- a/Dockerfile.gemini +++ b/Dockerfile.gemini @@ -11,7 +11,7 @@ FROM node:22-bookworm-slim RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl procps && rm -rf /var/lib/apt/lists/* # Install Gemini CLI (native ACP support via --acp) -ARG GEMINI_CLI_VERSION=0.37.2 +ARG GEMINI_CLI_VERSION=0.38.1 RUN npm install -g @google/gemini-cli@${GEMINI_CLI_VERSION} --retry 3 # Install gh CLI From 4716d0f1201c4d9d7bd57a1d9899efa968b76aef Mon Sep 17 00:00:00 2001 From: chaodu-agent Date: Thu, 16 Apr 2026 21:04:07 +0000 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20bump=20cursor=20agent=20CLI=202026.0?= =?UTF-8?q?4.14-ee4b43a=20=E2=86=92=202026.04.15-dccdccd?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Version sourced from official install script (curl https://cursor.com/install). opencode-ai already at latest (1.4.6), no change needed. --- Dockerfile.cursor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.cursor b/Dockerfile.cursor index 8d384dd7..ebc30dde 100644 --- a/Dockerfile.cursor +++ b/Dockerfile.cursor @@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates # URL scheme scraped from Cursor's official downloads page — no apt/yum package exists. # If Cursor changes this pattern, the build fails with curl 404. Monitor # https://cursor.com/cli or https://docs.cursor.com/cli for version/URL updates. -ARG CURSOR_VERSION=2026.04.14-ee4b43a +ARG CURSOR_VERSION=2026.04.15-dccdccd RUN ARCH=$(dpkg --print-architecture) && \ if [ "$ARCH" = "arm64" ]; then ARCH=arm64; else ARCH=x64; fi && \ curl -fSL "https://downloads.cursor.com/lab/${CURSOR_VERSION}/linux/${ARCH}/agent-cli-package.tar.gz" \