Gemini CLI v0.44.0-preview.0 のリリース
Gemini CLI ロボットが、バージョンを v0.44.0-nightly.20260512.g022e8baef に更新してプレビュー版 0.44.0 を公開しました。
変更点
- chore(release): バージョンを 0.44.0-nightly.20260512.g022e8baef にアップグレード by @gemini-cli-robot in #26957
- v0.42.0 の変更履歴 by @gemini-cli-robot in #26958
- リファクタリング: 厳密な型検証により、unsafe-return の抑制を排除 by @M-DEV-1 in #20668
- v0.43.0-preview.0 の変更履歴 by @gemini-cli-robot in #26959
- feat(core): エージェント登録を「先着順」に変更し、プロジェクト優先度を適用 by @adamfweidman in #26953
- feat(cli): Auto モードを単一の Auto モードに統合 by @DavidAPierce in #26714
- fix(core): トークンローテーションおよび取得時に OAuth リフレッシュトークンを保持 by @cocosheng-g in #26924
- fix(cli): --list-sessions および非対話モードでキーチェーン認証を許可 by @cocosheng-g in #26921
- fix(core): メモリ内ディスカバリにおける仮想ドライブの EISDIR エラーを処理 by @cocosheng-g in #26985
- fix(cli): AUTO_EDIT モードでシェルのリダイレクトを自動承認 by @cocosheng-g in #27003
- ci: 標準的なトライアージメンテナンス中にボットのコメントを抑制 by @cocosheng-g in #27006
- fix(core): 再認証後に MCP OAuth トークンの使用状況を更新 by @sahilkirad in #26312
- fix(ui): テーブル列幅をクリップ(制限) by @devr0306 in #26991
- fix(core): サブエージェントのスレッドコンテキストを分離 by @akh64bit in #26449
- chore: scripts/review.sh に実行権限を追加 by @scidomino in #27009
- fix(core): コンテキストファイルの動作を変更し、上書きではなく追記とするように by @devr0306 in #26950
- fix: ripgrep の解決時にシステム PATH をフォールバックとして追加 (#26777) by @cocosheng-g in #26868
- chore: @SandyTao520 氏による #26941 で、起動時のメモリ機能のクリーンアップを行いました
- fix(core): @emersonbusson 氏による #26955 で、シェルのテキスト出力をスロットリングし、ライブ UI バッファにバインドしました
- fix(cli): @ifitisit 氏による #25980 で、@メンションがパスではないブロブを捕捉した場合のクラッシュを防ぎました
- fix(core): @galz10 氏による #26999 で、制限されたプレビューモデルに対する安定したフォールバックを保証しました
- feat(core): @spencer426 氏による #27016 で、デバッグ用に RAG スニペットをローカルログファイルに公開できるようにしました
- fix(acp/auth): @sripasg 氏による #27021 で、エンタープライズゲートウェイでの競合する認証情報を防止し、ネイティブでオプションの API キーをサポートするようにしました
- fix(core): @cocosheng-g 氏による #27012 で、ネットワークベースの MCP サーバーに対して NO_PROXY を尊重するようにしました
- fix(cli): @cocosheng-g 氏による #27004 で、NixOS および他のディストリビューションにおけるサンドボックスでの権限拒否エラーを解決しました
- fix(ui): @devr0306 氏による #27057 で、編集ウィンドウの末尾に改行を保持するようにしました
- fix(core): @galz10 氏による #27067 で、Vertex AI が hasAccessToPreviewModels を設定し、攻撃的な 404 フォールバック取り消しを削除することを保証しました
fix(core): @DavidAPierce 氏による IPC 間での安定した管理者設定の比較を保証し、再起動ループを防ぎました <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4448504713" data-permission-text="Title is private" data-url="https://github.com/google-gemini/gemini-cli/issues/27066" data-hovercard-type="pull_request" data-hovercard-url="/google-gemini/gemini-cli/pull/27066/hovercard" href="https://github.com/google-gemini/gemini-cli/pull/
原文を表示
What's Changed
- chore(release): bump version to 0.44.0-nightly.20260512.g022e8baef by @gemini-cli-robot in #26957
- Changelog for v0.42.0 by @gemini-cli-robot in #26958
- Refactor: Eliminate no-unsafe-return suppressions via strict type validation by @M-DEV-1 in #20668
- Changelog for v0.43.0-preview.0 by @gemini-cli-robot in #26959
- feat(core): change agent registration to first-wins and prioritize project by @adamfweidman in #26953
- feat(cli): merge Auto modes into a single Auto mode by @DavidAPierce in #26714
- fix(core): preserve OAuth refresh tokens during rotation and retrieval by @cocosheng-g in #26924
- fix(cli): allow keychain auth for --list-sessions and non-interactive mode by @cocosheng-g in #26921
- fix(core): handle EISDIR on virtual drives in memory discovery by @cocosheng-g in #26985
- fix(cli): auto-approve shell redirections in AUTO_EDIT mode by @cocosheng-g in #27003
- ci: suppress bot comments during standard triage maintenance by @cocosheng-g in #27006
- fix(core): refresh MCP OAuth token usage after re-auth by @sahilkirad in #26312
- fix(ui): clamped table column widths by @devr0306 in #26991
- fix(core): isolate subagent thread context by @akh64bit in #26449
- chore: add execution permission to scripts/review.sh by @scidomino in #27009
- fix(core): made context files append instead of replace by @devr0306 in #26950
- fix: add system PATH fallback for ripgrep resolution (#26777) by @cocosheng-g in #26868
- chore: clean up launched memory features by @SandyTao520 in #26941
- fix(core): throttle shell text output and bound live UI buffer by @emersonbusson in #26955
- fix(cli): don't crash when an @-mention captures a non-path blob by @ifitisit in #25980
- fix(core): ensure stable fallback for restricted preview models by @galz10 in #26999
- feat(core): expose RAG snippets to local log file for debugging by @spencer426 in #27016
- fix(acp/auth): prevent conflicting credentials on enterprise gateways and support optional API keys natively by @sripasg in #27021
- fix(core): respect NO_PROXY for network-based MCP servers by @cocosheng-g in #27012
- fix(cli): resolve permission denied in sandbox on NixOS and other distros by @cocosheng-g in #27004
- fix(ui): preserve new line at the end of edit window by @devr0306 in #27057
- fix(core): ensure Vertex AI sets hasAccessToPreviewModels and remove aggressive 404 fallback revocation by @galz10 in #27067
fix(core): ensure stable admin settings comparison across IPC to prevent restart loop by @DavidAPierce in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4448504713" data-permission-text="Title is private" data-url="https://github.com/google-gemini/gemini-cli/issues/27066" data-hovercard-type="pull_request" data-hovercard-url="/google-gemini/gemini-cli/pull/27066/hovercard" href="https://github.com/google-gemini/gemini-cli/pull/
関連記事
Gemini CLI v0.46.0 のリリース
Gemini CLI チームがバージョン 0.46.0 を公開し、PTY リサイズ処理におけるネイティブクラッシュ対策を強化した。
Gemini CLI v0.47.0-preview.0 のリリース
Gemini CLI ロボットが、バージョンを 0.47.0-nightly.20260602.gcfcecebe8 に更新してリリースしました。
Gemini CLI v0.46.0-preview.3 のリリース
Gemini CLI チームが、バージョン 0.46.0 のプレビュー版 3 を公開しました。
今日のまとめ
AI日報で今日の重要ニュースをまとめ読み