AIニュース最前線
最新ニュースAI日報Hacker日報週報動画AIツールトレンド企業

AIニュース最前線

世界中のAI最新情報を日本語で毎時更新

最新ニュース日報トレンド企業プレミアムRSS
© 2026 ainew.jp特定商取引法に基づく表記
ニュース一覧元記事を開く
Codex Changelog·2026年6月10日 05:14·約4分で読める

Codex v0.139.0 の新機能:コードモードが独立したウェブ検索を直接呼び出せるように

TL;DR

OpenAI が公開した Codex バージョン 0.139.0 では、コードモードがネストされた JavaScript ツール呼び出しからも独立したウェブ検索を直接実行し、プレーンテキストの結果を受け取れるようになりました。

新しい機能

  • コードモードでは、ネストされた JavaScript ツール呼び出しからも直接スタンドアロンの Web 検索を呼び出せるようになり、プレーンテキスト形式の検索結果を受け取れるようになりました。(#26719)
  • ツールおよびコネクタの入力スキーマは now oneOf および allOf を保持するようになり、大規模なスキーマも圧縮時により浅い構造を維持することで、リッチな MCP ツールとの互換性が向上しました。(#24118, #27084)
  • codex doctor は、ローカルレポートにエディタおよびページャ環境の詳細を含めるようになりつつ、JSON 出力内の生値は伏字処理されるようになりました。(#27081)
  • プラグインマーケットプレイスの自動化がより情報豊富かつ応答性が高まりました:codex plugin marketplace list --json コマンドでは各マーケットプレイスソースが含まれるようになり、プラグインリストは背景で更新する前にキャッシュされたリモートカタログから返却できるようになりました。(#27009, #26932)

バグ修正

  • codex resume --last "..." および codex fork --last "..." コマンドでは、末尾の引数をセッション ID として誤って解釈するのではなく、初期プロンプトとして扱うようになりました。(#26818)
  • サブエージェントからの MCP スタートアップ警告は、それらを所有するスレッド内に留まるようになり、親スレッドでの重複アラートや TUI における起動スピナーの停止が防止されました。(#26639)
  • 画像編集では、会話履歴から推測するのではなく、参照された画像ファイルパスを正確に使用するため、添付画像の編集が意図した入力先に正しく反映されるようになりました。(#26486)
  • パスに ~ を含む裸の URL は、TUI 内でチルダの手前で切り捨てられることなく、先頭から末尾まで完全にリンク化されるようになりました。(#27088)
  • /new、/clear、/fork といったスレッドのリセットは、TUI 設定の再読み込み中にクラウド管理要件や機能フラグが失われることがなくなりました。(#25177)
  • サンドボックス実行では、承認された昇格判断が保持され、構成済みのプロキシ専用ネットワークがより一貫して適用されるようになりました。(#24981, #27035)

Chores

  • リリースビルドは再び行番号テーブルを含む別個のシンボルアーカイブを公開するようになり、以前のフルデバッグビルドによる速度低下を復活させることなく、リリース後のクラッシュシンボル化が改善されました。(#26202)
  • 埋め込み V8 ツールチェーンが rusty_v8 149.2.0 に更新されました。(#26464)

Changelog

完全な変更履歴: rust-v0.138.0...rust-v0.139.0

  • #26741 fix(remote-control): 一般的な WebSocket 404 エラーでも登録情報を保持する @apanasenko-oai
  • #26804 fix(core-plugins): プラグインサービスへ Codex 製品 SKU を送信する @ericning-o
  • #26464 build(v8): rusty_v8 を 149.2.0 に更新する @cconger
  • #26895 ci: BuildBuddy シークレットに Bazel 環境を使用する @bolinfest
  • #24981 fix: 統合実行で承認サンドボックスの判断を保持する @bolinfest
  • #26818 fix(tui): resume および fork を含むプロンプトを受け付けるようにする @fcoury-oai
  • #24820 deps: starlark を 0.14.2 に更新する @bolinfest
  • #26639 fix(tui): MCP の起動ステータスをスレッドごとにスコープする @fcoury-oai
  • #26719 [codex] コードモードでスタンドアロン Web 検索を有効化 @rka-oai
  • #26632 feat: v2 エージェントのレジデンシー LRU を追加 @jif-oai
  • #26974 proc-macro-error2 のアドバイザリを無視する @jif-oai
  • #26969 feat: count V2 concurrency by active execution @jif-oai
  • #26994 Rename multi-agent v2 close_agent to interrupt_agent @jif-oai
  • #26997 Avoid reopening v2 descendants on resume @jif-oai
  • #26821 [codex] Exclude external tool output from memories @rka-oai
  • #26202 [codex] Restore release symbol artifacts with line tables @nornagon-openai
  • #26852 fix(app-server): avoid blocking connection cleanup @apanasenko-oai
  • #26923 Add HTTP window ID to Responses client metadata @ningyi-oai
  • #26680 [codex-analytics] report compaction analytics details @rhan-oai

#26637 [codex] Speed up

原文を表示

New Features

  • Code mode can now call standalone web search directly, including from nested JavaScript tool calls, and receive plaintext search results. (#26719)
  • Tool and connector input schemas now preserve oneOf and allOf, and large schemas keep more shallow structure when compacted, improving compatibility with richer MCP tools. (#24118, #27084)
  • codex doctor now includes editor and pager environment details in the local report while redacting raw values in JSON output. (#27081)
  • Plugin marketplace automation is more informative and responsive: codex plugin marketplace list --json now includes each marketplace source, and plugin lists can return from the cached remote catalog before refreshing in the background. (#27009, #26932)

Bug Fixes

  • codex resume --last "..." and codex fork --last "..." now treat the trailing argument as the initial prompt instead of misreading it as a session ID. (#26818)
  • MCP startup warnings from subagents now stay in the thread that owns them, avoiding duplicate parent-thread alerts and stuck startup spinners in the TUI. (#26639)
  • Image edits now use the exact referenced image file paths instead of guessing from conversation history, so attached-image edits land on the intended input. (#26486)
  • Bare URLs with ~ in the path are now linkified end to end in the TUI instead of being truncated before the tilde. (#27088)
  • Thread resets such as /new, /clear, and /fork no longer drop cloud-managed requirements or feature flags during TUI config reloads. (#25177)
  • Sandbox execution now preserves approved escalation decisions and enforces configured proxy-only networking more consistently. (#24981, #27035)

Chores

  • Release builds once again publish separate symbol archives with line tables, improving post-release crash symbolication without bringing back the earlier full-debug build slowdown. (#26202)
  • The embedded V8 toolchain was updated to rusty_v8 149.2.0. (#26464)

Changelog

Full Changelog: rust-v0.138.0...rust-v0.139.0

  • #26741 fix(remote-control): preserve enrollment on generic websocket 404s @apanasenko-oai
  • #26804 fix(core-plugins): send Codex product SKU to plugin-service @ericning-o
  • #26464 build(v8): update rusty_v8 to 149.2.0 @cconger
  • #26895 ci: use bazel environment for BuildBuddy secret @bolinfest
  • #24981 fix: preserve approval sandbox decisions in unified exec @bolinfest
  • #26818 fix(tui): accept prompts with resume and fork @fcoury-oai
  • #24820 deps: update starlark to 0.14.2 @bolinfest
  • #26639 fix(tui): scope MCP startup status by thread @fcoury-oai
  • #26719 [codex] Enable standalone web search in code mode @rka-oai
  • #26632 feat: add v2 agent residency lru @jif-oai
  • #26974 Ignore proc-macro-error2 advisory @jif-oai
  • #26969 feat: count V2 concurrency by active execution @jif-oai
  • #26994 Rename multi-agent v2 close_agent to interrupt_agent @jif-oai
  • #26997 Avoid reopening v2 descendants on resume @jif-oai
  • #26821 [codex] Exclude external tool output from memories @rka-oai
  • #26202 [codex] Restore release symbol artifacts with line tables @nornagon-openai
  • #26852 fix(app-server): avoid blocking connection cleanup @apanasenko-oai
  • #26923 Add HTTP window ID to Responses client metadata @ningyi-oai
  • #26680 [codex-analytics] report compaction analytics details @rhan-oai

#26637 [codex] Speed up

この記事をシェア

関連記事

Codex Changelog2026年6月10日 09:42

0.140.0-alpha.2

Codex Changelog2026年6月10日 05:29

Codex v0.140.0-alpha.1 のリリース

Codex チームがバージョン v0.140.0-alpha.1 を公開しました。具体的な機能変更や修正内容は本文抜粋から確認できません。

Codex Changelog2026年6月9日 21:46

0.139.0-alpha.3

今日のまとめ

AI日報で今日の重要ニュースをまとめ読み

ニュース一覧に戻る元記事を読む