-
Notifications
You must be signed in to change notification settings - Fork 35
Description
This update includes version bumps for four CLI tools and MCP servers with various enhancements, bug fixes, and new features.
Claude Code: 2.0.71 → 2.0.72
Release Timeline: 2025-12-17 21:21:00 UTC (24 hours after 2.0.71)
Breaking Changes: None
New Features: Not specified in release notes
Bug Fixes: Not specified in release notes
Security: None detected
CLI Discovery: No changes detected in help output between versions
Impact: Risk Low - No observable changes in CLI behavior or flags
Migration: No - Backward compatible upgrade
Package Links:
- NPM Package: https://www.npmjs.com/package/`@anthropic-ai/claude-code`
- Release: v2.0.72
Copilot CLI: 0.0.369 → 0.0.370
Release Timeline: 2025-12-18 14:48:31 UTC (7 days after 0.0.369)
Breaking Changes: None
New Features:
- Enhanced tool permission control with clearer flag descriptions
- New
--available-toolsflag to specify which tools are available to the model - New
--excluded-toolsflag to prevent specific tools from being available - New
--no-auto-updateflag to disable automatic CLI updates - New
--plain-diffflag to disable rich diff rendering and use git-configured diff tool
Bug Fixes: Not specified
Security: None detected
CLI Discovery: 6 new/modified command-line flags detected:
- Modified
--allow-tool: Now described as "Tools the CLI has permission to use; will not prompt for permission" (previously "Allow specific tools") - New
--available-tools: "Only these tools will be available to the model" - Modified
--deny-tool: Now described as "Tools the CLI does not have permission to use; will not prompt for permission" (previously "Deny specific tools, takes precedence over --allow-tool or --allow-all-tools") - New
--excluded-tools: "These tools will not be available to the model" - New
--no-auto-update: "Disable downloading CLI update automatically" - New
--plain-diff: "Disable rich diff rendering (syntax highlighting via diff tool specified by git config)"
Impact: Risk Medium - Significant changes to tool permission model and new feature flags. The distinction between --allow-tool/--deny-tool (permission control) and --available-tools/--excluded-tools (model availability) suggests architectural changes.
Migration: No - All changes are backward compatible additions
Package Links:
- NPM Package: https://www.npmjs.com/package/`@github/copilot`
- Release: v0.0.370
Codex: 0.73.0 → 0.74.0
Release Timeline: 2025-12-18 18:09:58 UTC (3 days after 0.73.0)
Breaking Changes: None detected
New Features:
- gpt-5.2-codex model: Latest frontier model with improvements across knowledge, reasoning, and coding
- New
/experimentalcommand: For trying out experimental features - Model picker: New feature for selecting models
- Config improvements: ConfigBuilder pattern introduced
- Beta features: Infrastructure for beta feature flags
- Skills support: SYSTEM skills and improved skill loading
- MCP improvements: Non-blocking MCP server status checks
- SDK enhancement: xhigh reasoning effort support in TypeScript SDK
Bug Fixes:
- Ghost snapshot warning disable toggle
- Session downgrade fixes
- Skills directory cleanup
- Parallel tool calls fixes
- WSL mount point case sensitivity fixes
- Flaky test fixes
Performance:
- Non-blocking model list operations
- Improved ACL read speed and reliability
- Elevated sandbox setup optimizations
Security: None explicitly mentioned
CLI Discovery: No changes detected in help output
Impact: Risk Medium - Major feature release with 70+ PRs merged including new model, experimental features, and architectural refactors
Migration: No - Backward compatible upgrade
Release Highlights (from GitHub)
Key improvements in 0.74.0:
- New gpt-5.2-codex frontier model - [Learn more]((redacted)
/experimentalcommand for experimental features- Ghost snapshot warning toggle
- UI polish (background terminals, picker cleanup)
- Model picker improvements
- Config system refactoring with ConfigBuilder
- SYSTEM skills support
- Non-blocking MCP operations
- Windows binary packaging improvements
- TUI event loop refactor
Merged PRs (from GitHub)
Significant changes (selected from 70+ PRs):
- feat: add name to beta features openai/codex#8266 feat: add name to beta features
- feat: model picker openai/codex#8209 feat: model picker
- Support SYSTEM skills. openai/codex#8220 Support SYSTEM skills
- feat: add config to disable warnings around ghost snapshot openai/codex#8178 feat: add config to disable warnings around ghost snapshot
- feat: experimental menu openai/codex#8071 feat: experimental menu
- feat(sdk): add xhigh reasoning effort support to TypeScript SDK openai/codex#8108 feat(sdk): add xhigh reasoning effort support to TypeScript SDK
- Add public skills + improve repo skill discovery and error UX openai/codex#8098 Add public skills + improve repo skill discovery and error UX
- bug fixes and perf improvements for elevated sandbox setup openai/codex#8094 bug fixes and perf improvements for elevated sandbox setup
- feat: if .codex is a sub-folder of a writable root, then make it read-only to the sandbox openai/codex#8088 feat: if .codex is a sub-folder of a writable root, then make it read-only to the sandbox
- fix parallel tool calls openai/codex#7956 fix parallel tool calls
Package Links:
- NPM Package: https://www.npmjs.com/package/`@openai/codex`
- Repository: https://github.com/openai/codex
- Release Notes: https://github.com/openai/codex/releases
- Specific Release: https://github.com/openai/codex/releases/tag/rust-v0.74.0
GitHub MCP Server: v0.25.0 → v0.26.1 (via v0.26.0)
Release Timeline:
- v0.26.0: 2025-12-18 15:20:52 UTC
- v0.26.1: 2025-12-18 18:54:15 UTC (hotfix 3 hours later)
Breaking Changes: None
New Features (v0.26.0):
- Octicon Icons: MCP clients now display GitHub's Octicon icons alongside tools, resources, and prompts
- Inventory Pattern Architecture: New internal architecture with builder, filtering, and per-request optimization
- Feature Flag Support: Infrastructure for feature flag-based tool enablement via
--featuresCLI flag orGITHUB_MCP_FEATURESenvironment variable - Consolidated Actions Toolsets: Better organization of GitHub Actions-related tools behind feature flags
- Documentation: New Antigravity installation guide and tool renaming guide
Bug Fixes:
- v0.26.0: Fixed
create_or_updateSHA-related failures; Path parameter now optional - v0.26.1: Fixed ring buffer panic; Omitted icon sizes field for backward compatibility with older MCP clients
Security: None detected
CLI Discovery: Feature flag support added
Impact: Risk Medium - Architectural changes with new Inventory pattern and feature flag infrastructure. v0.26.1 is a critical hotfix for regression affecting some clients.
Migration: No - Backward compatible with graceful fallback for older clients
Release Highlights (v0.26.0 from GitHub)
MCP clients that support icons now display GitHub's Octicon icons, making capabilities easier to identify. Internal improvements include:
- Inventory pattern with builder and filtering
- Feature flag infrastructure
- Consolidated actions toolsets
- Better observability with HTTP status tracking
Merged PRs (v0.26.0 from GitHub)
- Fix create_or_update SHA-related failures github/github-mcp-server#1621 Fix create_or_update SHA-related failures
- docs: Add Antigravity installation guide github/github-mcp-server#1549 docs: Add Antigravity installation guide
- Update docs to include tool renaming guide github/github-mcp-server#1623 Update docs to include tool renaming guide
- refactor: Introduce Inventory pattern with builder, filtering, and per-request optimization github/github-mcp-server#1589 refactor: Introduce Inventory pattern with builder, filtering, and per-request optimization
- Fix: path param should be optional github/github-mcp-server#1631 Fix: path param should be optional
- fix: track HTTP status code errors in context for observability github/github-mcp-server#1630 fix: track HTTP status code errors in context for observability
- feat: Add Octicon icons to MCP tools, resources, and prompts github/github-mcp-server#1603 feat: Add Octicon icons to MCP tools, resources, and prompts
- refactor: inject deps via context instead of closures github/github-mcp-server#1640 refactor: inject deps via context instead of closures
- Add ff support and consolidated actions toolsets github/github-mcp-server#1622 Add ff support and consolidated actions toolsets
Merged PRs (v0.26.1 from GitHub)
- Fix ring buffer panic github/github-mcp-server#1556 Fix ring buffer panic
- Omit icon sizes field for backward compatibility with older MCP clients github/github-mcp-server#1645 Omit icon sizes field for backward compatibility with older MCP clients
Package Links:
- Repository: https://github.com/github/github-mcp-server
- Release Notes: https://github.com/github/github-mcp-server/releases
- v0.26.0 Release: https://github.com/github/github-mcp-server/releases/tag/v0.26.0
- v0.26.1 Release: https://github.com/github/github-mcp-server/releases/tag/v0.26.1
Summary
All four updates have been applied:
- ✅ Updated
pkg/constants/constants.gowith new versions - ✅ Ran
make recompilesuccessfully (116 workflow lock files updated) - ✅ Verified git status shows expected changes
Testing Recommendations:
- Copilot CLI: Test new tool permission flags (
--available-tools,--excluded-tools) and auto-update behavior - Codex: Test new
/experimentalcommand and gpt-5.2-codex model - GitHub MCP Server: Verify icon display in supporting clients and test feature flag functionality
No updates required for:
- Playwright MCP: 0.0.52 (current)
- Playwright Browser: v1.57.0 (current)
AI generated by CLI Version Checker