Skip to content

Comments

Update Agentic CLI Tools: Claude Code 2.0.25, Copilot CLI 0.0.348, GitHub MCP Server v0.19.1#2096

Closed
Copilot wants to merge 2 commits intomainfrom
copilot/update-agentic-cli-tools
Closed

Update Agentic CLI Tools: Claude Code 2.0.25, Copilot CLI 0.0.348, GitHub MCP Server v0.19.1#2096
Copilot wants to merge 2 commits intomainfrom
copilot/update-agentic-cli-tools

Conversation

Copy link
Contributor

Copilot AI commented Oct 22, 2025

Overview

This PR updates three agentic CLI tools and MCP servers used by gh-aw workflows to their latest versions. All updates are backward compatible and require no changes to existing workflow definitions.

Version Updates

🤖 Claude Code: 2.0.24 → 2.0.25

New Features:

  • Added --plugin-dir <paths...> flag: Load plugins from directories for this session only (repeatable)

Impact: Low risk - new optional feature with no breaking changes

🚀 GitHub Copilot CLI: 0.0.347 → 0.0.348

New Features:

  • Added --disable-parallel-tools-execution flag: Disable parallel execution of tools (LLM can still make parallel tool calls, but they will be executed sequentially)
  • Added --stream <mode> flag: Enable or disable streaming mode (choices: "on", "off")

Impact: Low risk - new optional features with no breaking changes

🐙 GitHub MCP Server: v0.19.0 → v0.19.1

Changes:

  • Split up tooling utility for improved internal organization
  • Updated dependencies:
    • sigstore/cosign-installer from 3.10.0 to 4.0.0
    • github/codeql-action from 3 to 4
    • golang from 1.25.1-alpine to 1.25.3-alpine

Impact: Low risk - internal improvements with no API changes

✅ OpenAI Codex: 0.47.0

No update needed - already at the latest version.

Changes Made

Code Changes

  1. Updated pkg/constants/constants.go with new version constants:

    • DefaultClaudeCodeVersion = "2.0.25"
    • DefaultCopilotVersion = "0.0.348"
    • DefaultGitHubMCPServerVersion = "v0.19.1"
  2. Updated test expectations in 6 test files to match new GitHub MCP Server version:

    • pkg/workflow/codex_engine_test.go
    • pkg/workflow/copilot_engine_test.go
    • pkg/workflow/docker_predownload_test.go
    • pkg/workflow/github_remote_mode_test.go
    • pkg/workflow/log_parser_docker_format_test.go
    • pkg/workflow/mcp_config_test.go

Generated Files

  1. Regenerated all workflow lock files (109 total):
    • 42 production workflows in .github/workflows/
    • 67 test workflows in pkg/cli/workflows/

Validation

All automated checks passed successfully:

  • Build: Binary compiles without errors (make build)
  • Tests: All unit tests passing (make test-unit)
  • Workflows: All 109 workflows compile successfully (make recompile)
  • Quality: Code formatting and linting passed (make agent-finish)
  • Compatibility: No breaking changes detected

Migration

No migration required. All existing workflows will automatically use the new versions on their next run.

References


Generated by: CLI Version Checker workflow (Run ID: 18703293232)

Original prompt

This section details on the original issue you should resolve

<issue_title>[ca] Update Agentic CLI Tools: Claude Code 2.0.25, Copilot CLI 0.0.348, GitHub MCP Server v0.19.1</issue_title>
<issue_description># CLI Version Updates Available

This issue tracks updates to agentic CLI tools and MCP servers used by gh-aw workflows.

Summary

Three tools have new versions available:

  • Claude Code: 2.0.24 → 2.0.25
  • GitHub Copilot CLI: 0.0.347 → 0.0.348
  • GitHub MCP Server: v0.19.0 → v0.19.1
  • OpenAI Codex: No update (0.47.0 is current)

📦 Claude Code v2.0.25

Version Details

  • Previous: 2.0.24 (published Oct 20, 2025)
  • New: 2.0.25 (published Oct 21, 2025)
  • Release Interval: 1 day

Changes

New Features:

  • Added --plugin-dir <paths...> flag: Load plugins from directories for this session only (repeatable)

Bug Fixes: Not documented in NPM registry
Security: None identified
Breaking Changes: None

CLI Discovery

New command-line flag detected via --help:

