Skip to content

Update CLI versions: Claude Code 2.0.50, Codex 0.63.0#4567

Merged
pelikhan merged 2 commits into
mainfrom
copilot/update-cli-versions-2-0-50
Nov 22, 2025
Merged

Update CLI versions: Claude Code 2.0.50, Codex 0.63.0#4567
pelikhan merged 2 commits into
mainfrom
copilot/update-cli-versions-2-0-50

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Nov 22, 2025

Updates default CLI versions for Claude Code (2.0.47 → 2.0.50) and OpenAI Codex (0.60.1 → 0.63.0). Codex 0.63.0 fixes web search "Invalid value: 'other'." errors.

Changes

  • Constants: Updated DefaultClaudeCodeVersion and DefaultCodexVersion in pkg/constants/constants.go
  • Tests: Updated version expectations in pkg/constants/constants_test.go
  • Workflows: Regenerated 34 .lock.yml files via make recompile

Example

-const DefaultClaudeCodeVersion Version = "2.0.47"
+const DefaultClaudeCodeVersion Version = "2.0.50"

-const DefaultCodexVersion Version = "0.60.1"
+const DefaultCodexVersion Version = "0.63.0"

Workflows now install updated versions:

-run: npm install -g @anthropic-ai/claude-code@2.0.47
+run: npm install -g @anthropic-ai/claude-code@2.0.50

-run: npm install -g @openai/codex@0.60.1
+run: npm install -g @openai/codex@0.63.0
Original prompt

This section details on the original issue you should resolve

<issue_title>[ca] CLI Version Updates: Claude Code 2.0.50, OpenAI Codex 0.63.0</issue_title>
<issue_description># CLI Version Updates Detected - Nov 22, 2025

Summary

Two CLI tools have new versions available:

  • Claude Code: 2.0.49 → 2.0.50
  • OpenAI Codex: 0.61.0 → 0.63.0 (skipped 0.62.0)

Update: Claude Code

Version Information

  • Previous: 2.0.49 → New: 2.0.50
  • Published: Nov 22, 2025 at 00:54 UTC
  • Timeline: ~1.7 hours after 2.0.49 (Nov 21, 2025 at 23:13 UTC)
  • Release Frequency: Rapid minor updates (patch-level)

Changes Analysis

Breaking Changes: None

New Features: Unknown - no public release notes available

Bug Fixes: Unknown - no public release notes available

Security: None reported

Performance: Unknown

CLI Discovery: None detected - help output identical to 2.0.49 (51 lines)

Impact Assessment

  • Risk: Low
  • Affected Features: Unknown (no changelog available)
  • Migration: No - drop-in replacement

Notes

  • Claude Code does not have a public GitHub repository
  • No release notes available on NPM
  • Help output shows no changes from 2.0.49
  • Likely contains internal bug fixes or performance improvements
  • Very rapid release cycle suggests active development

Package Links


Update: OpenAI Codex

Version Information

  • Previous: 0.61.0 → New: 0.63.0
  • Skipped Version: 0.62.0 (only alpha releases, never went stable)
  • Published: Nov 21, 2025 at 18:25 UTC
  • Timeline: ~26 hours after 0.61.0 (Nov 20, 2025 at 16:14 UTC)
  • Release Frequency: Rapid minor updates

Changes Analysis

Breaking Changes: None

New Features: None

Bug Fixes:

  • Fixes bug where enabling web search can lead to "Invalid value: 'other'." errors

Security: None reported

Performance: None reported

CLI Discovery: None detected - help output identical to 0.61.0 (96 lines)

Impact Assessment

  • Risk: Low
  • Affected Features: Web search functionality
  • Migration: No - drop-in replacement

Release Highlights (from GitHub)

From the 0.63.0 release notes:

Bug Fixes

  • Fixes the bug where enabling web search can lead to Invalid value: 'other'. errors

Merged PRs (from GitHub)

Note on Version 0.62.0

Version 0.62.0 was never released as a stable version. The version progression was:

  • 0.61.0 (stable, Nov 20)
  • 0.62.0-alpha.1, 0.62.0-alpha.2, 0.62.0-alpha.3 (pre-releases, Nov 20-21)
  • 0.63.0 (stable, Nov 21)

This suggests the 0.62.0 work was merged into 0.63.0 instead of being released separately.

Package Links


No Updates Required

The following tools are current:

  • GitHub Copilot CLI: 0.0.362 (last updated Nov 21)
  • Playwright MCP: 0.0.48 (last updated Nov 19)
  • GitHub MCP Server: v0.21.0 (last updated Nov 17)
  • Playwright Browser: v1.56.1 (last updated Oct 17)

Recommendation

Safe to update both packages

  • Both updates appear to be low-risk bug fix releases
  • No breaking changes detected
  • No CLI interface changes
  • Drop-in replacements for existing versions

Implementation Notes

Update pkg/constants/constants.go:

ClaudeCodeVersion = "2.0.50"
CodexVersion = "0.63.0"

Then run make recompile to regenerate workflow files.

AI generated by CLI Version Checker</issue_description>

Comments on the Issue (you are @copilot in this section)


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot AI changed the title [WIP] Update CLI tools to version 2.0.50 and 0.63.0 Update CLI versions: Claude Code 2.0.50, Codex 0.63.0 Nov 22, 2025
Copilot AI requested a review from pelikhan November 22, 2025 19:35
@pelikhan pelikhan added the smoke label Nov 22, 2025
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Nov 22, 2025

✅ Agentic Changeset Generator completed successfully.

@pelikhan pelikhan marked this pull request as ready for review November 22, 2025 20:20
Copilot AI review requested due to automatic review settings November 22, 2025 20:20
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR updates the default CLI versions for two AI engine tools used in agentic workflows: Claude Code (2.0.47 → 2.0.50) and OpenAI Codex (0.60.1 → 0.63.0). The Codex update addresses a bug causing "Invalid value: 'other'." errors when web search is enabled. Changes include constant updates and regeneration of 34 workflow lock files.

  • Updated version constants in pkg/constants/constants.go
  • Updated test expectations in pkg/constants/constants_test.go
  • Regenerated all workflow lock files via make recompile to propagate version changes

Reviewed changes

Copilot reviewed 36 out of 36 changed files in this pull request and generated no comments.

File Description
pkg/constants/constants.go Updated DefaultClaudeCodeVersion to 2.0.50 and DefaultCodexVersion to 0.63.0
pkg/constants/constants_test.go Updated test expectations to match new version constants
.github/workflows/*.lock.yml (34 files) Regenerated workflow lock files with updated npm install commands and agent_version metadata for Claude Code and Codex workflows

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@pelikhan pelikhan merged commit 3bb0df3 into main Nov 22, 2025
129 checks passed
@pelikhan pelikhan deleted the copilot/update-cli-versions-2-0-50 branch November 22, 2025 20:37
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 Code 2.0.50, OpenAI Codex 0.63.0

3 participants