Gemini CLI Changelog·2026年5月13日 07:25·約3分で読める
リリース v0.43.0-preview.0 の概要:モデルの編集ツール活用機能強化とタイポ修正
TL;DR
開発チームが公開したバージョン v0.43.0-preview.0 では、モデルが外科的な編集に編集ツールを活用する機能を追加し、ユーザー aishaneeshah によるタイプミスの修正が行われた。
変更点
- feat(core): 外科的な編集のために編集ツールを使用するようにモデルを誘導し、@aishaneesh 氏による #26480 でタイプミスを修正しました。
- docs: Auto Memory がメモリの更新とスキルを提案することを明確化しました。@SandyTao520 氏による #26527 です。
- fix(core): GOOGLE_CLOUD_PROJECT (#24695) において数値のプロジェクト ID を拒否するように修正しました。@Abhijit-2592 氏による #26532 です。
- fix(core): エラーユーティリティ内の安全でない型アサーションの抑制を削除しました。@himanshu748 氏による #19881 です。
- fix(core): サンクボックス化なしで YOLO および AUTO_EDIT モードでのリダイレクトを許可するように修正しました。@galz10 氏による #26542 です。
- ci(release): unsigned macOS バイナリをビルドしてリリースに添付しました。@ruomengz 氏による #26462 です。
- fix(core): コンテキストマネージャー内のチャート破損バグを修正しました。@joshualitt 氏による #26534 です。
- fix(cli): 非対話モードで AgentExecutionStopped の JSON 出力を提供するように修正しました。@cynthialong0-0 氏による #26504 です。
- feat(evals): シェルコマンドの安全性評価を追加しました。@akh64bit 氏による #26528 です。
- fix(core): 無効なカスタムプランディレクトリを適切に処理するように修正しました。@cynthialong0-0 氏による #26560 です。
- fix(acp): ツールの説明を思考ストリームからツール呼び出しコンテンツへ移動しました。@sripasg 氏による #26554 です。
- fix(a2a-server): ツール完了待ちにおける競合状態を解決しました。@kschaab 氏による #26568 です。
- fix(cli): サンクボックスコンテナ名をランダム化しました。@Kkartik14 氏による #26014 です。
- fix(core): 非同期コンテキスト管理パイプラインにおけるヒステリシスを修正しました。@joshualitt 氏による #26452 です。
- プライベートな Auto Memory パッチの許可リストを厳格化しました。@SandyTao520 氏による #26535 です。
- fix(cli): 読み取り専用設定スコープを非表示にしました。@cvan20191 氏による #26249 です。
- fix(ci): @ruomengz 氏による #26600 で、mac 用バイナリの実行権限を保持する修正
- fix(cli): @Adib234 氏による #26457 で、信頼できないフォルダにおける MCP リストの UX を改善する修正
- fix(core): @RhysSullivan 氏による #26571 で、ヘッドレス Linux 環境での OAuth 認証時にサイレントハングが発生しないよう防止する修正
- Changelog for v0.42.0-preview.0 by @gemini-cli-robot in #26537
- ci: @cocosheng-g 氏による #26603 で、トライアージワークフローにおける「引数リストが長すぎる」エラーを修正
- refactor(cli): @mbleigh 氏による #25186 で、コアツールをネイティブの ToolDisplay プロパティへ移行し、UI レンダリングの不具合を修正
- don't wrap args unnecessarily by @scidomino in #26599
- fix(core): @cocosheng-g 氏による #26587 で、Git 環境におけるシステム PATH を保持し、ENOENT エラー (#25034) を修正する修正
- fix(routing): @danielweis 氏による #26658 で、ApprovalModeStrategy 内の resolveClassifierModel 引数の不一致を修正する修正
- docs: @chrisjcthomas 氏による #23853 で、vi モードのショートカットを追加し、MCP/カスタムサンドボックスの設定について明確化
- fix(ux): @devr0306 氏による #26609 で、スペースキーを離した後に転写テキストが表示されない不具合を修正
ci: @cocosheng-g 氏による scheduled triage ワークフロー内の JSON パースの修正 (@cocosheng-g in <a class="issue-link js-issue-link" data-error-text="Failed to load tit
原文を表示
What's Changed
- feat(core): steer model to use edit tool for surgical edits, fix a typo by @aishaneeshah in #26480
- docs: clarify Auto Memory proposes memory updates and skills by @SandyTao520 in #26527
- fix(core): reject numeric project IDs in GOOGLE_CLOUD_PROJECT (#24695) by @Abhijit-2592 in #26532
- fix(core): remove unsafe type assertion suppressions in error utils by @himanshu748 in #19881
- fix(core): allow redirection in YOLO and AUTO_EDIT modes without sandboxing by @galz10 in #26542
- ci(release): build and attach unsigned macOS binaries to releases by @ruomengz in #26462
- fix(core): Fix chat corruption bug in context manager. by @joshualitt in #26534
- fix(cli): provide JSON output for AgentExecutionStopped in non-interactive mode by @cynthialong0-0 in #26504
- feat(evals): add shell command safety evals by @akh64bit in #26528
- fix(core): handle invalid custom plans directory gracefully by @cynthialong0-0 in #26560
- fix(acp): move tool explanation from thought stream to tool call content by @sripasg in #26554
- fix(a2a-server): Resolve race condition in tool completion waiting by @kschaab in #26568
- fix(cli): randomize sandbox container names by @Kkartik14 in #26014
- fix(core): Fix hysteresis in async context management pipelines. by @joshualitt in #26452
- Tighten private Auto Memory patch allowlist by @SandyTao520 in #26535
- fix(cli): hide read-only settings scopes by @cvan20191 in #26249
- fix(ci): preserve executable bit for mac binaries by @ruomengz in #26600
- fix(cli): improve mcp list UX in untrusted folders by @Adib234 in #26457
- fix(core): prevent silent hang during OAuth auth on headless Linux by @RhysSullivan in #26571
- Changelog for v0.42.0-preview.0 by @gemini-cli-robot in #26537
- ci: fix Argument list too long in triage workflows by @cocosheng-g in #26603
- refactor(cli): migrate core tools to native ToolDisplay property and fix UI rendering by @mbleigh in #25186
- don't wrap args unnecessarily by @scidomino in #26599
- fix(core): preserve system PATH in Git environment to fix ENOENT (#25034) by @cocosheng-g in #26587
- fix(routing): fix resolveClassifierModel argument mismatch in ApprovalModeStrategy by @danielweis in #26658
- docs: add vi mode shortcuts and clarify MCP/custom sandbox setup by @chrisjcthomas in #23853
- fix(ux): fixed issue with transcribed text not showing after releasing space by @devr0306 in #26609
ci: fix json parsing in scheduled triage workflow by @cocosheng-g in <a class="issue-link js-issue-link" data-error-text="Failed to load tit
この記事をシェア
関連記事
Gemini CLI Changelog2026年6月10日 10:15
Gemini CLI v0.46.0 のリリース
Gemini CLI チームがバージョン 0.46.0 を公開し、PTY リサイズ処理におけるネイティブクラッシュ対策を強化した。
Gemini CLI Changelog2026年6月10日 09:11
Gemini CLI v0.47.0-preview.0 のリリース
Gemini CLI ロボットが、バージョンを 0.47.0-nightly.20260602.gcfcecebe8 に更新してリリースしました。
Gemini CLI Changelog2026年6月10日 07:21
Gemini CLI v0.46.0-preview.3 のリリース
Gemini CLI チームが、バージョン 0.46.0 のプレビュー版 3 を公開しました。
今日のまとめ
AI日報で今日の重要ニュースをまとめ読み