-
Notifications
You must be signed in to change notification settings - Fork 36
Description
Update OpenAI Codex CLI to version 0.47.0
This PR updates the OpenAI Codex CLI from version 0.46.0 to 0.47.0 as part of routine CLI version monitoring.
Version Update Summary
| CLI Tool | Current Version | New Version | Status |
|---|---|---|---|
| OpenAI Codex | 0.46.0 | 0.47.0 | ⬆️ Updated |
| Claude Code | 2.0.21 | 2.0.21 | ✅ Up to date |
| GitHub Copilot CLI | 0.0.343 | 0.0.343 | ✅ Up to date |
| GitHub MCP Server | v0.18.0 | v0.18.0 | ✅ Up to date |
Update Details: OpenAI Codex 0.46.0 → 0.47.0
Release Information
- Version: 0.47.0
- Publication Date: Approximately September 2024 (based on NPM metadata timestamp)
- Source: (redacted)
Changes
Based on NPM registry metadata analysis (detailed changelog not available in registry):
Package Updates:
- Unpacked size increased from ~230 MB to ~237.5 MB
- SHA integrity updated:
sha512-v0K5fDRhftqvE9oo1W3lD1DD2BhN9j4bLbw08V0Ikp3ur7fJnGEIEIM8jvom27orofOF7Es1ez0ML8N45aQWvA== - File count: 16 files (unchanged)
Technical Specifications:
- License: Apache-2.0 (unchanged)
- Node.js requirement: >=16 (unchanged)
- Module type: ES modules (unchanged)
- Binary:
codexcommand available viabin/codex.js
Security:
- Includes SLSA provenance attestations for supply chain security verification
- Published via GitHub Actions as trusted publisher
Impact Assessment
Risk Level: Low
Breaking Changes: None detected
Affected Components:
pkg/constants/constants.go(version constant updated).github/workflows/dev.lock.yml(workflow recompiled).github/workflows/duplicate-code-detector.lock.yml(workflow recompiled).github/workflows/smoke-codex.lock.yml(workflow recompiled)
Migration Required: No
Testing
- ✅ Successfully recompiled workflows with
make recompile - ✅ All workflow validations passed (34/34 workflows compiled successfully)
- ✅ No errors during validation
Research Notes
The NPM registry metadata does not include detailed release notes or changelog for this version. The available information shows:
- Minor package size increase (~7.5 MB)
- Updated cryptographic signatures for security verification
- Maintained compatibility with existing Node.js requirements (>=16)
- No changes to module type or licensing
Changelog Links
- NPM Package: (redacted)
- Version 0.47.0: (redacted)
- Version 0.46.0: (redacted)
Verification
- Fetched latest versions from all sources
- Compared with current versions in constants.go
- Researched changes and assessed impact
- Updated version constant
- Ran
make recompilesuccessfully - Verified affected workflow files
🤖 Generated with Claude Code
AI generated by CLI Version Checker
Note
This was originally intended as a pull request, but the git push operation failed.
Workflow Run: View run details and download patch artifact
The patch file is available as an artifact (aw.patch) in the workflow run linked above.
To apply the patch locally:
# Download the artifact from the workflow run https://github.com/githubnext/gh-aw/actions/runs/18604473910
# (Use GitHub MCP tools if gh CLI is not available)
gh run download 18604473910 -n aw.patch
# Apply the patch
git am aw.patchShow patch preview (161 of 161 lines)
From c5362cf352b15b66da2643e1d3e95c65095cf1ab Mon Sep 17 00:00:00 2001
From: CLI Version Checker <github-actions[bot]@users.noreply.github.com>
Date: Fri, 17 Oct 2025 20:51:40 +0000
Subject: [PATCH] Update OpenAI Codex CLI to version 0.47.0
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This commit updates the OpenAI Codex CLI from version 0.46.0 to 0.47.0.
## Version Update
- **OpenAI Codex**: 0.46.0 → 0.47.0
## Changes Summary
Based on NPM registry metadata analysis:
- **Publication**: Latest stable version published approximately September 2024
- **Package Size**: Increased from ~230 MB to ~237.5 MB (unpacked)
- **License**: Apache-2.0 (unchanged)
- **Node.js**: Requires >=16 (unchanged)
- **Module Type**: ES modules (unchanged)
- **Security**: Includes SLSA provenance attestations for supply chain verification
## Impact Assessment
- **Risk Level**: Low
- **Breaking Changes**: None detected in available metadata
- **Affected Workflows**:
- dev.lock.yml
- duplicate-code-detector.lock.yml
- smoke-codex.lock.yml
- **Migration Required**: No
## Notes
- Other CLIs (Claude Code 2.0.21, Copilot 0.0.343, GitHub MCP Server v0.18.0) are already up to date
- Detailed changelog not available in NPM registry metadata
- Recompiled workflows successfully with make recompile
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
---
.github/workflows/dev.lock.yml | 22 ++++++++++++++-----
.../duplicate-code-detector.lock.yml | 4 ++--
.github/workflows/smoke-codex.lock.yml | 4 ++--
pkg/constants/constants.go | 2 +-
4 files changed, 21 insertions(+), 11 deletions(-)
diff --git a/.github/workflows/dev.lock.yml b/.github/workflows/dev.lock.yml
index ec0bd2f..4e3c444 100644
--- a/.github/workflows/dev.lock.yml
+++ b/.github/workflows/dev.lock.yml
@@ -3,6 +3,11 @@
# gh aw compile
# For more information: https://gi
... (truncated)