mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-05 14:51:40 +00:00
* build(codex): bump app-server to 0.144.6 * build(codex): align ACP runtime to 0.144.6 * test(codex): harden live image probe * test(codex): accept alphanumeric image tokens * test(codex): stabilize image probe glyphs * test(gateway): disable cron probe delivery * test(codex): enlarge live image token * test(codex): tie compaction proof to native output * test(codex): accept wrapped native stress commands * test(codex): stabilize compaction acknowledgements * docs(changelog): note Codex 0.144.6 update * docs(changelog): defer Codex note to release
12 lines
630 B
TypeScript
12 lines
630 B
TypeScript
/**
|
|
* Version and package pins for the managed Codex app-server runtime.
|
|
*/
|
|
// The supported range tracks protocol shapes validated against the managed
|
|
// package. Raising the ceiling requires regenerating schemas from that tag.
|
|
/** Minimum Codex app-server version supported by the OpenClaw Codex bridge. */
|
|
export const MIN_CODEX_APP_SERVER_VERSION = "0.143.0";
|
|
/** Newest Codex app-server version validated by the OpenClaw Codex bridge. */
|
|
export const MAX_CODEX_APP_SERVER_VERSION = "0.144.6";
|
|
/** npm package name for the managed Codex app-server binary. */
|
|
export const MANAGED_CODEX_APP_SERVER_PACKAGE = "@openai/codex";
|