@google/gemini-cli-core 0.21.0-nightly.20251219.70696e364 → 0.21.0-nightly.20251220.41a1a3eed

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (172) hide show
  1. package/dist/docs/CONTRIBUTING.md +546 -0
  2. package/dist/docs/architecture.md +80 -0
  3. package/dist/docs/assets/connected_devtools.png +0 -0
  4. package/dist/docs/assets/gemini-screenshot.png +0 -0
  5. package/dist/docs/assets/release_patch.png +0 -0
  6. package/dist/docs/assets/theme-ansi-light.png +0 -0
  7. package/dist/docs/assets/theme-ansi.png +0 -0
  8. package/dist/docs/assets/theme-atom-one.png +0 -0
  9. package/dist/docs/assets/theme-ayu-light.png +0 -0
  10. package/dist/docs/assets/theme-ayu.png +0 -0
  11. package/dist/docs/assets/theme-custom.png +0 -0
  12. package/dist/docs/assets/theme-default-light.png +0 -0
  13. package/dist/docs/assets/theme-default.png +0 -0
  14. package/dist/docs/assets/theme-dracula.png +0 -0
  15. package/dist/docs/assets/theme-github-light.png +0 -0
  16. package/dist/docs/assets/theme-github.png +0 -0
  17. package/dist/docs/assets/theme-google-light.png +0 -0
  18. package/dist/docs/assets/theme-xcode-light.png +0 -0
  19. package/dist/docs/changelogs/index.md +592 -0
  20. package/dist/docs/changelogs/latest.md +225 -0
  21. package/dist/docs/changelogs/preview.md +129 -0
  22. package/dist/docs/changelogs/releases.md +896 -0
  23. package/dist/docs/cli/authentication.md +3 -0
  24. package/dist/docs/cli/checkpointing.md +94 -0
  25. package/dist/docs/cli/commands.md +354 -0
  26. package/dist/docs/cli/configuration.md +780 -0
  27. package/dist/docs/cli/custom-commands.md +315 -0
  28. package/dist/docs/cli/enterprise.md +565 -0
  29. package/dist/docs/cli/gemini-ignore.md +71 -0
  30. package/dist/docs/cli/gemini-md.md +108 -0
  31. package/dist/docs/cli/generation-settings.md +210 -0
  32. package/dist/docs/cli/headless.md +388 -0
  33. package/dist/docs/cli/index.md +63 -0
  34. package/dist/docs/cli/keyboard-shortcuts.md +143 -0
  35. package/dist/docs/cli/model-routing.md +37 -0
  36. package/dist/docs/cli/model.md +62 -0
  37. package/dist/docs/cli/sandbox.md +171 -0
  38. package/dist/docs/cli/session-management.md +158 -0
  39. package/dist/docs/cli/settings.md +112 -0
  40. package/dist/docs/cli/system-prompt.md +93 -0
  41. package/dist/docs/cli/telemetry.md +791 -0
  42. package/dist/docs/cli/themes.md +237 -0
  43. package/dist/docs/cli/token-caching.md +20 -0
  44. package/dist/docs/cli/trusted-folders.md +95 -0
  45. package/dist/docs/cli/tutorials.md +83 -0
  46. package/dist/docs/cli/uninstall.md +47 -0
  47. package/dist/docs/core/index.md +101 -0
  48. package/dist/docs/core/memport.md +244 -0
  49. package/dist/docs/core/policy-engine.md +267 -0
  50. package/dist/docs/core/tools-api.md +131 -0
  51. package/dist/docs/examples/proxy-script.md +83 -0
  52. package/dist/docs/extensions/extension-releasing.md +183 -0
  53. package/dist/docs/extensions/getting-started-extensions.md +245 -0
  54. package/dist/docs/extensions/index.md +293 -0
  55. package/dist/docs/faq.md +154 -0
  56. package/dist/docs/get-started/authentication.md +321 -0
  57. package/dist/docs/get-started/configuration-v1.md +888 -0
  58. package/dist/docs/get-started/configuration.md +1444 -0
  59. package/dist/docs/get-started/deployment.md +143 -0
  60. package/dist/docs/get-started/examples.md +219 -0
  61. package/dist/docs/get-started/gemini-3.md +116 -0
  62. package/dist/docs/get-started/index.md +71 -0
  63. package/dist/docs/get-started/installation.md +141 -0
  64. package/dist/docs/hooks/best-practices.md +806 -0
  65. package/dist/docs/hooks/index.md +665 -0
  66. package/dist/docs/hooks/reference.md +168 -0
  67. package/dist/docs/hooks/writing-hooks.md +1026 -0
  68. package/dist/docs/ide-integration/ide-companion-spec.md +267 -0
  69. package/dist/docs/ide-integration/index.md +202 -0
  70. package/dist/docs/index.md +147 -0
  71. package/dist/docs/integration-tests.md +211 -0
  72. package/dist/docs/issue-and-pr-automation.md +134 -0
  73. package/dist/docs/local-development.md +128 -0
  74. package/dist/docs/mermaid/context.mmd +103 -0
  75. package/dist/docs/mermaid/render-path.mmd +64 -0
  76. package/dist/docs/npm.md +62 -0
  77. package/dist/docs/quota-and-pricing.md +158 -0
  78. package/dist/docs/release-confidence.md +164 -0
  79. package/dist/docs/releases.md +540 -0
  80. package/dist/docs/sidebar.json +297 -0
  81. package/dist/docs/tools/file-system.md +217 -0
  82. package/dist/docs/tools/index.md +95 -0
  83. package/dist/docs/tools/mcp-server.md +1044 -0
  84. package/dist/docs/tools/memory.md +54 -0
  85. package/dist/docs/tools/shell.md +260 -0
  86. package/dist/docs/tools/todos.md +57 -0
  87. package/dist/docs/tools/web-fetch.md +59 -0
  88. package/dist/docs/tools/web-search.md +42 -0
  89. package/dist/docs/tos-privacy.md +96 -0
  90. package/dist/docs/troubleshooting.md +158 -0
  91. package/dist/google-gemini-cli-core-0.21.0-nightly.20251219.70696e364.tgz +0 -0
  92. package/dist/src/agents/delegate-to-agent-tool.test.js +1 -0
  93. package/dist/src/agents/delegate-to-agent-tool.test.js.map +1 -1
  94. package/dist/src/agents/introspection-agent.d.ts +23 -0
  95. package/dist/src/agents/introspection-agent.js +72 -0
  96. package/dist/src/agents/introspection-agent.js.map +1 -0
  97. package/dist/src/agents/introspection-agent.test.d.ts +6 -0
  98. package/dist/src/agents/introspection-agent.test.js +47 -0
  99. package/dist/src/agents/introspection-agent.test.js.map +1 -0
  100. package/dist/src/agents/local-executor.js +14 -12
  101. package/dist/src/agents/local-executor.js.map +1 -1
  102. package/dist/src/agents/local-executor.test.js +3 -0
  103. package/dist/src/agents/local-executor.test.js.map +1 -1
  104. package/dist/src/agents/registry.js +6 -0
  105. package/dist/src/agents/registry.js.map +1 -1
  106. package/dist/src/agents/registry.test.js +16 -0
  107. package/dist/src/agents/registry.test.js.map +1 -1
  108. package/dist/src/config/config.d.ts +6 -0
  109. package/dist/src/config/config.js +22 -0
  110. package/dist/src/config/config.js.map +1 -1
  111. package/dist/src/config/config.test.js +59 -1
  112. package/dist/src/config/config.test.js.map +1 -1
  113. package/dist/src/core/client.js +8 -4
  114. package/dist/src/core/client.js.map +1 -1
  115. package/dist/src/core/client.test.js +20 -0
  116. package/dist/src/core/client.test.js.map +1 -1
  117. package/dist/src/core/clientHookTriggers.js +2 -2
  118. package/dist/src/core/clientHookTriggers.js.map +1 -1
  119. package/dist/src/core/coreToolHookTriggers.js +3 -3
  120. package/dist/src/core/coreToolHookTriggers.js.map +1 -1
  121. package/dist/src/core/geminiChatHookTriggers.js +3 -3
  122. package/dist/src/core/geminiChatHookTriggers.js.map +1 -1
  123. package/dist/src/core/sessionHookTriggers.js +3 -3
  124. package/dist/src/core/sessionHookTriggers.js.map +1 -1
  125. package/dist/src/generated/git-commit.d.ts +2 -2
  126. package/dist/src/generated/git-commit.js +2 -2
  127. package/dist/src/hooks/hookEventHandler.js +10 -4
  128. package/dist/src/hooks/hookEventHandler.js.map +1 -1
  129. package/dist/src/hooks/hookEventHandler.test.js +40 -0
  130. package/dist/src/hooks/hookEventHandler.test.js.map +1 -1
  131. package/dist/src/hooks/hookRunner.js +12 -8
  132. package/dist/src/hooks/hookRunner.js.map +1 -1
  133. package/dist/src/hooks/hookRunner.test.js +58 -33
  134. package/dist/src/hooks/hookRunner.test.js.map +1 -1
  135. package/dist/src/mcp/oauth-provider.js +6 -2
  136. package/dist/src/mcp/oauth-provider.js.map +1 -1
  137. package/dist/src/mcp/oauth-provider.test.js +4 -1
  138. package/dist/src/mcp/oauth-provider.test.js.map +1 -1
  139. package/dist/src/mcp/oauth-utils.d.ts +8 -1
  140. package/dist/src/mcp/oauth-utils.js +30 -1
  141. package/dist/src/mcp/oauth-utils.js.map +1 -1
  142. package/dist/src/mcp/oauth-utils.test.js +42 -0
  143. package/dist/src/mcp/oauth-utils.test.js.map +1 -1
  144. package/dist/src/services/contextManager.d.ts +5 -11
  145. package/dist/src/services/contextManager.js +20 -17
  146. package/dist/src/services/contextManager.js.map +1 -1
  147. package/dist/src/services/contextManager.test.js +40 -41
  148. package/dist/src/services/contextManager.test.js.map +1 -1
  149. package/dist/src/tools/get-internal-docs.d.ts +27 -0
  150. package/dist/src/tools/get-internal-docs.js +129 -0
  151. package/dist/src/tools/get-internal-docs.js.map +1 -0
  152. package/dist/src/tools/get-internal-docs.test.d.ts +6 -0
  153. package/dist/src/tools/get-internal-docs.test.js +56 -0
  154. package/dist/src/tools/get-internal-docs.test.js.map +1 -0
  155. package/dist/src/tools/tool-names.d.ts +1 -0
  156. package/dist/src/tools/tool-names.js +1 -0
  157. package/dist/src/tools/tool-names.js.map +1 -1
  158. package/dist/src/utils/environmentContext.js +3 -0
  159. package/dist/src/utils/environmentContext.js.map +1 -1
  160. package/dist/src/utils/environmentContext.test.js +2 -0
  161. package/dist/src/utils/environmentContext.test.js.map +1 -1
  162. package/dist/src/utils/events.d.ts +3 -2
  163. package/dist/src/utils/events.js.map +1 -1
  164. package/dist/src/utils/memoryDiscovery.js +1 -1
  165. package/dist/src/utils/memoryDiscovery.js.map +1 -1
  166. package/dist/src/utils/memoryDiscovery.test.js +3 -1
  167. package/dist/src/utils/memoryDiscovery.test.js.map +1 -1
  168. package/dist/src/utils/shell-utils.js +25 -4
  169. package/dist/src/utils/shell-utils.js.map +1 -1
  170. package/dist/tsconfig.tsbuildinfo +1 -1
  171. package/package.json +1 -1
  172. package/dist/google-gemini-cli-core-0.21.0-nightly.20251218.739c02bd6.tgz +0 -0
