chore: bump CLI versions — Claude 2.1.207, Copilot 1.0.70, SDK 1.0.6, Codex 0.144.1, Pi 0.80.6, Playwright MCP 0.0.78#44919
Conversation
…Codex 0.144.1, Pi 0.80.6, Playwright MCP 0.0.78) Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
|
✅ Design Decision Gate 🏗️ completed the design decision gate check. No ADR enforcement needed: PR #44919 does not have the 'implementation' label and has ≤100 new lines of code in business logic directories (54 additions detected). |
|
✅ PR Code Quality Reviewer completed the code quality review. |
|
✅ Test Quality Sentinel completed test quality analysis. No test files were added or modified in this PR. Test Quality Sentinel skipped. This PR consists entirely of workflow lock file version updates (CLI versions: Claude 2.1.207, Copilot 1.0.70, SDK 1.0.6, Codex 0.144.1, Pi 0.80.6, Playwright MCP 0.0.78). |
|
🧠 Matt Pocock Skills Reviewer has completed the skills-based review. ✅ |
There was a problem hiding this comment.
Pull request overview
Updates default agent CLI/SDK versions and regenerates compiler outputs to propagate the new pins.
Changes:
- Bumps six version constants.
- Refreshes workflow lock files and WASM golden fixtures.
- Changes the generated auto-upgrade schedule.
Show a summary per file
| File | Description |
|---|---|
pkg/constants/version_constants.go |
Updates default version pins. |
pkg/workflow/testdata/TestWasmGolden_CompileFixtures/with-imports.golden |
Refreshes Copilot output. |
pkg/workflow/testdata/TestWasmGolden_CompileFixtures/smoke-copilot.golden |
Refreshes Copilot output. |
pkg/workflow/testdata/TestWasmGolden_CompileFixtures/playwright-cli-mode.golden |
Refreshes Copilot output. |
pkg/workflow/testdata/TestWasmGolden_CompileFixtures/basic-copilot.golden |
Refreshes Copilot output. |
pkg/workflow/testdata/TestWasmGolden_AllEngines/pi.golden |
Refreshes Pi output. |
pkg/workflow/testdata/TestWasmGolden_AllEngines/copilot.golden |
Refreshes Copilot output. |
pkg/workflow/testdata/TestWasmGolden_AllEngines/codex.golden |
Refreshes Codex output. |
pkg/workflow/testdata/TestWasmGolden_AllEngines/claude.golden |
Refreshes Claude output. |
.github/workflows/*.lock.yml |
Regenerates workflow pins and metadata. |
.github/workflows/agentic-auto-upgrade.yml |
Reschedules weekly auto-upgrade. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 126/262 changed files
- Comments generated: 3
- Review effort level: Medium
| @@ -145,7 +145,7 @@ const DefaultMCPGatewayVersion Version = "v0.4.1" | |||
| const MCPGIntegrityReactionsMinVersion Version = "v0.2.18" | |||
|
|
|||
| // DefaultPlaywrightMCPVersion is the default version of the @playwright/mcp package | |||
| const DefaultPlaywrightMCPVersion Version = "0.0.77" | |||
| const DefaultPlaywrightMCPVersion Version = "0.0.78" | |||
| @@ -32,20 +32,20 @@ func (v Version) IsValid() bool { | |||
| type ModelName string | |||
|
|
|||
| // DefaultClaudeCodeVersion is the default version of the Claude Code CLI. | |||
| const DefaultClaudeCodeVersion Version = "2.1.201" | |||
| const DefaultClaudeCodeVersion Version = "2.1.207" | |||
| on: | ||
| schedule: | ||
| - cron: "21 3 * * 5" # Weekly (auto-upgrade) | ||
| - cron: "11 4 * * 6" # Weekly (auto-upgrade) |
There was a problem hiding this comment.
Routine CLI version bump PR. All changes are consistent version string updates across generated lock files — no logic, security, or correctness issues found.
🧵 Reviewed using Impeccable skills by Impeccable Skills Reviewer · 12.7 AIC · ⌖ 4.24 AIC · ⊞ 4.9K
There was a problem hiding this comment.
Skills-Based Review 🧠
Applied /codebase-design — this is a mechanical version bump; all changes are consistent with the project's auto-upgrade pattern.
📋 Review Summary
What Changed
- 262
.lock.ymlfiles (auto-generated) — version strings updated consistently acrossengine_versions,GH_AW_INFO_VERSION,GH_AW_INFO_AGENT_VERSION, andnpm installsteps. .github/workflows/agentic-auto-upgrade.yml— cron shifted from Friday 03:21 UTC (21 3 * * 5) to Saturday 04:11 UTC (11 4 * * 6). Intentional schedule staggering.
Positive Highlights
- ✅ All version strings are internally consistent across metadata comments, env vars, and install steps.
- ✅ Lock files carry digest-pinned container images — supply-chain hygiene maintained.
- ✅ PR description clearly documents every constant change with a before/after table.
No actionable issues found.
🧠 Reviewed using Matt Pocock's skills by Matt Pocock Skills Reviewer · 26.6 AIC · ⌖ 4.35 AIC · ⊞ 6.6K
Comment /matt to run again
There was a problem hiding this comment.
Review: REQUEST_CHANGES
Three issues need resolution before merge:
-
DefaultPlaywrightMCPVersionbump is a no-op — the constant has no production references. Both Playwright MCP renderers (mcp_renderer_builtin.goandmcp_config_playwright_renderer.go) use a hardcoded, unversionedmcr.microsoft.com/playwright/mcpimage string. This PR claims to bump Playwright MCP to 0.0.78 but nothing changes at runtime. Wire the constant into the actual image/install path or remove it from the claimed changes. -
Missing changeset — comparable version-bump PRs consistently include a
.changeset/patch-*.mdentry. Without one, release tooling will not record these bumps. -
Unexplained cron drift in
agentic-auto-upgrade.yml— the schedule shifted from Friday 03:21 UTC to Saturday 04:11 UTC, a material operational change not described or justified in the PR body.
🔎 Code quality review by PR Code Quality Reviewer · 30.5 AIC · ⌖ 4.34 AIC · ⊞ 5.4K
Comment /review to run again
|
@copilot please run the Unresolved review threads (newest first):
Run: https://github.com/github/gh-aw/actions/runs/29149234268
|
Advances six agentic CLI/MCP tool versions as tracked in the 2026-07-11 version checker run. Codex crosses two minor releases (0.142.5 → 0.144.1); all others are patch-level.
Changes
pkg/constants/version_constants.go— updated default version constants:DefaultClaudeCodeVersion2.1.2012.1.207DefaultCopilotVersion1.0.681.0.70DefaultCopilotSDKVersion1.0.51.0.6DefaultCodexVersion0.142.50.144.1DefaultPiVersion0.80.30.80.6DefaultPlaywrightMCPVersion0.0.770.0.78.github/workflows/*.lock.yml— recompiled all 256 workflows (0 errors) to embed updated version strings.pkg/workflow/testdata/— regeneratedTestWasmGolden_CompileFixturesandTestWasmGolden_AllEnginesgolden fixtures to match new version strings in compiler output.Held
DefaultPlaywrightCLIVersionremains at0.1.15—0.1.17is inside the 3-day npm cooldown window; will pick up after 2026-07-12.