-
Notifications
You must be signed in to change notification settings - Fork 36
Closed
Labels
automationcli-version-updatedependenciesPull requests that update a dependency filePull requests that update a dependency file
Description
CLI Version Updates (2026-01-18)
This issue tracks updates for 2 agentic CLI tools with new versions available.
Summary
- Claude Code: 2.1.9 → 2.1.12
- MCP Gateway: v0.0.62 → v0.0.69
All other tools (Copilot CLI, Codex, GitHub MCP Server, Playwright MCP, Sandbox Runtime, Playwright Browser) are current.
Update Claude Code (2.1.9 → 2.1.12)
- Previous: 2.1.9 → New: 2.1.12
- Timeline: 3 patch versions released over 2 days (Jan 16-17, 2026)
- 2.1.10: 2026-01-17T00:11:29Z
- 2.1.11: 2026-01-17T01:19:37Z
- 2.1.12: 2026-01-17T15:40:35Z
- Breaking Changes: None
- New Features: No public changelog available (Claude Code has no public GitHub repository)
- Bug Fixes: Patch release series suggests bug fixes and stability improvements
- Security: None identified
- CLI Discovery: No --help changes detected (requires installation to verify)
- Impact: Risk Low - Patch releases typically contain bug fixes and minor improvements
- Migration: No - Patch version updates are backward compatible
Package Links
- NPM Package: https://www.npmjs.com/package/@anthropic-ai/claude-code
- Repository: No public repository
- Release Notes: Not publicly available
Update MCP Gateway (v0.0.62 → v0.0.69)
- Previous: v0.0.62 → New: v0.0.69
- Timeline: 7 releases over 2 days (Jan 16-18, 2026)
- v0.0.63: 2026-01-16T19:55:42Z
- v0.0.64: 2026-01-16T21:33:53Z
- v0.0.65: 2026-01-16T21:39:15Z (critical bug fixes)
- v0.0.66: 2026-01-17T00:30:46Z
- v0.0.67: 2026-01-17T00:44:19Z
- v0.0.68: 2026-01-18T17:31:44Z
- v0.0.69: 2026-01-18T17:36:17Z (latest)
- Breaking Changes: None
- New Features:
- JQ Schema Middleware (v0.0.69): On-the-fly transformation of MCP tool call responses, enabling flexible data manipulation and filtering
- Enhanced Debug Logging (v0.0.68): Comprehensive debug logging for health endpoint handler and guard registry (enable with
DEBUG=server:*,guard:*) - Automated Smoke Testing (v0.0.68): New smoke-codex and smoke-copilot workflows for continuous validation
- Log Monitoring (v0.0.67): Nightly MCP Gateway log analyzer workflow for production monitoring
- Schema Normalization Test (v0.0.68): Integration test for GitHub get_commit schema normalization
- Bug Fixes:
- CRITICAL (v0.0.65): Fixed MCP tool call arguments being stripped from SDK requests (Safe output for forked PRs #303)
- CRITICAL (v0.0.65): Fixed missing inputSchema in tools/list responses preventing client parameter wrapping (Add GitHub Actions workflow for automated formatting, linting, building, and committing #304)
- High (v0.0.66): Fixed panic in test mock handlers with safe type assertions (add forks filtering support #309)
- Code quality improvements: Eliminated duplicate code patterns, consolidated sanitization logic (Update GitHub MCP Server #297, [Custom Engine Test] Test Issue Created by Custom Engine #332, Fix missing safe outputs in GITHUB_AW_SAFE_OUTPUTS_CONFIG #333)
- Security: None identified
- CLI Discovery: N/A (Docker image, not a CLI tool)
- Impact: Risk Medium - Two critical bug fixes in v0.0.65 address tool invocation failures and schema handling issues that affected production deployments
- Migration: No - All changes are backward compatible, but v0.0.65+ strongly recommended for users experiencing tool call failures
Release Highlights (from GitHub)
v0.0.69 (Latest)
JQ Schema Middleware and Workflow Automation
- Added jqschema middleware for tool call response transformation (Bump esbuild and vite (#41) #295)
- Refactored duplicate code patterns in logger and server packages ([Custom Engine Test] Test Issue Created by Custom Engine #332, Fix missing safe outputs in GITHUB_AW_SAFE_OUTPUTS_CONFIG #333)
- Enhanced debug logging and smoke testing workflows ([Custom Engine Test] Test Issue Created by Custom Engine #323, [Custom Engine Test] Test Issue Created by Custom Engine #330, safe output as security report #310-Cleanup some code, AgenticEngine --> CodingAgentEngine #315, [Custom Engine Test] Test Issue Created by Custom Engine #322, [Custom Engine Test] Test Issue Created by Custom Engine #326-fixing some safe outputs #329)
- Integration test for GitHub get_commit schema normalization (Use simpler engine interface #321)
v0.0.65 (Critical Bug Fix Release)
CRITICAL: Users experiencing tool call failures should upgrade immediately
- Fixed MCP tool call arguments being stripped (Safe output for forked PRs #303)
- Fixed missing inputSchema in tools/list responses (Add GitHub Actions workflow for automated formatting, linting, building, and committing #304)
- Eliminated duplicate code patterns in MCP connection handling (Update GitHub MCP Server #297)
- Improved test coverage and reliability (Upload squid access logs and show summary in
logscommand #296, Simplify permissions/network, remove strict, addnetwork: defaults#300, Safe discussions, pull request reviews and better errors #301)
v0.0.67
Operational Improvements
- MCP Gateway Log Analyzer with test case reproduction (missing-tool safe output #307)
- Nightly monitoring workflow for log tracking (don't run
add-reactionon PRs of forked repos #305) - Smoke testing with Codex (safe output as security report #310)
- Panic prevention in test mocks (add forks filtering support #309)
Package Links
- NPM Package: N/A (Docker image)
- Repository: https://github.com/githubnext/gh-aw-mcpg
- Release Notes: https://github.com/githubnext/gh-aw-mcpg/releases
- Docker Image: https://ghcr.io/githubnext/gh-aw-mcpg
Merged PRs
- Safe output for forked PRs #303: Fix MCP tool call arguments being stripped from SDK requests gh-aw-mcpg#303 (Fix MCP tool call arguments)
- Add GitHub Actions workflow for automated formatting, linting, building, and committing #304: Fix: Include inputSchema in tools/list responses to prevent client parameter wrapping gh-aw-mcpg#304 (Fix inputSchema in tools/list)
- Bump esbuild and vite (#41) #295: Add jqschema middleware for tool call response transformation gh-aw-mcpg#295 (Add jqschema middleware)
- Update GitHub MCP Server #297: Eliminate duplicate code patterns in MCP connection handling gh-aw-mcpg#297 (Eliminate duplicate code patterns)
- missing-tool safe output #307: Add MCP Gateway Log Analyzer workflow with test case reproduction gh-aw-mcpg#307 (Log analyzer workflow)
- add forks filtering support #309: Fix panic in test mock handlers with safe type assertions gh-aw-mcpg#309 (Fix panic in test mocks)
- safe output as security report #310: Add smoke-codex workflow with latest gateway container image gh-aw-mcpg#310 (Smoke-codex workflow)
- Use simpler engine interface #321: Add integration test for GitHub get_commit schema normalization gh-aw-mcpg#321 (Schema normalization test)
- [Custom Engine Test] Test Issue Created by Custom Engine #323: [log] Add debug logging to health endpoint handler gh-aw-mcpg#323 (Debug logging - health endpoint)
- [Custom Engine Test] Test Issue Created by Custom Engine #330: [log] Add debug logging to guard registry gh-aw-mcpg#330 (Debug logging - guard registry)
- [Custom Engine Test] Test Issue Created by Custom Engine #332: Refactor duplicate code patterns in logger and server packages gh-aw-mcpg#332 (Refactor duplicate code)
- Fix missing safe outputs in GITHUB_AW_SAFE_OUTPUTS_CONFIG #333: Consolidate duplicate sanitization and auth parsing logic gh-aw-mcpg#333 (Consolidate sanitization logic)
Files Modified
pkg/constants/constants.go(2 constants updated)DefaultClaudeCodeVersion: "2.1.9" → "2.1.12"DefaultMCPGatewayVersion: "v0.0.62" → "v0.0.69"
Next Steps
- Run
make recompileto regenerate workflow files - Test updated versions with integration tests
- Verify MCP Gateway v0.0.69 in production-like scenarios
- Review and merge changes
Additional Notes
- MCP Gateway v0.0.65+: Critical upgrade for users experiencing tool call failures or schema handling issues
- Claude Code: No public changelog, version changes suggest routine bug fixes
- All updates are backward compatible with no breaking changes
AI generated by CLI Version Checker
Copilot
Metadata
Metadata
Labels
automationcli-version-updatedependenciesPull requests that update a dependency filePull requests that update a dependency file