110 wires and counting

$ follow OpenAI

Keep up with OpenAI in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-09-07
stories 66

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Codex TUI and openai-node fix stale state and timers

By RepoJournal · Filed · About OpenAI

The Codex TUI now trusts server metadata over local config for sessions and providers, and openai-node hones its OAuth and zod tooling for correctness.

The Codex TUI stops trusting local state it no longer owns. `/status` now displays the server-reported model provider ID instead of local provider names and base URLs, and the provider row is omitted until a thread configures one [1]. Fresh startup loads `model` and `model_reasoning_effort` through `config/read` before `thread/start`, using server defaults instead of possibly stale client settings [2]. Session restoration now carries the working directory from `thread/list` and `thread/read`, using app-server metadata for resume and fork directories, and helper reads of rollout files and the state database are gone [3]. "Use app-server metadata for TUI session restoration" [3].

This metadata shift also touches rollout migration. The TUI still allows the cached legacy resume shortcut when background rollout migration is enabled, so long as the embedded session holds the maintenance lock and revalidates the thread still uses legacy history through `thread/resume` [4]. Separately, the npm release pipeline stages tarballs in a job with `contents: read` permissions and uploads them as the `npm-packages` artifact; the release job now consumes that artifact and drops its dependency installation and packaging steps. Staging must succeed first [5].

The openai-node auth path tightens its token cache. The workload-identity OAuth exchange now measures duration with a monotonic clock, and the cache deadline comes from the remaining lifetime at response completion; expired tokens are rejected before caching or API dispatch. This is a breaking change for any code that relies on `expiresAt` being set immediately after the token exchange began [6]. The Steady cache lock's 10-second acquisition budget now uses a monotonic clock, and two regression tests cover forward and backward wall-clock corrections [7].

Zod tool users get a reliability fix: `zodFunction()` and `zodResponsesFunction()` capture the original `parameters` schema once and use that same reference for JSON Schema generation and argument parsing. The regression suite covers Zod v3, v4, and v4 Mini through both Chat Completions and Responses [8]. Two smaller correctness fixes are in: audio helpers signal a recording process only when its child object has a PID, and Steady commands with unsuccessful lease creation get their child process reaped before the lifecycle lock releases [9][10].

Action items

References

  1. [1] Show the server's model provider ID in TUI status (#43359) ↗ openai/codex
  2. [2] Use server model defaults for fresh TUI startup ↗ openai/codex
  3. [3] Use app-server metadata for TUI session restoration (#43360) ↗ openai/codex
  4. [4] Allow guarded legacy resume with background migration enabled ↗ openai/codex
  5. [5] Move npm package staging into a separate release workflow job (#43281) ↗ openai/codex
  6. [6] fix(auth): account for token exchange elapsed time (#2609) ↗ openai/openai-node
  7. [7] fix(test): use a monotonic Steady lock timeout (#2661) ↗ openai/openai-node
  8. [8] fix(zod): retain the original tool parameter schema ↗ openai/openai-node
  9. [9] fix(audio): only signal started recording processes ↗ openai/openai-node
  10. [10] fix(test): reap Steady commands when lease creation fails ↗ openai/openai-node

Quick answers

What shipped in OpenAI on September 7, 2026?
The Codex TUI now trusts server metadata over local config for sessions and providers, and openai-node hones its OAuth and zod tooling for correctness. In total, 33 commits and 33 pull requests landed.
Who contributed to OpenAI on September 7, 2026?
4 developers shipped this update, including Charlie Marsh, Eric Traut, copyberry, and Hayden.
What were the notable OpenAI updates?
Show the server's model provider ID in TUI status (#43359), Use server model defaults for fresh TUI startup, and Use app-server metadata for TUI session restoration (#43360).