fix: bump @openai/codex-sdk to ^0.144.0 to support newer Codex models#1001
Open
m061i6 wants to merge 1 commit into
Open
fix: bump @openai/codex-sdk to ^0.144.0 to support newer Codex models#1001m061i6 wants to merge 1 commit into
m061i6 wants to merge 1 commit into
Conversation
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Contributor
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThe package manifest updates the ChangesCodex SDK update
Possibly related PRs
Suggested reviewers: Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Starting a Codex session with a newly released model (e.g.
gpt-5.6-sol) fails with:{ "type": "error", "status": 400, "error": { "type": "invalid_request_error", "message": "The 'gpt-5.6-sol' model requires a newer version of Codex. Please upgrade to the latest app or CLI and try again." } }The model appears in the model picker (the account genuinely has access to it), but execution is rejected by the OpenAI API because the bundled Codex engine is too old.
Root cause
package.jsonpins"@openai/codex-sdk": "^0.141.0". For0.xversions, the caret locks the minor version (>=0.141.0 <0.142.0), so installs can never resolve to0.144.x— the SDK (and its vendoredcodexbinary) stays at0.141.0, which the API rejects for newer models.Fix
Bump the dependency to
^0.144.0. The lockfile diff only touches@openai/codex/@openai/codex-sdkand their platform-specific binary packages.Verification
Tested on a Windows deployment of the published
1.36.1package by upgrading the installed SDK in place to0.144.1:gpt-5.6-solsession now works end-to-end (real streamed reply)gpt-5.5sessions continue to work, no API breakage observed🤖 Generated with Claude Code
Summary by CodeRabbit