Skip to content

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

Closed
pelikhan with Copilot wants to merge 3 commits into
mainfrom
copilot/ca-cli-version-updates
Closed

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
pelikhan with Copilot wants to merge 3 commits into
mainfrom
copilot/ca-cli-version-updates

Conversation

Copilot AI commented Jul 11, 2026

Copy link
Copy Markdown
Contributor

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:

    Constant Old New
    DefaultClaudeCodeVersion 2.1.201 2.1.207
    DefaultCopilotVersion 1.0.68 1.0.70
    DefaultCopilotSDKVersion 1.0.5 1.0.6
    DefaultCodexVersion 0.142.5 0.144.1
    DefaultPiVersion 0.80.3 0.80.6
    DefaultPlaywrightMCPVersion 0.0.77 0.0.78
  • .github/workflows/*.lock.yml — recompiled all 256 workflows (0 errors) to embed updated version strings.

  • pkg/workflow/testdata/ — regenerated TestWasmGolden_CompileFixtures and TestWasmGolden_AllEngines golden fixtures to match new version strings in compiler output.

Held

DefaultPlaywrightCLIVersion remains at 0.1.150.1.17 is inside the 3-day npm cooldown window; will pick up after 2026-07-12.

Copilot AI and others added 2 commits July 11, 2026 08:53
…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>
Copilot AI changed the title [WIP] Update CLI versions for Claude, Copilot, and Codex 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 Jul 11, 2026
Copilot AI requested a review from pelikhan July 11, 2026 09:07
@pelikhan
pelikhan marked this pull request as ready for review July 11, 2026 09:08
Copilot AI review requested due to automatic review settings July 11, 2026 09:08
@pelikhan pelikhan added the smoke label Jul 11, 2026
@github-actions

github-actions Bot commented Jul 11, 2026

Copy link
Copy Markdown
Contributor

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).

@github-actions

github-actions Bot commented Jul 11, 2026

Copy link
Copy Markdown
Contributor

PR Code Quality Reviewer completed the code quality review.

@github-actions

github-actions Bot commented Jul 11, 2026

Copy link
Copy Markdown
Contributor

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).

@github-actions

github-actions Bot commented Jul 11, 2026

Copy link
Copy Markdown
Contributor

🧠 Matt Pocock Skills Reviewer has completed the skills-based review. ✅

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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)
@github-actions github-actions Bot mentioned this pull request Jul 11, 2026

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.yml files (auto-generated) — version strings updated consistently across engine_versions, GH_AW_INFO_VERSION, GH_AW_INFO_AGENT_VERSION, and npm install steps.
  • .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

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review: REQUEST_CHANGES

Three issues need resolution before merge:

  1. DefaultPlaywrightMCPVersion bump is a no-op — the constant has no production references. Both Playwright MCP renderers (mcp_renderer_builtin.go and mcp_config_playwright_renderer.go) use a hardcoded, unversioned mcr.microsoft.com/playwright/mcp image 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.

  2. Missing changeset — comparable version-bump PRs consistently include a .changeset/patch-*.md entry. Without one, release tooling will not record these bumps.

  3. 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

@gh-aw-bot

Copy link
Copy Markdown
Collaborator

@copilot please run the pr-finisher skill, address the unresolved review feedback below, and rerun checks once the branch is ready.

Unresolved review threads (newest first):

Run: https://github.com/github/gh-aw/actions/runs/29149234268

Generated by 👨‍🍳 PR Sous Chef · 6.37 AIC · ⌖ 6.2 AIC · ⊞ 4.2K ·
Comment /souschef to run again

@github-actions
github-actions Bot deleted the copilot/ca-cli-version-updates branch July 19, 2026 03:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[ca] CLI Version Updates: Claude 2.1.207, Copilot 1.0.70, Codex 0.144.1, Pi 0.80.6, Playwright MCP 0.0.78 (2026-07-11)

4 participants