From 183e2ff7e82f8473a8878c984560e0609bea10c1 Mon Sep 17 00:00:00 2001 From: chaodu-agent Date: Wed, 29 Apr 2026 23:31:02 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20bump=20CLI=20versions=20=E2=80=94=20gemi?= =?UTF-8?q?ni=200.40.0,=20copilot=201.0.39?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Only safe-to-upgrade CLIs bumped. Others held due to regressions: - kiro-cli 2.2.0: no published changelog yet - claude-code 2.1.123: Linux x86-64 startup crash (#54632) - cursor 2026.04.29: released today, unresolved CPU 100% regression - opencode-ai 1.14.29: Bedrock auth regression (#24977), ACP breakage (#24846) - codex 0.125.0: already current --- Dockerfile.copilot | 2 +- Dockerfile.gemini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.copilot b/Dockerfile.copilot index 3065acf9..d770c802 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 ripgrep tini && rm -rf /var/lib/apt/lists/* # Install GitHub Copilot CLI via npm (pinned version) -ARG COPILOT_VERSION=1.0.36 +ARG COPILOT_VERSION=1.0.39 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 546c129a..6c4f3068 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 ripgrep tini && rm -rf /var/lib/apt/lists/* # Install Gemini CLI (native ACP support via --acp) -ARG GEMINI_CLI_VERSION=0.39.1 +ARG GEMINI_CLI_VERSION=0.40.0 RUN npm install -g @google/gemini-cli@${GEMINI_CLI_VERSION} --retry 3 # Install gh CLI