chore: bump all coding CLI versions to latest#888
Merged
Conversation
- kiro-cli: 2.2.0 → 2.4.0 - claude-code: 2.1.124 → 2.1.146 (+ add bubblewrap/socat for sandbox) - codex: 0.128.0 → 0.133.0 - copilot: 1.0.40 → 1.0.51 - cursor: 2026.04.30-4edb302 → 2026.05.20-2b5dd59 - gemini-cli: 0.40.1 → 0.42.0 - opencode-ai: 1.14.31 → 1.15.7 Claude Code v2.1.144+ requires bubblewrap and socat for its sandbox on Linux. Without them the CLI silently exits (anthropics/claude-code#61094). Added both packages to Dockerfile.claude apt-get layer.
|
All PRs must reference a prior Discord discussion to ensure community alignment before implementation. Please edit the PR description to include a link like: This PR will be automatically closed in 3 days if the link is not added. |
thepagent
approved these changes
May 21, 2026
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
Bump all 7 coding CLI versions to their latest stable releases.
Why bubblewrap and socat in Dockerfile.claude?
Claude Code v2.1.144+ introduced mandatory sandbox mode for bash tool calls on Linux:
bwrap): Lightweight Linux namespace sandbox. Claude Code uses it to isolate every bash command execution into a restricted namespace (filesystem, PID, network).The problem: If these binaries are missing, Claude Code v2.1.144+ silently exits on launch with no error message (anthropics/claude-code#61094). There is no fallback to unsandboxed mode.
Since openab already runs inside Docker containers, this is effectively sandbox-inside-container — redundant but harmless. Both packages add ~400KB total to the image layer. The alternative (pinning to 2.1.143) would miss 22 patch releases of fixes and improvements.
Why not Dockerfile.codex too?
Codex CLI also uses bubblewrap for its Linux sandbox, but bundles its own
bwrapbinary. If the systembwrapis not found on PATH, Codex prints a warning and falls back to its bundled copy — it does NOT crash. No additional system packages needed for Codex.Regression Check
Reviewed open issues on all public trackers. Key findings:
bubblewrapandsocatare missing. Mitigated by adding both packages to Dockerfile.claude.Testing