You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All three are constant-only edits in pkg/constants/version_constants.go. CLI --help output is byte-identical between old and new versions for Claude Code and Codex (no command/flag changes).
Note
This workflow can only emit issues (safe-outputs = create_issue). The constant edits and make recompile are documented below as migration steps for a maintainer to apply — lock files must not be committed by this workflow.
Risk: Low. No CLI flag changes; gh-aw invokes Codex non-interactively. Changes are largely TUI/desktop/plugin features irrelevant to headless workflow runs.
Risk: Low. The gh-aw GitHub MCP server is read-only; new tools are additive (project/iteration writes, include_patch, confidence) and do not remove or change existing read tool signatures. The get_review_comments thread-id restoration is a positive fix for review-reading workflows.
Migration Guide
Apply these constant edits in pkg/constants/version_constants.go:
constDefaultClaudeCodeVersionVersion="2.1.169"// was 2.1.168constDefaultCodexVersionVersion="0.138.0"// was 0.137.0constDefaultGitHubMCPServerVersionVersion="v1.2.0"// was v1.1.2
Then regenerate lock files (GitHub MCP is a Docker-pinned image, so a double recompile is recommended to refresh container SHA pins):
make build && make recompile && make recompile
git status # verify *.lock.yml changes; do NOT commit pkg/workflow/js/*.js
Recommendations
All three updates are Low risk and safe to batch in a single PR.
Priority: routine. No security advisories surfaced in the release notes.
Testing: a standard make recompile + existing CI is sufficient; no flag/behavior migration required.
Summary
Three monitored CLI/MCP tools have newer releases available (all published 2026-06-08):
No changes for: Copilot CLI (1.0.60), Copilot SDK (1.0.0), MCP Gateway (v0.3.25), Playwright MCP (0.0.75), Playwright CLI (0.1.13), Playwright Browser (v1.60.0).
All three are constant-only edits in
pkg/constants/version_constants.go. CLI--helpoutput is byte-identical between old and new versions for Claude Code and Codex (no command/flag changes).Note
This workflow can only emit issues (safe-outputs =
create_issue). The constant edits andmake recompileare documented below as migration steps for a maintainer to apply — lock files must not be committed by this workflow.Update Claude Code
claude --helpoutput is identical to 2.1.168 — no new commands or flags. Patch release.Update OpenAI Codex
codex --helpoutput identical to 0.137.0 — no top-level flag changes.Key Features
/appcommand hands off the CLI thread into Codex Desktop on macOS and native Windows; Windows workspace launches can open directly into Desktop (feat(tui): add /app desktop handoff openai/codex#25638, Open Windows app workspaces via deep link openai/codex#26500)Altbindings; model-defined effort levels flow through in model-advertised order (fix(tui): add reasoning effort fallback shortcuts openai/codex#25623, [codex] Support model-defined reasoning efforts openai/codex#26444, [codex] Use model-advertised reasoning effort order openai/codex#26446)--jsonfor add/remove and marketplace commands; plugin list JSON includes marketplace source; plugin detail exposes default prompts, remote MCP servers, and unavailable app templates (Add JSON output for plugin subcommands openai/codex#26631, Expose configured marketplace source in plugin list JSON openai/codex#26417, Preserve remote plugin default prompts openai/codex#25887, fix(app-server): expose remote MCP servers in plugin read openai/codex#26453, [codex] Expose unavailable app templates in plugin detail openai/codex#26317)View Full Changelog (Codex 0.138.0)
Bug Fixes
/goal editno longer submits early; idle auto-turns stay out of Plan mode; goals stop auto-continuing after terminal turn failures (Fix multiline paste in /goal edit openai/codex#26047, Gate automatic idle turns in Plan mode openai/codex#26147, Block active goals after terminal turn errors openai/codex#26690)/usr/bin/bashfallback, shorter Linux proxy socket paths, pre-refresh of expired OAuth-backed MCP credentials ([codex] Add /usr/bin/bash shell fallback openai/codex#26538, [codex] Fix long proxy socket paths openai/codex#26553, fix(rmcp): refresh expired OAuth tokens before startup openai/codex#26482)AGENTS.mdloading for remote and symlinked workspaces (Route AGENTS.md loading through environment filesystems openai/codex#26205, [codex] Preserve logical paths during AGENTS.md discovery openai/codex#26465)Performance / Chores
resume --lastuses the state DB first for faster restore on large histories (Use state DB first forresume --lastopenai/codex#26462)Full Changelog: openai/codex@rust-v0.137.0...rust-v0.138.0
Impact Assessment
Update GitHub MCP Server
ghcr.io/github/github-mcp-server:v1.2.0Key Features
create_projectandcreate_iteration_fieldmethods inprojects_write(feat: add create_project and create_iteration_field methods to projects_write github-mcp-server#2232)include_patchparameter for theget_committool (feat: add include_patch parameter to get_commit tool github-mcp-server#1924)confidenceparameter on issue mutation tools (Add confidence parameter to issue mutation MCP tools github-mcp-server#2605)View Full Changelog (GitHub MCP Server v1.2.0)
Bug Fixes
get_review_commentsresponse (fix: restore thread id in get_review_comments response github-mcp-server#2245)assigneesarray now clears assignees (fix: Empty assignees array should clear assignees github-mcp-server#2600)Docs
Full Changelog: github/github-mcp-server@v1.1.2...v1.2.0
Impact Assessment
include_patch,confidence) and do not remove or change existing read tool signatures. Theget_review_commentsthread-id restoration is a positive fix for review-reading workflows.Migration Guide
Apply these constant edits in
pkg/constants/version_constants.go:Then regenerate lock files (GitHub MCP is a Docker-pinned image, so a double recompile is recommended to refresh container SHA pins):
Recommendations
make recompile+ existing CI is sufficient; no flag/behavior migration required.References: