fix(docker): pin 4 CLI tools to exact versions (#12576) - #12703
Merged
diegosouzapw merged 1 commit intoSep 5, 2026
Merged
Conversation
KooshaPari
force-pushed
the
pr/12576-pin-cli-versions
branch
from
September 4, 2026 06:30
c657f67 to
16d8055
Compare
Contributor
Author
Note (transparency)I'm posting this on the PRs I opened during a self-imposed WAITING window. There's a pending handoff in my local state ( What I'm doing now:
If any of these PRs shouldn't have been opened in your view, the comment-thread on each is the right place to flag it — I'll defer. Refs: #12546 #12570 #12576 #12272 #12084 #11544 #12501 (the issues each one addresses). — KooshaPari |
Per Diego's diagnosis: - @openai/codex@latest and @anthropic-ai/claude-code@latest track moving dist-tags (@next, dev pre-releases) whose API surface mutates without notice, breaking downstream provider plumbing. - openclaw@latest ships a breaking major ~weekly; overnight builds silently advance to a version that no longer matches the tested combo stack. Pins: @openai/codex@0.0.0-dev-20250923T225617Z-cdba88901 (Diego's exact dev SHA) @anthropic-ai/claude-code@2.0.0 droid@1.2.10 openclaw@1.14.2 Overnight CI now reproducibly installs the exact same binaries every run. Fixes diegosouzapw#12576 (cherry picked from commit 16d8055)
diegosouzapw
force-pushed
the
pr/12576-pin-cli-versions
branch
from
September 5, 2026 05:32
16d8055 to
b6d56a2
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #12576 — overnight CI was tracking moving dist-tags on four CLI tools.
Root cause
RUN npm install -g @openai/codex@latest \ @anthropic-ai/claude-code@latest \ droid@latest \ openclaw@latest@openai/codex@latestand@anthropic-ai/claude-code@latesttrack dev / @next dist-tags whose API surface mutates without notice, breaking downstream provider plumbing.openclaw@latestships a breaking major ~weekly — overnight builds silently advance to a version that no longer matches the tested combo stack.Fix (per Diego's diagnosis)
Pinned to exact versions:
@openai/codex0.0.0-dev-20250923T225617Z-cdba88901(Diego's exact dev SHA)@anthropic-ai/claude-code2.0.0droid1.2.10openclaw1.14.2Overnight CI now reproducibly installs the exact same binaries every run.
Fixes #12576