@@ -0,0 +1,896 @@
1
+ # Gemini CLI changelog
2
+
3
+ Gemini CLI has three major release channels: nightly, preview, and stable. For
4
+ most users, we recommend the stable release.
5
+
6
+ On this page, you can find information regarding the current releases and
7
+ highlights from each release.
8
+
9
+ For the full changelog, including nightly releases, refer to
10
+ [Releases - google-gemini/gemini-cli](https://github.com/google-gemini/gemini-cli/releases)
11
+ on GitHub.
12
+
13
+ ## Current Releases
14
+
15
+ | Release channel | Notes |
16
+ | :------------------------------------------ | :---------------------------------------------- |
17
+ | Nightly | Nightly release with the most recent changes. |
18
+ | [Preview](#release-v0220-preview-0-preview) | Experimental features ready for early feedback. |
19
+ | [Latest](#release-v0210---v0211-latest) | Stable, recommended for general use. |
20
+
21
+ ## Release v0.21.0 - v0.21.1 (Latest)
22
+
23
+ ### Highlights
24
+
25
+ - **⚡️⚡️⚡️ Gemini 3 Flash + Gemini CLI:** If you are a paid user, you can now
26
+ enable Gemini 3 Pro and Gemini 3 Flash. Go to `/settings` and set **Preview
27
+ Features** to `true` to enable Gemini 3. For more information:
28
+ [Gemini 3 Flash is now available in Gemini CLI](https://developers.googleblog.com/gemini-3-flash-is-now-available-in-gemini-cli/).
29
+
30
+ ### What's Changed
31
+
32
+ - refactor(stdio): always patch stdout and use createWorkingStdio for clean
33
+ output by @allenhutchison in
34
+ https://github.com/google-gemini/gemini-cli/pull/14159
35
+ - chore(release): bump version to 0.21.0-nightly.20251202.2d935b379 by
36
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14409
37
+ - implement fuzzy search inside settings by @sehoon38 in
38
+ https://github.com/google-gemini/gemini-cli/pull/13864
39
+ - feat: enable message bus integration by default by @allenhutchison in
40
+ https://github.com/google-gemini/gemini-cli/pull/14329
41
+ - docs: Recommend using --debug intead of --verbose for CLI debugging by @bbiggs
42
+ in https://github.com/google-gemini/gemini-cli/pull/14334
43
+ - feat: consolidate remote MCP servers to use `url` in config by
44
+ @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/13762
45
+ - Restrict integration tests tools by @scidomino in
46
+ https://github.com/google-gemini/gemini-cli/pull/14403
47
+ - track github repository names in telemetry events by @IamRiddhi in
48
+ https://github.com/google-gemini/gemini-cli/pull/13670
49
+ - Allow telemetry exporters to GCP to utilize user's login credentials, if
50
+ requested by @mboshernitsan in
51
+ https://github.com/google-gemini/gemini-cli/pull/13778
52
+ - refactor(editor): use const assertion for editor types with single source of
53
+ truth by @amsminn in https://github.com/google-gemini/gemini-cli/pull/8604
54
+ - fix(security): Fix npm audit vulnerabilities in glob and body-parser by
55
+ @afarber in https://github.com/google-gemini/gemini-cli/pull/14090
56
+ - Add new enterprise instructions by @chrstnb in
57
+ https://github.com/google-gemini/gemini-cli/pull/8641
58
+ - feat(hooks): Hook Session Lifecycle & Compression Integration by @Edilmo in
59
+ https://github.com/google-gemini/gemini-cli/pull/14151
60
+ - Avoid triggering refreshStatic unless there really is a banner to display. by
61
+ @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14328
62
+ - feat(hooks): Hooks Commands Panel, Enable/Disable, and Migrate by @Edilmo in
63
+ https://github.com/google-gemini/gemini-cli/pull/14225
64
+ - fix: Bundle default policies for npx distribution by @allenhutchison in
65
+ https://github.com/google-gemini/gemini-cli/pull/14457
66
+ - feat(hooks): Hook System Documentation by @Edilmo in
67
+ https://github.com/google-gemini/gemini-cli/pull/14307
68
+ - Fix tests by @scidomino in
69
+ https://github.com/google-gemini/gemini-cli/pull/14458
70
+ - feat: add scheduled workflow to close stale issues by @galz10 in
71
+ https://github.com/google-gemini/gemini-cli/pull/14404
72
+ - feat: Support Extension Hooks with Security Warning by @abhipatel12 in
73
+ https://github.com/google-gemini/gemini-cli/pull/14460
74
+ - feat: Add enableAgents experimental flag by @adamfweidman in
75
+ https://github.com/google-gemini/gemini-cli/pull/14371
76
+ - docs: fix typo 'socus' to 'focus' in todos.md by @Viktor286 in
77
+ https://github.com/google-gemini/gemini-cli/pull/14374
78
+ - Markdown export: move the emoji to the end of the line by @mhansen in
79
+ https://github.com/google-gemini/gemini-cli/pull/12278
80
+ - fix(acp): prevent unnecessary credential cache clearing on re-authent… by
81
+ @h-michael in https://github.com/google-gemini/gemini-cli/pull/9410
82
+ - fix(cli): Fix word navigation for CJK characters by @SandyTao520 in
83
+ https://github.com/google-gemini/gemini-cli/pull/14475
84
+ - Remove example extension by @chrstnb in
85
+ https://github.com/google-gemini/gemini-cli/pull/14376
86
+ - Add commands for listing and updating per-extension settings by @chrstnb in
87
+ https://github.com/google-gemini/gemini-cli/pull/12664
88
+ - chore(tests): remove obsolete test for hierarchical memory by @pareshjoshij in
89
+ https://github.com/google-gemini/gemini-cli/pull/13122
90
+ - feat(cli): support /copy in remote sessions using OSC52 by @ismellpillows in
91
+ https://github.com/google-gemini/gemini-cli/pull/13471
92
+ - Update setting search UX by @Adib234 in
93
+ https://github.com/google-gemini/gemini-cli/pull/14451
94
+ - Fix(cli): Improve Homebrew update instruction to specify gemini-cli by
95
+ @DaanVersavel in https://github.com/google-gemini/gemini-cli/pull/14502
96
+ - do not toggle the setting item when entering space by @sehoon38 in
97
+ https://github.com/google-gemini/gemini-cli/pull/14489
98
+ - fix: improve retry logic for fetch errors and network codes by @megha1188 in
99
+ https://github.com/google-gemini/gemini-cli/pull/14439
100
+ - remove unused isSearching field by @sehoon38 in
101
+ https://github.com/google-gemini/gemini-cli/pull/14509
102
+ - feat(mcp): add `--type` alias for `--transport` flag in gemini mcp add by
103
+ @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14503
104
+ - feat(cli): Move key restore logic to core by @cocosheng-g in
105
+ https://github.com/google-gemini/gemini-cli/pull/13013
106
+ - feat: add auto-execute on Enter behavior to argumentless MCP prompts by
107
+ @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14510
108
+ - fix(shell): cursor visibility when using interactive mode by @aswinashok44 in
109
+ https://github.com/google-gemini/gemini-cli/pull/14095
110
+ - Adding session id as part of json o/p by @MJjainam in
111
+ https://github.com/google-gemini/gemini-cli/pull/14504
112
+ - fix(extensions): resolve GitHub API 415 error for source tarballs by
113
+ @jpoehnelt in https://github.com/google-gemini/gemini-cli/pull/13319
114
+ - fix(client): Correctly latch hasFailedCompressionAttempt flag by @pareshjoshij
115
+ in https://github.com/google-gemini/gemini-cli/pull/13002
116
+ - Disable flaky extension reloading test on linux by @chrstnb in
117
+ https://github.com/google-gemini/gemini-cli/pull/14528
118
+ - Add support for MCP dynamic tool update by `notifications/tools/list_changed`
119
+ by @Adib234 in https://github.com/google-gemini/gemini-cli/pull/14375
120
+ - Fix privacy screen for legacy tier users by @scidomino in
121
+ https://github.com/google-gemini/gemini-cli/pull/14522
122
+ - feat: Exclude maintainer labeled issues from stale issue closer by @galz10 in
123
+ https://github.com/google-gemini/gemini-cli/pull/14532
124
+ - Grant chained workflows proper permission. by @scidomino in
125
+ https://github.com/google-gemini/gemini-cli/pull/14534
126
+ - Make trigger_e2e manually fireable. by @scidomino in
127
+ https://github.com/google-gemini/gemini-cli/pull/14547
128
+ - Write e2e status to local repo not forked repo by @scidomino in
129
+ https://github.com/google-gemini/gemini-cli/pull/14549
130
+ - Fixes [API Error: Cannot read properties of undefined (reading 'error')] by
131
+ @silviojr in https://github.com/google-gemini/gemini-cli/pull/14553
132
+ - Trigger chained e2e tests on all pull requests by @scidomino in
133
+ https://github.com/google-gemini/gemini-cli/pull/14551
134
+ - Fix bug in the shellExecutionService resulting in both truncation and 3X bloat
135
+ by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14545
136
+ - Fix issue where we were passing the model content reflecting terminal line
137
+ wrapping. by @jacob314 in
138
+ https://github.com/google-gemini/gemini-cli/pull/14566
139
+ - chore/release: bump version to 0.21.0-nightly.20251204.3da4fd5f7 by
140
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14476
141
+ - feat(sessions): use 1-line generated session summary to describe sessions by
142
+ @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14467
143
+ - Use Robot PAT for chained e2e merge queue skipper by @scidomino in
144
+ https://github.com/google-gemini/gemini-cli/pull/14585
145
+ - fix(core): improve API response error handling and retry logic by @mattKorwel
146
+ in https://github.com/google-gemini/gemini-cli/pull/14563
147
+ - Docs: Model routing clarification by @jkcinouye in
148
+ https://github.com/google-gemini/gemini-cli/pull/14373
149
+ - expose previewFeatures flag in a2a by @sehoon38 in
150
+ https://github.com/google-gemini/gemini-cli/pull/14550
151
+ - Fix emoji width in debug console. by @jacob314 in
152
+ https://github.com/google-gemini/gemini-cli/pull/14593
153
+ - Fully detach autoupgrade process by @scidomino in
154
+ https://github.com/google-gemini/gemini-cli/pull/14595
155
+ - Docs: Update Gemini 3 on Gemini CLI documentation by @jkcinouye in
156
+ https://github.com/google-gemini/gemini-cli/pull/14601
157
+ - Disallow floating promises. by @gundermanc in
158
+ https://github.com/google-gemini/gemini-cli/pull/14605
159
+ - chore/release: bump version to 0.21.0-nightly.20251207.025e450ac by
160
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14662
161
+ - feat(modelAvailabilityService): integrate model availability service into
162
+ backend logic by @adamfweidman in
163
+ https://github.com/google-gemini/gemini-cli/pull/14470
164
+ - Add prompt_id propagation in a2a-server task by @koxkox111 in
165
+ https://github.com/google-gemini/gemini-cli/pull/14581
166
+ - Fix: Prevent freezing in non-interactive Gemini CLI when debug mode is enabled
167
+ by @parthasaradhie in https://github.com/google-gemini/gemini-cli/pull/14580
168
+ - fix(audio): improve reading of audio files by @jackwotherspoon in
169
+ https://github.com/google-gemini/gemini-cli/pull/14658
170
+ - Update automated triage workflow to stop assigning priority labels by
171
+ @skeshive in https://github.com/google-gemini/gemini-cli/pull/14717
172
+ - set failed status when chained e2e fails by @scidomino in
173
+ https://github.com/google-gemini/gemini-cli/pull/14725
174
+ - feat(github action) Triage and Label Pull Requests by Size and Comple… by
175
+ @DaanVersavel in https://github.com/google-gemini/gemini-cli/pull/5571
176
+ - refactor(telemetry): Improve previous PR that allows telemetry to use the CLI
177
+ auth and add testing by @mboshernitsan in
178
+ https://github.com/google-gemini/gemini-cli/pull/14589
179
+ - Always set status in chained_e2e workflow by @scidomino in
180
+ https://github.com/google-gemini/gemini-cli/pull/14730
181
+ - feat: Add OTEL log event `gemini_cli.startup_stats` for startup stats. by
182
+ @kevin-ramdass in https://github.com/google-gemini/gemini-cli/pull/14734
183
+ - feat: auto-execute on slash command completion functions by @jackwotherspoon
184
+ in https://github.com/google-gemini/gemini-cli/pull/14584
185
+ - Docs: Proper release notes by @jkcinouye in
186
+ https://github.com/google-gemini/gemini-cli/pull/14405
187
+ - Add support for user-scoped extension settings by @chrstnb in
188
+ https://github.com/google-gemini/gemini-cli/pull/13748
189
+ - refactor(core): Improve environment variable handling in shell execution by
190
+ @galz10 in https://github.com/google-gemini/gemini-cli/pull/14742
191
+ - Remove old E2E Workflows by @scidomino in
192
+ https://github.com/google-gemini/gemini-cli/pull/14749
193
+ - fix: handle missing local extension config and skip hooks when disabled by
194
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14744
195
+ - chore/release: bump version to 0.21.0-nightly.20251209.ec9a8c7a7 by
196
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14751
197
+ - feat: Add support for MCP Resources by @MrLesk in
198
+ https://github.com/google-gemini/gemini-cli/pull/13178
199
+ - Always set pending status in E2E tests by @scidomino in
200
+ https://github.com/google-gemini/gemini-cli/pull/14756
201
+ - fix(lint): upgrade pip and use public pypi for yamllint by @allenhutchison in
202
+ https://github.com/google-gemini/gemini-cli/pull/14746
203
+ - fix: use Gemini API supported image formats for clipboard by @jackwotherspoon
204
+ in https://github.com/google-gemini/gemini-cli/pull/14762
205
+ - feat(a2a): Introduce restore command for a2a server by @cocosheng-g in
206
+ https://github.com/google-gemini/gemini-cli/pull/13015
207
+ - allow final:true to be returned on a2a server edit calls. by @DavidAPierce in
208
+ https://github.com/google-gemini/gemini-cli/pull/14747
209
+ - (fix) Automated pr labeller by @DaanVersavel in
210
+ https://github.com/google-gemini/gemini-cli/pull/14788
211
+ - Update CODEOWNERS by @kklashtorny1 in
212
+ https://github.com/google-gemini/gemini-cli/pull/14830
213
+ - Docs: Fix errors preventing site rebuild. by @jkcinouye in
214
+ https://github.com/google-gemini/gemini-cli/pull/14842
215
+ - chore(deps): bump express from 5.1.0 to 5.2.0 by @dependabot[bot] in
216
+ https://github.com/google-gemini/gemini-cli/pull/14325
217
+ - fix(patch): cherry-pick 3f5f030 to release/v0.21.0-preview.0-pr-14843 to patch
218
+ version v0.21.0-preview.0 and create version 0.21.0-preview.1 by
219
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14851
220
+ - fix(patch): cherry-pick ee6556c to release/v0.21.0-preview.1-pr-14691 to patch
221
+ version v0.21.0-preview.1 and create version 0.21.0-preview.2 by
222
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14908
223
+ - fix(patch): cherry-pick 54de675 to release/v0.21.0-preview.2-pr-14961 by
224
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14968
225
+ - fix(patch): cherry-pick 12cbe32 to release/v0.21.0-preview.3-pr-15000 to patch
226
+ version v0.21.0-preview.3 and create version 0.21.0-preview.4 by
227
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15003
228
+ - fix(patch): cherry-pick edbe548 to release/v0.21.0-preview.4-pr-15007 to patch
229
+ version v0.21.0-preview.4 and create version 0.21.0-preview.5 by
230
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15015
231
+ - fix(patch): cherry-pick 2995af6 to release/v0.21.0-preview.5-pr-15131 to patch
232
+ version v0.21.0-preview.5 and create version 0.21.0-preview.6 by
233
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15153
234
+
235
+ **Full Changelog**:
236
+ https://github.com/google-gemini/gemini-cli/compare/v0.20.2...v0.21.0
237
+
238
+ ## Release v0.22.0-preview-0 (Preview)
239
+
240
+ ### What's Changed
241
+
242
+ - feat(ide): fallback to GEMINI_CLI_IDE_AUTH_TOKEN env var by @skeshive in
243
+ https://github.com/google-gemini/gemini-cli/pull/14843
244
+ - feat: display quota stats for unused models in /stats by @sehoon38 in
245
+ https://github.com/google-gemini/gemini-cli/pull/14764
246
+ - feat: ensure codebase investigator uses preview model when main agent does by
247
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14412
248
+ - chore: add closing reason to stale bug workflow by @galz10 in
249
+ https://github.com/google-gemini/gemini-cli/pull/14861
250
+ - Send the model and CLI version with the user agent by @gundermanc in
251
+ https://github.com/google-gemini/gemini-cli/pull/14865
252
+ - refactor(sessions): move session summary generation to startup by
253
+ @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14691
254
+ - Limit search depth in path corrector by @scidomino in
255
+ https://github.com/google-gemini/gemini-cli/pull/14869
256
+ - Fix: Correct typo in code comment by @kuishou68 in
257
+ https://github.com/google-gemini/gemini-cli/pull/14671
258
+ - feat(core): Plumbing for late resolution of model configs. by @joshualitt in
259
+ https://github.com/google-gemini/gemini-cli/pull/14597
260
+ - feat: attempt more error parsing by @adamfweidman in
261
+ https://github.com/google-gemini/gemini-cli/pull/14899
262
+ - Add missing await. by @gundermanc in
263
+ https://github.com/google-gemini/gemini-cli/pull/14910
264
+ - feat(core): Add support for transcript_path in hooks for git-ai/Gemini
265
+ extension by @svarlamov in
266
+ https://github.com/google-gemini/gemini-cli/pull/14663
267
+ - refactor: implement DelegateToAgentTool with discriminated union by
268
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14769
269
+ - feat: reset availabilityService on /auth by @adamfweidman in
270
+ https://github.com/google-gemini/gemini-cli/pull/14911
271
+ - chore/release: bump version to 0.21.0-nightly.20251211.8c83e1ea9 by
272
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14924
273
+ - Fix: Correctly detect MCP tool errors by @kevin-ramdass in
274
+ https://github.com/google-gemini/gemini-cli/pull/14937
275
+ - increase labeler timeout by @scidomino in
276
+ https://github.com/google-gemini/gemini-cli/pull/14922
277
+ - tool(cli): tweak the frontend tool to be aware of more core files from the cli
278
+ by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14962
279
+ - feat(cli): polish cached token stats and simplify stats display when quota is
280
+ present. by @jacob314 in
281
+ https://github.com/google-gemini/gemini-cli/pull/14961
282
+ - feat(settings-validation): add validation for settings schema by @lifefloating
283
+ in https://github.com/google-gemini/gemini-cli/pull/12929
284
+ - fix(ide): Update IDE extension to write auth token in env var by @skeshive in
285
+ https://github.com/google-gemini/gemini-cli/pull/14999
286
+ - Revert "chore(deps): bump express from 5.1.0 to 5.2.0" by @skeshive in
287
+ https://github.com/google-gemini/gemini-cli/pull/14998
288
+ - feat(a2a): Introduce /init command for a2a server by @cocosheng-g in
289
+ https://github.com/google-gemini/gemini-cli/pull/13419
290
+ - feat: support multi-file drag and drop of images by @jackwotherspoon in
291
+ https://github.com/google-gemini/gemini-cli/pull/14832
292
+ - fix(policy): allow codebase_investigator by default in read-only policy by
293
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15000
294
+ - refactor(ide ext): Update port file name + switch to 1-based index for
295
+ characters + remove truncation text by @skeshive in
296
+ https://github.com/google-gemini/gemini-cli/pull/10501
297
+ - fix(vscode-ide-companion): correct license generation for workspace
298
+ dependencies by @skeshive in
299
+ https://github.com/google-gemini/gemini-cli/pull/15004
300
+ - fix: temp fix for subagent invocation until subagent delegation is merged to
301
+ stable by @abhipatel12 in
302
+ https://github.com/google-gemini/gemini-cli/pull/15007
303
+ - test: update ide detection tests to make them more robust when run in an ide
304
+ by @kevin-ramdass in https://github.com/google-gemini/gemini-cli/pull/15008
305
+ - Remove flex from stats display. See snapshots for diffs. by @jacob314 in
306
+ https://github.com/google-gemini/gemini-cli/pull/14983
307
+ - Add license field into package.json by @jb-perez in
308
+ https://github.com/google-gemini/gemini-cli/pull/14473
309
+ - feat: Persistent "Always Allow" policies with granular shell & MCP support by
310
+ @allenhutchison in https://github.com/google-gemini/gemini-cli/pull/14737
311
+ - chore/release: bump version to 0.21.0-nightly.20251212.54de67536 by
312
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14969
313
+ - fix(core): commandPrefix word boundary and compound command safety by
314
+ @allenhutchison in https://github.com/google-gemini/gemini-cli/pull/15006
315
+ - chore(docs): add 'Maintainers only' label info to CONTRIBUTING.md by @jacob314
316
+ in https://github.com/google-gemini/gemini-cli/pull/14914
317
+ - Refresh hooks when refreshing extensions. by @scidomino in
318
+ https://github.com/google-gemini/gemini-cli/pull/14918
319
+ - Add clarity to error messages by @gsehgal in
320
+ https://github.com/google-gemini/gemini-cli/pull/14879
321
+ - chore : remove a redundant tip by @JayadityaGit in
322
+ https://github.com/google-gemini/gemini-cli/pull/14947
323
+ - chore/release: bump version to 0.21.0-nightly.20251213.977248e09 by
324
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15029
325
+ - Disallow redundant typecasts. by @gundermanc in
326
+ https://github.com/google-gemini/gemini-cli/pull/15030
327
+ - fix(auth): prioritize GEMINI_API_KEY env var and skip unnecessary key… by
328
+ @galz10 in https://github.com/google-gemini/gemini-cli/pull/14745
329
+ - fix: use zod for safety check result validation by @allenhutchison in
330
+ https://github.com/google-gemini/gemini-cli/pull/15026
331
+ - update(telemetry): add hashed_extension_name to field to extension events by
332
+ @kiranani in https://github.com/google-gemini/gemini-cli/pull/15025
333
+ - fix: similar to policy-engine, throw error in case of requiring tool execution
334
+ confirmation for non-interactive mode by @MayV in
335
+ https://github.com/google-gemini/gemini-cli/pull/14702
336
+ - Clean up processes in integration tests by @scidomino in
337
+ https://github.com/google-gemini/gemini-cli/pull/15102
338
+ - docs: update policy engine getting started and defaults by @NTaylorMullen in
339
+ https://github.com/google-gemini/gemini-cli/pull/15105
340
+ - Fix tool output fragmentation by encapsulating content in functionResponse by
341
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/13082
342
+ - Simplify method signature. by @scidomino in
343
+ https://github.com/google-gemini/gemini-cli/pull/15114
344
+ - Show raw input token counts in json output. by @jacob314 in
345
+ https://github.com/google-gemini/gemini-cli/pull/15021
346
+ - fix: Mark A2A requests as interactive by @MayV in
347
+ https://github.com/google-gemini/gemini-cli/pull/15108
348
+ - use previewFeatures to determine which pro model to use for A2A by @sehoon38
349
+ in https://github.com/google-gemini/gemini-cli/pull/15131
350
+ - refactor(cli): fix settings merging so that settings using the new json format
351
+ take priority over ones using the old format by @jacob314 in
352
+ https://github.com/google-gemini/gemini-cli/pull/15116
353
+
354
+ **Full Changelog**:
355
+ https://github.com/google-gemini/gemini-cli/compare/v0.21.0-preview.6...v0.22.0-preview.0
356
+
357
+ ## Release v0.20.0 - v0.20.2
358
+
359
+ ### What's Changed
360
+
361
+ - Update error codes when process exiting the gemini cli by @megha1188 in
362
+ https://github.com/google-gemini/gemini-cli/pull/13728
363
+ - chore(release): bump version to 0.20.0-nightly.20251126.d2a6cff4d by
364
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13835
365
+ - feat(core): Improve request token calculation accuracy by @SandyTao520 in
366
+ https://github.com/google-gemini/gemini-cli/pull/13824
367
+ - Changes in system instruction to adapt to gemini 3.0 to ensure that the CLI
368
+ explains its actions before calling tools by @silviojr in
369
+ https://github.com/google-gemini/gemini-cli/pull/13810
370
+ - feat(hooks): Hook Tool Execution Integration by @Edilmo in
371
+ https://github.com/google-gemini/gemini-cli/pull/9108
372
+ - Add support for MCP server instructions behind config option by @chrstnb in
373
+ https://github.com/google-gemini/gemini-cli/pull/13432
374
+ - Update System Instructions for interactive vs non-interactive mode. by
375
+ @aishaneeshah in https://github.com/google-gemini/gemini-cli/pull/12315
376
+ - Add consent flag to Link command by @kevinjwang1 in
377
+ https://github.com/google-gemini/gemini-cli/pull/13832
378
+ - feat(mcp): Inject GoogleCredentialProvider headers in McpClient by
379
+ @sai-sunder-s in https://github.com/google-gemini/gemini-cli/pull/13783
380
+ - feat(core): implement towards policy-driven model fallback mechanism by
381
+ @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/13781
382
+ - feat(core): Add configurable inactivity timeout for shell commands by @galz10
383
+ in https://github.com/google-gemini/gemini-cli/pull/13531
384
+ - fix(auth): improve API key authentication flow by @galz10 in
385
+ https://github.com/google-gemini/gemini-cli/pull/13829
386
+ - feat(hooks): Hook LLM Request/Response Integration by @Edilmo in
387
+ https://github.com/google-gemini/gemini-cli/pull/9110
388
+ - feat(ui): Show waiting MCP servers in ConfigInitDisplay by @werdnum in
389
+ https://github.com/google-gemini/gemini-cli/pull/13721
390
+ - Add usage limit remaining in /stats by @sehoon38 in
391
+ https://github.com/google-gemini/gemini-cli/pull/13843
392
+ - feat(shell): Standardize pager to 'cat' for shell execution by model by
393
+ @galz10 in https://github.com/google-gemini/gemini-cli/pull/13878
394
+ - chore/release: bump version to 0.20.0-nightly.20251127.5bed97064 by
395
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13877
396
+ - Revert to default LICENSE (Revert #13449) by @scidomino in
397
+ https://github.com/google-gemini/gemini-cli/pull/13876
398
+ - update(telemetry): OTel API response event with finish reasons by @kiranani in
399
+ https://github.com/google-gemini/gemini-cli/pull/13849
400
+ - feat(hooks): Hooks Comprehensive Integration Testing by @Edilmo in
401
+ https://github.com/google-gemini/gemini-cli/pull/9112
402
+ - chore: fix session browser test and skip hook system tests by @jackwotherspoon
403
+ in https://github.com/google-gemini/gemini-cli/pull/14099
404
+ - feat(telemetry): Add Semantic logging for to ApiRequestEvents by @kiranani in
405
+ https://github.com/google-gemini/gemini-cli/pull/13912
406
+ - test: Add verification for $schema property in settings schema by
407
+ @maryamariyan in https://github.com/google-gemini/gemini-cli/pull/13497
408
+ - Fixes `/clear` command to preserve input history for up-arrow navigation while
409
+ still clearing the context window and screen by @korade-krushna in
410
+ https://github.com/google-gemini/gemini-cli/pull/14182
411
+ - fix(core): handle EPIPE error in hook runner when writing to stdin by
412
+ @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/14231
413
+ - fix: Exclude web-fetch tool from executing in default non-interactive mode to
414
+ avoid CLI hang. by @MayV in
415
+ https://github.com/google-gemini/gemini-cli/pull/14244
416
+ - Always use MCP server instructions by @chrstnb in
417
+ https://github.com/google-gemini/gemini-cli/pull/14297
418
+ - feat: auto-execute simple slash commands on Enter by @jackwotherspoon in
419
+ https://github.com/google-gemini/gemini-cli/pull/13985
420
+ - chore/release: bump version to 0.20.0-nightly.20251201.2fe609cb6 by
421
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14304
422
+ - feat: Add startup profiler to measure and record application initialization
423
+ phases. by @kevin-ramdass in
424
+ https://github.com/google-gemini/gemini-cli/pull/13638
425
+ - bug(core): Avoid stateful tool use in `executor`. by @joshualitt in
426
+ https://github.com/google-gemini/gemini-cli/pull/14305
427
+ - feat(themes): add built-in holiday theme 🎁 by @jackwotherspoon in
428
+ https://github.com/google-gemini/gemini-cli/pull/14301
429
+ - Updated ToC on docs intro; updated title casing to match Google style by
430
+ @pcoet in https://github.com/google-gemini/gemini-cli/pull/13717
431
+ - feat(a2a): Urgent fix - Process modelInfo agent message by @cocosheng-g in
432
+ https://github.com/google-gemini/gemini-cli/pull/14315
433
+ - feat(core): enhance availability routing with wrapped fallback and
434
+ single-model policies by @adamfweidman in
435
+ https://github.com/google-gemini/gemini-cli/pull/13874
436
+ - chore(logging): log the problematic event for #12122 by @briandealwis in
437
+ https://github.com/google-gemini/gemini-cli/pull/14092
438
+ - fix: remove invalid type key in bug_report.yml by @fancive in
439
+ https://github.com/google-gemini/gemini-cli/pull/13576
440
+ - update screenshot by @Transient-Onlooker in
441
+ https://github.com/google-gemini/gemini-cli/pull/13976
442
+ - docs: Fix grammar error in Release Cadence (Nightly section) by @JuanCS-Dev in
443
+ https://github.com/google-gemini/gemini-cli/pull/13866
444
+ - fix(async): prevent missed async errors from bypassing catch handlers by
445
+ @amsminn in https://github.com/google-gemini/gemini-cli/pull/13714
446
+ - fix(zed-integration): remove extra field from acp auth request by
447
+ @marcocondrache in https://github.com/google-gemini/gemini-cli/pull/13646
448
+ - feat(cli): Documentation for model configs. by @joshualitt in
449
+ https://github.com/google-gemini/gemini-cli/pull/12967
450
+ - fix(ui): misaligned markdown table rendering by @dumbbellcode in
451
+ https://github.com/google-gemini/gemini-cli/pull/8336
452
+ - docs: Update 4 files by @g-samroberts in
453
+ https://github.com/google-gemini/gemini-cli/pull/13628
454
+ - fix: Conditionally add set -eEuo pipefail in setup-github command by @Smetalo
455
+ in https://github.com/google-gemini/gemini-cli/pull/8550
456
+ - fix(cli): fix issue updating a component while rendering a different component
457
+ by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14319
458
+ - Increase flakey test timeout by @chrstnb in
459
+ https://github.com/google-gemini/gemini-cli/pull/14377
460
+ - Remove references to deleted kind/bug label by @scidomino in
461
+ https://github.com/google-gemini/gemini-cli/pull/14383
462
+ - Don't fail test if we can't cleanup by @scidomino in
463
+ https://github.com/google-gemini/gemini-cli/pull/14389
464
+ - feat(core): Implement JIT context manager and setting by @SandyTao520 in
465
+ https://github.com/google-gemini/gemini-cli/pull/14324
466
+ - Use polling for extensions-reload integration test by @chrstnb in
467
+ https://github.com/google-gemini/gemini-cli/pull/14391
468
+ - Add docs directive to GEMINI.md by @g-samroberts in
469
+ https://github.com/google-gemini/gemini-cli/pull/14327
470
+ - Hide sessions that don't have user messages by @bl-ue in
471
+ https://github.com/google-gemini/gemini-cli/pull/13994
472
+ - chore(ci): mark GitHub release as pre-release if not on "latest" npm channel
473
+ by @ljxfstorm in https://github.com/google-gemini/gemini-cli/pull/7386
474
+ - fix(patch): cherry-pick d284fa6 to release/v0.20.0-preview.0-pr-14545
475
+ [CONFLICTS] by @gemini-cli-robot in
476
+ https://github.com/google-gemini/gemini-cli/pull/14559
477
+ - fix(patch): cherry-pick 828afe1 to release/v0.20.0-preview.1-pr-14159 to patch
478
+ version v0.20.0-preview.1 and create version 0.20.0-preview.2 by
479
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14733
480
+ - fix(patch): cherry-pick 171103a to release/v0.20.0-preview.2-pr-14742 to patch
481
+ version v0.20.0-preview.2 and create version 0.20.0-preview.5 by
482
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14752
483
+
484
+ **Full Changelog**:
485
+ https://github.com/google-gemini/gemini-cli/compare/v0.19.4...v0.20.0
486
+
487
+ ## Release v0.19.0 - v0.19.4
488
+
489
+ ## Highlights
490
+
491
+ - **Zed integration:** Users can now leverage Gemini 3 within the Zed
492
+ integration after enabling "Preview Features" in their CLI’s `/settings`.
493
+ - **Interactive shell:**
494
+ - **Click-to-Focus:** Go to `/settings` and enable **Use Alternate Buffer**
495
+ When "Use Alternate Buffer" setting is enabled users can click within the
496
+ embedded shell output to focus it for input.
497
+ - **Loading phrase:** Clearly indicates when the interactive shell is awaiting
498
+ user input. ([vid](https://imgur.com/a/kjK8bUK)
499
+ [pr](https://github.com/google-gemini/gemini-cli/pull/12535) by
500
+ [@jackwotherspoon](https://github.com/jackwotherspoon))
501
+
502
+ ### What's Changed
503
+
504
+ - Use lenient MCP output schema validator by @cornmander in
505
+ https://github.com/google-gemini/gemini-cli/pull/13521
506
+ - Update persistence state to track counts of messages instead of times banner
507
+ has been displayed by @Adib234 in
508
+ https://github.com/google-gemini/gemini-cli/pull/13428
509
+ - update docs for http proxy by @scidomino in
510
+ https://github.com/google-gemini/gemini-cli/pull/13538
511
+ - move stdio by @jacob314 in
512
+ https://github.com/google-gemini/gemini-cli/pull/13528
513
+ - chore(release): bump version to 0.19.0-nightly.20251120.8e531dc02 by
514
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13540
515
+ - Skip pre-commit hooks for shadow repo (#13331) by @vishvananda in
516
+ https://github.com/google-gemini/gemini-cli/pull/13488
517
+ - fix(ui): Correct mouse click cursor positioning for wide characters by
518
+ @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/13537
519
+ - fix(core): correct bash @P prompt transformation detection by @pyrytakala in
520
+ https://github.com/google-gemini/gemini-cli/pull/13544
521
+ - Optimize and improve test coverage for cli/src/config by @megha1188 in
522
+ https://github.com/google-gemini/gemini-cli/pull/13485
523
+ - Improve code coverage for cli/src/ui/privacy package by @megha1188 in
524
+ https://github.com/google-gemini/gemini-cli/pull/13493
525
+ - docs: fix typos in source code and documentation by @fancive in
526
+ https://github.com/google-gemini/gemini-cli/pull/13577
527
+ - Improved code coverage for cli/src/zed-integration by @megha1188 in
528
+ https://github.com/google-gemini/gemini-cli/pull/13570
529
+ - feat(ui): build interactive session browser component by @bl-ue in
530
+ https://github.com/google-gemini/gemini-cli/pull/13351
531
+ - Fix multiple bugs with auth flow including using the implemented but unused
532
+ restart support. by @jacob314 in
533
+ https://github.com/google-gemini/gemini-cli/pull/13565
534
+ - feat(core): add modelAvailabilityService for managing and tracking model
535
+ health by @adamfweidman in
536
+ https://github.com/google-gemini/gemini-cli/pull/13426
537
+ - docs: fix grammar typo "a MCP" to "an MCP" by @noahacgn in
538
+ https://github.com/google-gemini/gemini-cli/pull/13595
539
+ - feat: custom loading phrase when interactive shell requires input by
540
+ @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/12535
541
+ - docs: Update uninstall command to reflect multiple extension support by
542
+ @JayadityaGit in https://github.com/google-gemini/gemini-cli/pull/13582
543
+ - bug(core): Ensure we use thinking budget on fallback to 2.5 by @joshualitt in
544
+ https://github.com/google-gemini/gemini-cli/pull/13596
545
+ - Remove useModelRouter experimental flag by @Adib234 in
546
+ https://github.com/google-gemini/gemini-cli/pull/13593
547
+ - feat(docs): Ensure multiline JS objects are rendered properly. by @joshualitt
548
+ in https://github.com/google-gemini/gemini-cli/pull/13535
549
+ - Fix exp id logging by @owenofbrien in
550
+ https://github.com/google-gemini/gemini-cli/pull/13430
551
+ - Moved client id logging into createBasicLogEvent by @owenofbrien in
552
+ https://github.com/google-gemini/gemini-cli/pull/13607
553
+ - Restore bracketed paste mode after external editor exit by @scidomino in
554
+ https://github.com/google-gemini/gemini-cli/pull/13606
555
+ - feat(core): Add support for custom aliases for model configs. by @joshualitt
556
+ in https://github.com/google-gemini/gemini-cli/pull/13546
557
+ - feat(core): Add `BaseLlmClient.generateContent`. by @joshualitt in
558
+ https://github.com/google-gemini/gemini-cli/pull/13591
559
+ - Turn off alternate buffer mode by default. by @jacob314 in
560
+ https://github.com/google-gemini/gemini-cli/pull/13623
561
+ - fix(cli): Prevent stdout/stderr patching for extension commands by @chrstnb in
562
+ https://github.com/google-gemini/gemini-cli/pull/13600
563
+ - Improve test coverage for cli/src/ui/components by @megha1188 in
564
+ https://github.com/google-gemini/gemini-cli/pull/13598
565
+ - Update ink version to 6.4.6 by @jacob314 in
566
+ https://github.com/google-gemini/gemini-cli/pull/13631
567
+ - chore/release: bump version to 0.19.0-nightly.20251122.42c2e1b21 by
568
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13637
569
+ - chore/release: bump version to 0.19.0-nightly.20251123.dadd606c0 by
570
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13675
571
+ - chore/release: bump version to 0.19.0-nightly.20251124.e177314a4 by
572
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13713
573
+ - fix(core): Fix context window overflow warning for PDF files by @kkitase in
574
+ https://github.com/google-gemini/gemini-cli/pull/13548
575
+ - feat :rephrasing the extension logging messages to run the explore command
576
+ when there are no extensions installed by @JayadityaGit in
577
+ https://github.com/google-gemini/gemini-cli/pull/13740
578
+ - Improve code coverage for cli package by @megha1188 in
579
+ https://github.com/google-gemini/gemini-cli/pull/13724
580
+ - Add session subtask in /stats command by @Adib234 in
581
+ https://github.com/google-gemini/gemini-cli/pull/13750
582
+ - feat(core): Migrate chatCompressionService to model configs. by @joshualitt in
583
+ https://github.com/google-gemini/gemini-cli/pull/12863
584
+ - feat(hooks): Hook Telemetry Infrastructure by @Edilmo in
585
+ https://github.com/google-gemini/gemini-cli/pull/9082
586
+ - fix: (some minor improvements to configs and getPackageJson return behaviour)
587
+ by @grMLEqomlkkU5Eeinz4brIrOVCUCkJuN in
588
+ https://github.com/google-gemini/gemini-cli/pull/12510
589
+ - feat(hooks): Hook Event Handling by @Edilmo in
590
+ https://github.com/google-gemini/gemini-cli/pull/9097
591
+ - feat(hooks): Hook Agent Lifecycle Integration by @Edilmo in
592
+ https://github.com/google-gemini/gemini-cli/pull/9105
593
+ - feat(core): Land bool for alternate system prompt. by @joshualitt in
594
+ https://github.com/google-gemini/gemini-cli/pull/13764
595
+ - bug(core): Add default chat compression config. by @joshualitt in
596
+ https://github.com/google-gemini/gemini-cli/pull/13766
597
+ - feat(model-availability): introduce ModelPolicy and PolicyCatalog by
598
+ @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/13751
599
+ - feat(hooks): Hook System Orchestration by @Edilmo in
600
+ https://github.com/google-gemini/gemini-cli/pull/9102
601
+ - feat(config): add isModelAvailabilityServiceEnabled setting by @adamfweidman
602
+ in https://github.com/google-gemini/gemini-cli/pull/13777
603
+ - chore/release: bump version to 0.19.0-nightly.20251125.f6d97d448 by
604
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13782
605
+ - chore: remove console.error by @adamfweidman in
606
+ https://github.com/google-gemini/gemini-cli/pull/13779
607
+ - fix: Add $schema property to settings.schema.json by @sacrosanctic in
608
+ https://github.com/google-gemini/gemini-cli/pull/12763
609
+ - fix(cli): allow non-GitHub SCP-styled URLs for extension installation by @m0ps
610
+ in https://github.com/google-gemini/gemini-cli/pull/13800
611
+ - fix(resume): allow passing a prompt via stdin while resuming using --resume by
612
+ @bl-ue in https://github.com/google-gemini/gemini-cli/pull/13520
613
+ - feat(sessions): add /resume slash command to open the session browser by
614
+ @bl-ue in https://github.com/google-gemini/gemini-cli/pull/13621
615
+ - docs(sessions): add documentation for chat recording and session management by
616
+ @bl-ue in https://github.com/google-gemini/gemini-cli/pull/13667
617
+ - Fix TypeError: "URL.parse is not a function" for Node.js < v22 by @macarronesc
618
+ in https://github.com/google-gemini/gemini-cli/pull/13698
619
+ - fallback to flash for TerminalQuota errors by @sehoon38 in
620
+ https://github.com/google-gemini/gemini-cli/pull/13791
621
+ - Update Code Wiki README badge by @PatoBeltran in
622
+ https://github.com/google-gemini/gemini-cli/pull/13768
623
+ - Add Databricks auth support and custom header option to gemini cli by
624
+ @AarushiShah in https://github.com/google-gemini/gemini-cli/pull/11893
625
+ - Update dependency for modelcontextprotocol/sdk to 1.23.0 by @bbiggs in
626
+ https://github.com/google-gemini/gemini-cli/pull/13827
627
+ - fix(patch): cherry-pick 576fda1 to release/v0.19.0-preview.0-pr-14099
628
+ [CONFLICTS] by @gemini-cli-robot in
629
+ https://github.com/google-gemini/gemini-cli/pull/14402
630
+
631
+ **Full Changelog**:
632
+ https://github.com/google-gemini/gemini-cli/compare/v0.18.4...v0.19.0
633
+
634
+ ## Release v0.19.0-preview.0
635
+
636
+ ### What's Changed
637
+
638
+ - Use lenient MCP output schema validator by @cornmander in
639
+ https://github.com/google-gemini/gemini-cli/pull/13521
640
+ - Update persistence state to track counts of messages instead of times banner
641
+ has been displayed by @Adib234 in
642
+ https://github.com/google-gemini/gemini-cli/pull/13428
643
+ - update docs for http proxy by @scidomino in
644
+ https://github.com/google-gemini/gemini-cli/pull/13538
645
+ - move stdio by @jacob314 in
646
+ https://github.com/google-gemini/gemini-cli/pull/13528
647
+ - chore(release): bump version to 0.19.0-nightly.20251120.8e531dc02 by
648
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13540
649
+ - Skip pre-commit hooks for shadow repo (#13331) by @vishvananda in
650
+ https://github.com/google-gemini/gemini-cli/pull/13488
651
+ - fix(ui): Correct mouse click cursor positioning for wide characters by
652
+ @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/13537
653
+ - fix(core): correct bash @P prompt transformation detection by @pyrytakala in
654
+ https://github.com/google-gemini/gemini-cli/pull/13544
655
+ - Optimize and improve test coverage for cli/src/config by @megha1188 in
656
+ https://github.com/google-gemini/gemini-cli/pull/13485
657
+ - Improve code coverage for cli/src/ui/privacy package by @megha1188 in
658
+ https://github.com/google-gemini/gemini-cli/pull/13493
659
+ - docs: fix typos in source code and documentation by @fancive in
660
+ https://github.com/google-gemini/gemini-cli/pull/13577
661
+ - Improved code coverage for cli/src/zed-integration by @megha1188 in
662
+ https://github.com/google-gemini/gemini-cli/pull/13570
663
+ - feat(ui): build interactive session browser component by @bl-ue in
664
+ https://github.com/google-gemini/gemini-cli/pull/13351
665
+ - Fix multiple bugs with auth flow including using the implemented but unused
666
+ restart support. by @jacob314 in
667
+ https://github.com/google-gemini/gemini-cli/pull/13565
668
+ - feat(core): add modelAvailabilityService for managing and tracking model
669
+ health by @adamfweidman in
670
+ https://github.com/google-gemini/gemini-cli/pull/13426
671
+ - docs: fix grammar typo "a MCP" to "an MCP" by @noahacgn in
672
+ https://github.com/google-gemini/gemini-cli/pull/13595
673
+ - feat: custom loading phrase when interactive shell requires input by
674
+ @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/12535
675
+ - docs: Update uninstall command to reflect multiple extension support by
676
+ @JayadityaGit in https://github.com/google-gemini/gemini-cli/pull/13582
677
+ - bug(core): Ensure we use thinking budget on fallback to 2.5 by @joshualitt in
678
+ https://github.com/google-gemini/gemini-cli/pull/13596
679
+ - Remove useModelRouter experimental flag by @Adib234 in
680
+ https://github.com/google-gemini/gemini-cli/pull/13593
681
+ - feat(docs): Ensure multiline JS objects are rendered properly. by @joshualitt
682
+ in https://github.com/google-gemini/gemini-cli/pull/13535
683
+ - Fix exp id logging by @owenofbrien in
684
+ https://github.com/google-gemini/gemini-cli/pull/13430
685
+ - Moved client id logging into createBasicLogEvent by @owenofbrien in
686
+ https://github.com/google-gemini/gemini-cli/pull/13607
687
+ - Restore bracketed paste mode after external editor exit by @scidomino in
688
+ https://github.com/google-gemini/gemini-cli/pull/13606
689
+ - feat(core): Add support for custom aliases for model configs. by @joshualitt
690
+ in https://github.com/google-gemini/gemini-cli/pull/13546
691
+ - feat(core): Add `BaseLlmClient.generateContent`. by @joshualitt in
692
+ https://github.com/google-gemini/gemini-cli/pull/13591
693
+ - Turn off alternate buffer mode by default. by @jacob314 in
694
+ https://github.com/google-gemini/gemini-cli/pull/13623
695
+ - fix(cli): Prevent stdout/stderr patching for extension commands by @chrstnb in
696
+ https://github.com/google-gemini/gemini-cli/pull/13600
697
+ - Improve test coverage for cli/src/ui/components by @megha1188 in
698
+ https://github.com/google-gemini/gemini-cli/pull/13598
699
+ - Update ink version to 6.4.6 by @jacob314 in
700
+ https://github.com/google-gemini/gemini-cli/pull/13631
701
+ - chore/release: bump version to 0.19.0-nightly.20251122.42c2e1b21 by
702
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13637
703
+ - chore/release: bump version to 0.19.0-nightly.20251123.dadd606c0 by
704
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13675
705
+ - chore/release: bump version to 0.19.0-nightly.20251124.e177314a4 by
706
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13713
707
+ - fix(core): Fix context window overflow warning for PDF files by @kkitase in
708
+ https://github.com/google-gemini/gemini-cli/pull/13548
709
+ - feat :rephrasing the extension logging messages to run the explore command
710
+ when there are no extensions installed by @JayadityaGit in
711
+ https://github.com/google-gemini/gemini-cli/pull/13740
712
+ - Improve code coverage for cli package by @megha1188 in
713
+ https://github.com/google-gemini/gemini-cli/pull/13724
714
+ - Add session subtask in /stats command by @Adib234 in
715
+ https://github.com/google-gemini/gemini-cli/pull/13750
716
+ - feat(core): Migrate chatCompressionService to model configs. by @joshualitt in
717
+ https://github.com/google-gemini/gemini-cli/pull/12863
718
+ - feat(hooks): Hook Telemetry Infrastructure by @Edilmo in
719
+ https://github.com/google-gemini/gemini-cli/pull/9082
720
+ - fix: (some minor improvements to configs and getPackageJson return behaviour)
721
+ by @grMLEqomlkkU5Eeinz4brIrOVCUCkJuN in
722
+ https://github.com/google-gemini/gemini-cli/pull/12510
723
+ - feat(hooks): Hook Event Handling by @Edilmo in
724
+ https://github.com/google-gemini/gemini-cli/pull/9097
725
+ - feat(hooks): Hook Agent Lifecycle Integration by @Edilmo in
726
+ https://github.com/google-gemini/gemini-cli/pull/9105
727
+ - feat(core): Land bool for alternate system prompt. by @joshualitt in
728
+ https://github.com/google-gemini/gemini-cli/pull/13764
729
+ - bug(core): Add default chat compression config. by @joshualitt in
730
+ https://github.com/google-gemini/gemini-cli/pull/13766
731
+ - feat(model-availability): introduce ModelPolicy and PolicyCatalog by
732
+ @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/13751
733
+ - feat(hooks): Hook System Orchestration by @Edilmo in
734
+ https://github.com/google-gemini/gemini-cli/pull/9102
735
+ - feat(config): add isModelAvailabilityServiceEnabled setting by @adamfweidman
736
+ in https://github.com/google-gemini/gemini-cli/pull/13777
737
+ - chore/release: bump version to 0.19.0-nightly.20251125.f6d97d448 by
738
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13782
739
+ - chore: remove console.error by @adamfweidman in
740
+ https://github.com/google-gemini/gemini-cli/pull/13779
741
+ - fix: Add $schema property to settings.schema.json by @sacrosanctic in
742
+ https://github.com/google-gemini/gemini-cli/pull/12763
743
+ - fix(cli): allow non-GitHub SCP-styled URLs for extension installation by @m0ps
744
+ in https://github.com/google-gemini/gemini-cli/pull/13800
745
+ - fix(resume): allow passing a prompt via stdin while resuming using --resume by
746
+ @bl-ue in https://github.com/google-gemini/gemini-cli/pull/13520
747
+ - feat(sessions): add /resume slash command to open the session browser by
748
+ @bl-ue in https://github.com/google-gemini/gemini-cli/pull/13621
749
+ - docs(sessions): add documentation for chat recording and session management by
750
+ @bl-ue in https://github.com/google-gemini/gemini-cli/pull/13667
751
+ - Fix TypeError: "URL.parse is not a function" for Node.js < v22 by @macarronesc
752
+ in https://github.com/google-gemini/gemini-cli/pull/13698
753
+ - fallback to flash for TerminalQuota errors by @sehoon38 in
754
+ https://github.com/google-gemini/gemini-cli/pull/13791
755
+ - Update Code Wiki README badge by @PatoBeltran in
756
+ https://github.com/google-gemini/gemini-cli/pull/13768
757
+ - Add Databricks auth support and custom header option to gemini cli by
758
+ @AarushiShah in https://github.com/google-gemini/gemini-cli/pull/11893
759
+ - Update dependency for modelcontextprotocol/sdk to 1.23.0 by @bbiggs in
760
+ https://github.com/google-gemini/gemini-cli/pull/13827
761
+
762
+ **Full Changelog**:
763
+ https://github.com/google-gemini/gemini-cli/compare/v0.18.0-preview.4...v0.19.0-preview.0
764
+
765
+ ## Release v0.18.0 - v0.18.4
766
+
767
+ ### Highlights
768
+
769
+ - **Experimental permission improvements**: We're experimenting with a new
770
+ policy engine in Gemini CLI, letting users and administrators create
771
+ fine-grained policies for tool calls. This setting is currently behind a flag.
772
+ See our [policy engine documentation](../core/policy-engine.md) to learn how
773
+ to use this feature.
774
+ - **Gemini 3 support rolled out for some users**: Some users can now enable
775
+ Gemini 3 by using the `/settings` flag and toggling **Preview Features**. See
776
+ our [Gemini 3 on Gemini CLI documentation](../get-started/gemini-3.md) to find
777
+ out more about using Gemini 3.
778
+ - **Updated UI rollback:** We've temporarily rolled back a previous UI update,
779
+ which enabled embedded scrolling and mouse support. This can be re-enabled by
780
+ using the `/settings` command and setting **Use Alternate Screen Buffer** to
781
+ `true`.
782
+ - **Display your model in your chat history**: You can now go use `/settings`
783
+ and turn on **Show Model in Chat** to display the model in your chat history.
784
+ - **Uninstall multiple extensions**: You can uninstall multiple extensions with
785
+ a single command: `gemini extensions uninstall`.
786
+
787
+ ![Uninstalling Gemini extensions with a single command](https://i.imgur.com/pi7nEBI.png)
788
+
789
+ ### What's changed
790
+
791
+ - Remove obsolete reference to "help wanted" label in CONTRIBUTING.md by
792
+ @aswinashok44 in https://github.com/google-gemini/gemini-cli/pull/13291
793
+ - chore(release): v0.18.0-nightly.20251118.86828bb56 by @skeshive in
794
+ https://github.com/google-gemini/gemini-cli/pull/13309
795
+ - Docs: Access clarification. by @jkcinouye in
796
+ https://github.com/google-gemini/gemini-cli/pull/13304
797
+ - Fix links in Gemini 3 Pro documentation by @gmackall in
798
+ https://github.com/google-gemini/gemini-cli/pull/13312
799
+ - Improve keyboard code parsing by @scidomino in
800
+ https://github.com/google-gemini/gemini-cli/pull/13307
801
+ - fix(core): Ensure `read_many_files` tool is available to zed. by @joshualitt
802
+ in https://github.com/google-gemini/gemini-cli/pull/13338
803
+ - Support 3-parameter modifyOtherKeys sequences by @scidomino in
804
+ https://github.com/google-gemini/gemini-cli/pull/13342
805
+ - Improve pty resize error handling for Windows by @galz10 in
806
+ https://github.com/google-gemini/gemini-cli/pull/13353
807
+ - fix(ui): Clear input prompt on Escape key press by @SandyTao520 in
808
+ https://github.com/google-gemini/gemini-cli/pull/13335
809
+ - bug(ui) showLineNumbers had the wrong default value. by @jacob314 in
810
+ https://github.com/google-gemini/gemini-cli/pull/13356
811
+ - fix(cli): fix crash on startup in NO_COLOR mode (#13343) due to ungua… by
812
+ @avilladsen in https://github.com/google-gemini/gemini-cli/pull/13352
813
+ - fix: allow MCP prompts with spaces in name by @jackwotherspoon in
814
+ https://github.com/google-gemini/gemini-cli/pull/12910
815
+ - Refactor createTransport to duplicate less code by @davidmcwherter in
816
+ https://github.com/google-gemini/gemini-cli/pull/13010
817
+ - Followup from #10719 by @bl-ue in
818
+ https://github.com/google-gemini/gemini-cli/pull/13243
819
+ - Capturing github action workflow name if present and send it to clearcut by
820
+ @MJjainam in https://github.com/google-gemini/gemini-cli/pull/13132
821
+ - feat(sessions): record interactive-only errors and warnings to chat recording
822
+ JSON files by @bl-ue in https://github.com/google-gemini/gemini-cli/pull/13300
823
+ - fix(zed-integration): Correctly handle cancellation errors by @benbrandt in
824
+ https://github.com/google-gemini/gemini-cli/pull/13399
825
+ - docs: Add Code Wiki link to README by @holtskinner in
826
+ https://github.com/google-gemini/gemini-cli/pull/13289
827
+ - Restore keyboard mode when exiting the editor by @scidomino in
828
+ https://github.com/google-gemini/gemini-cli/pull/13350
829
+ - feat(core, cli): Bump genai version to 1.30.0 by @joshualitt in
830
+ https://github.com/google-gemini/gemini-cli/pull/13435
831
+ - [cli-ui] Keep header ASCII art colored on non-gradient terminals (#13373) by
832
+ @bniladridas in https://github.com/google-gemini/gemini-cli/pull/13374
833
+ - Fix Copyright line in LICENSE by @scidomino in
834
+ https://github.com/google-gemini/gemini-cli/pull/13449
835
+ - Fix typo in write_todos methodology instructions by @Smetalo in
836
+ https://github.com/google-gemini/gemini-cli/pull/13411
837
+ - feat: update thinking mode support to exclude gemini-2.0 models and simplify
838
+ logic. by @kevin-ramdass in
839
+ https://github.com/google-gemini/gemini-cli/pull/13454
840
+ - remove unneeded log by @scidomino in
841
+ https://github.com/google-gemini/gemini-cli/pull/13456
842
+ - feat: add click-to-focus support for interactive shell by @galz10 in
843
+ https://github.com/google-gemini/gemini-cli/pull/13341
844
+ - Add User email detail to about box by @ptone in
845
+ https://github.com/google-gemini/gemini-cli/pull/13459
846
+ - feat(core): Wire up chat code path for model configs. by @joshualitt in
847
+ https://github.com/google-gemini/gemini-cli/pull/12850
848
+ - chore/release: bump version to 0.18.0-nightly.20251120.2231497b1 by
849
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13476
850
+ - feat(core): Fix bug with incorrect model overriding. by @joshualitt in
851
+ https://github.com/google-gemini/gemini-cli/pull/13477
852
+ - Use synchronous writes when detecting keyboard modes by @scidomino in
853
+ https://github.com/google-gemini/gemini-cli/pull/13478
854
+ - fix(cli): prevent race condition when restoring prompt after context overflow
855
+ by @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/13473
856
+ - Revert "feat(core): Fix bug with incorrect model overriding." by @adamfweidman
857
+ in https://github.com/google-gemini/gemini-cli/pull/13483
858
+ - Fix: Update system instruction when GEMINI.md memory is loaded or refreshed by
859
+ @lifefloating in https://github.com/google-gemini/gemini-cli/pull/12136
860
+ - fix(zed-integration): Ensure that the zed integration is classified as
861
+ interactive by @benbrandt in
862
+ https://github.com/google-gemini/gemini-cli/pull/13394
863
+ - Copy commands as part of setup-github by @gsehgal in
864
+ https://github.com/google-gemini/gemini-cli/pull/13464
865
+ - Update banner design by @Adib234 in
866
+ https://github.com/google-gemini/gemini-cli/pull/13420
867
+ - Protect stdout and stderr so JavaScript code can't accidentally write to
868
+ stdout corrupting ink rendering by @jacob314 in
869
+ https://github.com/google-gemini/gemini-cli/pull/13247
870
+ - Enable switching preview features on/off without restart by @Adib234 in
871
+ https://github.com/google-gemini/gemini-cli/pull/13515
872
+ - feat(core): Use thinking level for Gemini 3 by @joshualitt in
873
+ https://github.com/google-gemini/gemini-cli/pull/13445
874
+ - Change default compress threshold to 0.5 for api key users by @scidomino in
875
+ https://github.com/google-gemini/gemini-cli/pull/13517
876
+ - remove duplicated mouse code by @scidomino in
877
+ https://github.com/google-gemini/gemini-cli/pull/13525
878
+ - feat(zed-integration): Use default model routing for Zed integration by
879
+ @benbrandt in https://github.com/google-gemini/gemini-cli/pull/13398
880
+ - feat(core): Incorporate Gemini 3 into model config hierarchy. by @joshualitt
881
+ in https://github.com/google-gemini/gemini-cli/pull/13447
882
+ - fix(patch): cherry-pick 5e218a5 to release/v0.18.0-preview.0-pr-13623 to patch
883
+ version v0.18.0-preview.0 and create version 0.18.0-preview.1 by
884
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13626
885
+ - fix(patch): cherry-pick d351f07 to release/v0.18.0-preview.1-pr-12535 to patch
886
+ version v0.18.0-preview.1 and create version 0.18.0-preview.2 by
887
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13813
888
+ - fix(patch): cherry-pick 3e50be1 to release/v0.18.0-preview.2-pr-13428 to patch
889
+ version v0.18.0-preview.2 and create version 0.18.0-preview.3 by
890
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13821
891
+ - fix(patch): cherry-pick d8a3d08 to release/v0.18.0-preview.3-pr-13791 to patch
892
+ version v0.18.0-preview.3 and create version 0.18.0-preview.4 by
893
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13826
894
+
895
+ **Full Changelog**:
896
+ https://github.com/google-gemini/gemini-cli/compare/v0.17.1...v0.18.0