fix(runtime): bump managed codex-acp to 0.15.0#451
Open
szafranski wants to merge 1 commit into
Open
Conversation
codex-acp 0.14.0 parses service_tier in ~/.codex/config.toml as a strict
enum {fast, flex} and crashes on "default", which current Codex
CLI/Desktop writes into the shared config. The builtin Codex agent then
fails to start (USER_AGENT_STARTUP_FAILED). codex-acp 0.15.0 accepts
the value.
Ref: iOfficeAI/AionUi#3225
Companion to: iOfficeAI/AionUi#3279
Author
|
Small coordination bump: this is the AionCore side of the codex-acp 0.15.0 bump, paired with iOfficeAI/AionUi#3279. The UI/bundling pipeline can point at 0.15.0, but the managed runtime resolution also needs this backend version pin so the built-in Codex agent fix is consistent across install paths. Could we keep this paired with the AionUi companion for the next release/bundle? Thanks! |
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.
Description
Bumps
ManagedAcpToolId::CodexAcpversion incrates/aionui-runtime/src/acp_tool_runtime/types.rsfrom0.14.0to0.15.0, and updates the version literals in theacp_tool_runtimetest fixtures to match.Why: codex-acp 0.14.0 parses
service_tierin the shared~/.codex/config.tomlas a strict enum (fast/flex) and aborts on"default"— the value the official Codex CLI/Desktop itself writes there. The builtin Codex agent then fails to start (USER_AGENT_STARTUP_FAILED). codex-acp 0.15.0 relaxed the field and accepts any value. Full diagnosis with stderr logs: iOfficeAI/AionUi#3225.Companion to iOfficeAI/AionUi#3279, which bumps the same pin in AionUi's
prepare-managed-acp-tools.sh(bundling + CDN publish pipeline).Notes for maintainers
codex-acp/0.15.0are not yet published onstatic.aionui.com/managed/acp(currently 403). The download path needs those artifacts published (same note as in fix(acp): bump bundled codex-acp to 0.15.0 AionUi#3279); the bundled-resources path needs AionUi to bundle 0.15.0.009_builtin_managed_acp_tools.sqlthe builtin Codex row no longer persists a command/args pin — runtime resolution derives the version fromManagedAcpToolId::version().Verification
scripts/check-migration-immutability.sh✅cargo fmt --all -- --check✅cargo clippy --workspace -- -D warnings✅cargo test --workspace✅ (all green; the 5 updated literals are test fixtures coupled toManagedAcpToolId::version())🤖 Generated with Claude Code