--plugin-dir <paths...>   Load plugins from directories for this session only (repeatable)

Impact Assessment

  • Risk Level: Low
  • Affected Features: Plugin loading capability
  • Migration Required: No - new optional feature
  • Workflow Compatibility: No changes needed to existing workflows

Changelog Links

  • NPM: (redacted)
  • Registry: (redacted)

🤖 GitHub Copilot CLI v0.0.348

Version Details

  • Previous: 0.0.347 (published Oct 21, 2025)
  • New: 0.0.348 (published Oct 22, 2025)
  • Release Interval: 1 day

Changes

New Features:

  • Added --disable-parallel-tools-execution flag: Disable parallel execution of tools (LLM can still make parallel tool calls, but they will be executed sequentially)
  • Added --stream <mode> flag: Enable or disable streaming mode (choices: "on", "off")

Bug Fixes: Not documented in NPM registry
Security: None identified
Breaking Changes: None

CLI Discovery

Two new command-line flags detected via --help:

--disable-parallel-tools-execution  Disable parallel execution of tools (LLM can still make 
                                     parallel tool calls, but they will be executed sequentially)
--stream <mode>                     Enable or disable streaming mode (choices: "on", "off")

Impact Assessment

  • Risk Level: Low
  • Affected Features: Tool execution control and streaming behavior
  • Migration Required: No - new optional features
  • Workflow Compatibility: No changes needed to existing workflows

Changelog Links

  • NPM: (redacted)
  • Registry: (redacted)

🐙 GitHub MCP Server v0.19.1

Version Details

  • Previous: v0.19.0
  • New: v0.19.1 (released Oct 21, 2025)

Changes

Features/Fixes:

  • Split up tooling utility (commit c01959536b5a53d19ba0e8ebbaadbb20e253532d)

Dependencies:

  • Updated sigstore/cosign-installer from 3.10.0 to 4.0.0
  • Updated github/codeql-action from 3 to 4
  • Updated golang from 1.25.1-alpine to 1.25.3-alpine

Security: None explicitly mentioned
Breaking Changes: None

Impact Assessment

  • Risk Level: Low
  • Affected Features: Internal tooling organization
  • Migration Required: No
  • Workflow Compatibility: No changes needed

Changelog Links


🔄 Update Status

constants.go updated with new versions
make recompile completed successfully
42 workflow lock files regenerated

Modified Files

  • pkg/constants/constants.go: Updated version constants
  • All .lock.yml files in .github/workflows/: Regenerated with new CLI versions

Verification

All workflows compiled successfully with no errors. The updates are backward compatible and require no changes to existing workflow definitions.


📋 Recommendations

  1. Approve and merge: All updates are low-risk with no breaking changes
  2. Test workflows: Consider running a few representative workflows to verify
  3. Monitor: Watch for any unexpected behavior in the next few workflow runs
  4. Future: Consider automating this update process more frequently (currently manual)

🔍 Testing Performed

  • ✅ Fetched latest versions from NPM registry and GitHub releases
  • ✅ Installed and tested CLI tools with --help to discover new features
  • ✅ Updated constants.go with new versions
  • ✅ Ran make recompile successfully (42/42 workflows compiled)
  • ✅ Verified no compilation errors or warnings
  • ✅ Confirmed backward compatibility

Generated: 2025-10-22 by CLI Version Checker workflow
Run ID: 18703293232

AI generated by CLI Version Checker</issue_description>

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

Fixes #2093


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

- Update DefaultClaudeCodeVersion from 2.0.24 to 2.0.25
- Update DefaultCopilotVersion from 0.0.347 to 0.0.348
- Update DefaultGitHubMCPServerVersion from v0.19.0 to v0.19.1
- Update test expectations to match new versions
- All unit tests passing

Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot AI changed the title [WIP] Update Agentic CLI tools to latest versions Update Agentic CLI Tools: Claude Code 2.0.25, Copilot CLI 0.0.348, GitHub MCP Server v0.19.1 Oct 22, 2025
Copilot AI requested a review from pelikhan October 22, 2025 03:11
@pelikhan pelikhan closed this Oct 22, 2025
@pelikhan pelikhan deleted the copilot/update-agentic-cli-tools branch October 22, 2025 04:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[ca] Update Agentic CLI Tools: Claude Code 2.0.25, Copilot CLI 0.0.348, GitHub MCP Server v0.19.1

2 participants