@google/gemini-cli-core 0.21.0-nightly.20251218.739c02bd6 → 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 (212) 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.d.ts +0 -6
  101. package/dist/src/agents/local-executor.js +73 -47
  102. package/dist/src/agents/local-executor.js.map +1 -1
  103. package/dist/src/agents/local-executor.test.d.ts +1 -7
  104. package/dist/src/agents/local-executor.test.js +27 -9
  105. package/dist/src/agents/local-executor.test.js.map +1 -1
  106. package/dist/src/agents/registry.d.ts +1 -0
  107. package/dist/src/agents/registry.js +51 -7
  108. package/dist/src/agents/registry.js.map +1 -1
  109. package/dist/src/agents/registry.test.js +112 -1
  110. package/dist/src/agents/registry.test.js.map +1 -1
  111. package/dist/src/agents/toml-loader.d.ts +65 -0
  112. package/dist/src/agents/toml-loader.js +176 -0
  113. package/dist/src/agents/toml-loader.js.map +1 -0
  114. package/dist/src/agents/toml-loader.test.d.ts +6 -0
  115. package/dist/src/agents/toml-loader.test.js +190 -0
  116. package/dist/src/agents/toml-loader.test.js.map +1 -0
  117. package/dist/src/availability/modelAvailabilityService.d.ts +2 -1
  118. package/dist/src/config/config.d.ts +9 -0
  119. package/dist/src/config/config.js +29 -0
  120. package/dist/src/config/config.js.map +1 -1
  121. package/dist/src/config/config.test.js +59 -1
  122. package/dist/src/config/config.test.js.map +1 -1
  123. package/dist/src/config/storage.d.ts +2 -0
  124. package/dist/src/config/storage.js +6 -0
  125. package/dist/src/config/storage.js.map +1 -1
  126. package/dist/src/config/storage.test.js +8 -0
  127. package/dist/src/config/storage.test.js.map +1 -1
  128. package/dist/src/core/client.js +8 -4
  129. package/dist/src/core/client.js.map +1 -1
  130. package/dist/src/core/client.test.js +20 -0
  131. package/dist/src/core/client.test.js.map +1 -1
  132. package/dist/src/core/clientHookTriggers.js +2 -2
  133. package/dist/src/core/clientHookTriggers.js.map +1 -1
  134. package/dist/src/core/coreToolHookTriggers.js +3 -3
  135. package/dist/src/core/coreToolHookTriggers.js.map +1 -1
  136. package/dist/src/core/geminiChatHookTriggers.js +3 -3
  137. package/dist/src/core/geminiChatHookTriggers.js.map +1 -1
  138. package/dist/src/core/sessionHookTriggers.js +3 -3
  139. package/dist/src/core/sessionHookTriggers.js.map +1 -1
  140. package/dist/src/generated/git-commit.d.ts +2 -2
  141. package/dist/src/generated/git-commit.js +2 -2
  142. package/dist/src/hooks/hookEventHandler.js +10 -4
  143. package/dist/src/hooks/hookEventHandler.js.map +1 -1
  144. package/dist/src/hooks/hookEventHandler.test.js +40 -0
  145. package/dist/src/hooks/hookEventHandler.test.js.map +1 -1
  146. package/dist/src/hooks/hookPlanner.js +3 -1
  147. package/dist/src/hooks/hookPlanner.js.map +1 -1
  148. package/dist/src/hooks/hookPlanner.test.js +61 -0
  149. package/dist/src/hooks/hookPlanner.test.js.map +1 -1
  150. package/dist/src/hooks/hookRegistry.d.ts +1 -1
  151. package/dist/src/hooks/hookRegistry.js +2 -2
  152. package/dist/src/hooks/hookRegistry.js.map +1 -1
  153. package/dist/src/hooks/hookRegistry.test.js +73 -0
  154. package/dist/src/hooks/hookRegistry.test.js.map +1 -1
  155. package/dist/src/hooks/hookRunner.js +14 -10
  156. package/dist/src/hooks/hookRunner.js.map +1 -1
  157. package/dist/src/hooks/hookRunner.test.js +81 -33
  158. package/dist/src/hooks/hookRunner.test.js.map +1 -1
  159. package/dist/src/hooks/types.d.ts +2 -0
  160. package/dist/src/hooks/types.js.map +1 -1
  161. package/dist/src/mcp/oauth-provider.js +6 -2
  162. package/dist/src/mcp/oauth-provider.js.map +1 -1
  163. package/dist/src/mcp/oauth-provider.test.js +4 -1
  164. package/dist/src/mcp/oauth-provider.test.js.map +1 -1
  165. package/dist/src/mcp/oauth-utils.d.ts +8 -1
  166. package/dist/src/mcp/oauth-utils.js +30 -1
  167. package/dist/src/mcp/oauth-utils.js.map +1 -1
  168. package/dist/src/mcp/oauth-utils.test.js +42 -0
  169. package/dist/src/mcp/oauth-utils.test.js.map +1 -1
  170. package/dist/src/services/contextManager.d.ts +5 -11
  171. package/dist/src/services/contextManager.js +20 -17
  172. package/dist/src/services/contextManager.js.map +1 -1
  173. package/dist/src/services/contextManager.test.js +40 -41
  174. package/dist/src/services/contextManager.test.js.map +1 -1
  175. package/dist/src/services/shellExecutionService.js +18 -2
  176. package/dist/src/services/shellExecutionService.js.map +1 -1
  177. package/dist/src/tools/get-internal-docs.d.ts +27 -0
  178. package/dist/src/tools/get-internal-docs.js +129 -0
  179. package/dist/src/tools/get-internal-docs.js.map +1 -0
  180. package/dist/src/tools/get-internal-docs.test.d.ts +6 -0
  181. package/dist/src/tools/get-internal-docs.test.js +56 -0
  182. package/dist/src/tools/get-internal-docs.test.js.map +1 -0
  183. package/dist/src/tools/tool-names.d.ts +14 -0
  184. package/dist/src/tools/tool-names.js +55 -0
  185. package/dist/src/tools/tool-names.js.map +1 -1
  186. package/dist/src/tools/tool-names.test.d.ts +6 -0
  187. package/dist/src/tools/tool-names.test.js +43 -0
  188. package/dist/src/tools/tool-names.test.js.map +1 -0
  189. package/dist/src/tools/tool-registry.d.ts +0 -1
  190. package/dist/src/tools/tool-registry.js +1 -1
  191. package/dist/src/tools/tool-registry.js.map +1 -1
  192. package/dist/src/tools/tool-registry.test.js +2 -1
  193. package/dist/src/tools/tool-registry.test.js.map +1 -1
  194. package/dist/src/utils/environmentContext.js +3 -0
  195. package/dist/src/utils/environmentContext.js.map +1 -1
  196. package/dist/src/utils/environmentContext.test.js +2 -0
  197. package/dist/src/utils/environmentContext.test.js.map +1 -1
  198. package/dist/src/utils/events.d.ts +3 -2
  199. package/dist/src/utils/events.js.map +1 -1
  200. package/dist/src/utils/googleQuotaErrors.js +20 -0
  201. package/dist/src/utils/googleQuotaErrors.js.map +1 -1
  202. package/dist/src/utils/googleQuotaErrors.test.js +53 -2
  203. package/dist/src/utils/googleQuotaErrors.test.js.map +1 -1
  204. package/dist/src/utils/memoryDiscovery.js +1 -1
  205. package/dist/src/utils/memoryDiscovery.js.map +1 -1
  206. package/dist/src/utils/memoryDiscovery.test.js +3 -1
  207. package/dist/src/utils/memoryDiscovery.test.js.map +1 -1
  208. package/dist/src/utils/shell-utils.js +25 -4
  209. package/dist/src/utils/shell-utils.js.map +1 -1
  210. package/dist/tsconfig.tsbuildinfo +1 -1
  211. package/package.json +1 -6
  212. package/dist/google-gemini-cli-core-0.21.0-nightly.20251216.bb0c0d8ee.tgz +0 -0
@@ -0,0 +1,225 @@
1
+ # Latest stable release: v0.21.0 - v0.21.1
2
+
3
+ Released: December 16, 2025
4
+
5
+ For most users, our latest stable release is the recommended release. Install
6
+ the latest stable version with:
7
+
8
+ ```
9
+ npm install -g @google/gemini-cli
10
+ ```
11
+
12
+ ## Highlights
13
+
14
+ - **⚡️⚡️⚡️ Gemini 3 Flash + Gemini CLI:** If you are a paid user, you can now
15
+ enable Gemini 3 Pro and Gemini 3 Flash. Go to `/settings` and set **Preview
16
+ Features** to `true` to enable Gemini 3. For more information:
17
+ [Gemini 3 Flash is now available in Gemini CLI](https://developers.googleblog.com/gemini-3-flash-is-now-available-in-gemini-cli/).
18
+
19
+ ## What's Changed
20
+
21
+ - refactor(stdio): always patch stdout and use createWorkingStdio for clean
22
+ output by @allenhutchison in
23
+ https://github.com/google-gemini/gemini-cli/pull/14159
24
+ - chore(release): bump version to 0.21.0-nightly.20251202.2d935b379 by
25
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14409
26
+ - implement fuzzy search inside settings by @sehoon38 in
27
+ https://github.com/google-gemini/gemini-cli/pull/13864
28
+ - feat: enable message bus integration by default by @allenhutchison in
29
+ https://github.com/google-gemini/gemini-cli/pull/14329
30
+ - docs: Recommend using --debug intead of --verbose for CLI debugging by @bbiggs
31
+ in https://github.com/google-gemini/gemini-cli/pull/14334
32
+ - feat: consolidate remote MCP servers to use `url` in config by
33
+ @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/13762
34
+ - Restrict integration tests tools by @scidomino in
35
+ https://github.com/google-gemini/gemini-cli/pull/14403
36
+ - track github repository names in telemetry events by @IamRiddhi in
37
+ https://github.com/google-gemini/gemini-cli/pull/13670
38
+ - Allow telemetry exporters to GCP to utilize user's login credentials, if
39
+ requested by @mboshernitsan in
40
+ https://github.com/google-gemini/gemini-cli/pull/13778
41
+ - refactor(editor): use const assertion for editor types with single source of
42
+ truth by @amsminn in https://github.com/google-gemini/gemini-cli/pull/8604
43
+ - fix(security): Fix npm audit vulnerabilities in glob and body-parser by
44
+ @afarber in https://github.com/google-gemini/gemini-cli/pull/14090
45
+ - Add new enterprise instructions by @chrstnb in
46
+ https://github.com/google-gemini/gemini-cli/pull/8641
47
+ - feat(hooks): Hook Session Lifecycle & Compression Integration by @Edilmo in
48
+ https://github.com/google-gemini/gemini-cli/pull/14151
49
+ - Avoid triggering refreshStatic unless there really is a banner to display. by
50
+ @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14328
51
+ - feat(hooks): Hooks Commands Panel, Enable/Disable, and Migrate by @Edilmo in
52
+ https://github.com/google-gemini/gemini-cli/pull/14225
53
+ - fix: Bundle default policies for npx distribution by @allenhutchison in
54
+ https://github.com/google-gemini/gemini-cli/pull/14457
55
+ - feat(hooks): Hook System Documentation by @Edilmo in
56
+ https://github.com/google-gemini/gemini-cli/pull/14307
57
+ - Fix tests by @scidomino in
58
+ https://github.com/google-gemini/gemini-cli/pull/14458
59
+ - feat: add scheduled workflow to close stale issues by @galz10 in
60
+ https://github.com/google-gemini/gemini-cli/pull/14404
61
+ - feat: Support Extension Hooks with Security Warning by @abhipatel12 in
62
+ https://github.com/google-gemini/gemini-cli/pull/14460
63
+ - feat: Add enableAgents experimental flag by @adamfweidman in
64
+ https://github.com/google-gemini/gemini-cli/pull/14371
65
+ - docs: fix typo 'socus' to 'focus' in todos.md by @Viktor286 in
66
+ https://github.com/google-gemini/gemini-cli/pull/14374
67
+ - Markdown export: move the emoji to the end of the line by @mhansen in
68
+ https://github.com/google-gemini/gemini-cli/pull/12278
69
+ - fix(acp): prevent unnecessary credential cache clearing on re-authent… by
70
+ @h-michael in https://github.com/google-gemini/gemini-cli/pull/9410
71
+ - fix(cli): Fix word navigation for CJK characters by @SandyTao520 in
72
+ https://github.com/google-gemini/gemini-cli/pull/14475
73
+ - Remove example extension by @chrstnb in
74
+ https://github.com/google-gemini/gemini-cli/pull/14376
75
+ - Add commands for listing and updating per-extension settings by @chrstnb in
76
+ https://github.com/google-gemini/gemini-cli/pull/12664
77
+ - chore(tests): remove obsolete test for hierarchical memory by @pareshjoshij in
78
+ https://github.com/google-gemini/gemini-cli/pull/13122
79
+ - feat(cli): support /copy in remote sessions using OSC52 by @ismellpillows in
80
+ https://github.com/google-gemini/gemini-cli/pull/13471
81
+ - Update setting search UX by @Adib234 in
82
+ https://github.com/google-gemini/gemini-cli/pull/14451
83
+ - Fix(cli): Improve Homebrew update instruction to specify gemini-cli by
84
+ @DaanVersavel in https://github.com/google-gemini/gemini-cli/pull/14502
85
+ - do not toggle the setting item when entering space by @sehoon38 in
86
+ https://github.com/google-gemini/gemini-cli/pull/14489
87
+ - fix: improve retry logic for fetch errors and network codes by @megha1188 in
88
+ https://github.com/google-gemini/gemini-cli/pull/14439
89
+ - remove unused isSearching field by @sehoon38 in
90
+ https://github.com/google-gemini/gemini-cli/pull/14509
91
+ - feat(mcp): add `--type` alias for `--transport` flag in gemini mcp add by
92
+ @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14503
93
+ - feat(cli): Move key restore logic to core by @cocosheng-g in
94
+ https://github.com/google-gemini/gemini-cli/pull/13013
95
+ - feat: add auto-execute on Enter behavior to argumentless MCP prompts by
96
+ @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14510
97
+ - fix(shell): cursor visibility when using interactive mode by @aswinashok44 in
98
+ https://github.com/google-gemini/gemini-cli/pull/14095
99
+ - Adding session id as part of json o/p by @MJjainam in
100
+ https://github.com/google-gemini/gemini-cli/pull/14504
101
+ - fix(extensions): resolve GitHub API 415 error for source tarballs by
102
+ @jpoehnelt in https://github.com/google-gemini/gemini-cli/pull/13319
103
+ - fix(client): Correctly latch hasFailedCompressionAttempt flag by @pareshjoshij
104
+ in https://github.com/google-gemini/gemini-cli/pull/13002
105
+ - Disable flaky extension reloading test on linux by @chrstnb in
106
+ https://github.com/google-gemini/gemini-cli/pull/14528
107
+ - Add support for MCP dynamic tool update by `notifications/tools/list_changed`
108
+ by @Adib234 in https://github.com/google-gemini/gemini-cli/pull/14375
109
+ - Fix privacy screen for legacy tier users by @scidomino in
110
+ https://github.com/google-gemini/gemini-cli/pull/14522
111
+ - feat: Exclude maintainer labeled issues from stale issue closer by @galz10 in
112
+ https://github.com/google-gemini/gemini-cli/pull/14532
113
+ - Grant chained workflows proper permission. by @scidomino in
114
+ https://github.com/google-gemini/gemini-cli/pull/14534
115
+ - Make trigger_e2e manually fireable. by @scidomino in
116
+ https://github.com/google-gemini/gemini-cli/pull/14547
117
+ - Write e2e status to local repo not forked repo by @scidomino in
118
+ https://github.com/google-gemini/gemini-cli/pull/14549
119
+ - Fixes [API Error: Cannot read properties of undefined (reading 'error')] by
120
+ @silviojr in https://github.com/google-gemini/gemini-cli/pull/14553
121
+ - Trigger chained e2e tests on all pull requests by @scidomino in
122
+ https://github.com/google-gemini/gemini-cli/pull/14551
123
+ - Fix bug in the shellExecutionService resulting in both truncation and 3X bloat
124
+ by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14545
125
+ - Fix issue where we were passing the model content reflecting terminal line
126
+ wrapping. by @jacob314 in
127
+ https://github.com/google-gemini/gemini-cli/pull/14566
128
+ - chore/release: bump version to 0.21.0-nightly.20251204.3da4fd5f7 by
129
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14476
130
+ - feat(sessions): use 1-line generated session summary to describe sessions by
131
+ @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14467
132
+ - Use Robot PAT for chained e2e merge queue skipper by @scidomino in
133
+ https://github.com/google-gemini/gemini-cli/pull/14585
134
+ - fix(core): improve API response error handling and retry logic by @mattKorwel
135
+ in https://github.com/google-gemini/gemini-cli/pull/14563
136
+ - Docs: Model routing clarification by @jkcinouye in
137
+ https://github.com/google-gemini/gemini-cli/pull/14373
138
+ - expose previewFeatures flag in a2a by @sehoon38 in
139
+ https://github.com/google-gemini/gemini-cli/pull/14550
140
+ - Fix emoji width in debug console. by @jacob314 in
141
+ https://github.com/google-gemini/gemini-cli/pull/14593
142
+ - Fully detach autoupgrade process by @scidomino in
143
+ https://github.com/google-gemini/gemini-cli/pull/14595
144
+ - Docs: Update Gemini 3 on Gemini CLI documentation by @jkcinouye in
145
+ https://github.com/google-gemini/gemini-cli/pull/14601
146
+ - Disallow floating promises. by @gundermanc in
147
+ https://github.com/google-gemini/gemini-cli/pull/14605
148
+ - chore/release: bump version to 0.21.0-nightly.20251207.025e450ac by
149
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14662
150
+ - feat(modelAvailabilityService): integrate model availability service into
151
+ backend logic by @adamfweidman in
152
+ https://github.com/google-gemini/gemini-cli/pull/14470
153
+ - Add prompt_id propagation in a2a-server task by @koxkox111 in
154
+ https://github.com/google-gemini/gemini-cli/pull/14581
155
+ - Fix: Prevent freezing in non-interactive Gemini CLI when debug mode is enabled
156
+ by @parthasaradhie in https://github.com/google-gemini/gemini-cli/pull/14580
157
+ - fix(audio): improve reading of audio files by @jackwotherspoon in
158
+ https://github.com/google-gemini/gemini-cli/pull/14658
159
+ - Update automated triage workflow to stop assigning priority labels by
160
+ @skeshive in https://github.com/google-gemini/gemini-cli/pull/14717
161
+ - set failed status when chained e2e fails by @scidomino in
162
+ https://github.com/google-gemini/gemini-cli/pull/14725
163
+ - feat(github action) Triage and Label Pull Requests by Size and Comple… by
164
+ @DaanVersavel in https://github.com/google-gemini/gemini-cli/pull/5571
165
+ - refactor(telemetry): Improve previous PR that allows telemetry to use the CLI
166
+ auth and add testing by @mboshernitsan in
167
+ https://github.com/google-gemini/gemini-cli/pull/14589
168
+ - Always set status in chained_e2e workflow by @scidomino in
169
+ https://github.com/google-gemini/gemini-cli/pull/14730
170
+ - feat: Add OTEL log event `gemini_cli.startup_stats` for startup stats. by
171
+ @kevin-ramdass in https://github.com/google-gemini/gemini-cli/pull/14734
172
+ - feat: auto-execute on slash command completion functions by @jackwotherspoon
173
+ in https://github.com/google-gemini/gemini-cli/pull/14584
174
+ - Docs: Proper release notes by @jkcinouye in
175
+ https://github.com/google-gemini/gemini-cli/pull/14405
176
+ - Add support for user-scoped extension settings by @chrstnb in
177
+ https://github.com/google-gemini/gemini-cli/pull/13748
178
+ - refactor(core): Improve environment variable handling in shell execution by
179
+ @galz10 in https://github.com/google-gemini/gemini-cli/pull/14742
180
+ - Remove old E2E Workflows by @scidomino in
181
+ https://github.com/google-gemini/gemini-cli/pull/14749
182
+ - fix: handle missing local extension config and skip hooks when disabled by
183
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14744
184
+ - chore/release: bump version to 0.21.0-nightly.20251209.ec9a8c7a7 by
185
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14751
186
+ - feat: Add support for MCP Resources by @MrLesk in
187
+ https://github.com/google-gemini/gemini-cli/pull/13178
188
+ - Always set pending status in E2E tests by @scidomino in
189
+ https://github.com/google-gemini/gemini-cli/pull/14756
190
+ - fix(lint): upgrade pip and use public pypi for yamllint by @allenhutchison in
191
+ https://github.com/google-gemini/gemini-cli/pull/14746
192
+ - fix: use Gemini API supported image formats for clipboard by @jackwotherspoon
193
+ in https://github.com/google-gemini/gemini-cli/pull/14762
194
+ - feat(a2a): Introduce restore command for a2a server by @cocosheng-g in
195
+ https://github.com/google-gemini/gemini-cli/pull/13015
196
+ - allow final:true to be returned on a2a server edit calls. by @DavidAPierce in
197
+ https://github.com/google-gemini/gemini-cli/pull/14747
198
+ - (fix) Automated pr labeller by @DaanVersavel in
199
+ https://github.com/google-gemini/gemini-cli/pull/14788
200
+ - Update CODEOWNERS by @kklashtorny1 in
201
+ https://github.com/google-gemini/gemini-cli/pull/14830
202
+ - Docs: Fix errors preventing site rebuild. by @jkcinouye in
203
+ https://github.com/google-gemini/gemini-cli/pull/14842
204
+ - chore(deps): bump express from 5.1.0 to 5.2.0 by @dependabot[bot] in
205
+ https://github.com/google-gemini/gemini-cli/pull/14325
206
+ - fix(patch): cherry-pick 3f5f030 to release/v0.21.0-preview.0-pr-14843 to patch
207
+ version v0.21.0-preview.0 and create version 0.21.0-preview.1 by
208
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14851
209
+ - fix(patch): cherry-pick ee6556c to release/v0.21.0-preview.1-pr-14691 to patch
210
+ version v0.21.0-preview.1 and create version 0.21.0-preview.2 by
211
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14908
212
+ - fix(patch): cherry-pick 54de675 to release/v0.21.0-preview.2-pr-14961 by
213
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14968
214
+ - fix(patch): cherry-pick 12cbe32 to release/v0.21.0-preview.3-pr-15000 to patch
215
+ version v0.21.0-preview.3 and create version 0.21.0-preview.4 by
216
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15003
217
+ - fix(patch): cherry-pick edbe548 to release/v0.21.0-preview.4-pr-15007 to patch
218
+ version v0.21.0-preview.4 and create version 0.21.0-preview.5 by
219
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15015
220
+ - fix(patch): cherry-pick 2995af6 to release/v0.21.0-preview.5-pr-15131 to patch
221
+ version v0.21.0-preview.5 and create version 0.21.0-preview.6 by
222
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15153
223
+
224
+ **Full Changelog**:
225
+ https://github.com/google-gemini/gemini-cli/compare/v0.20.2...v0.21.0
@@ -0,0 +1,129 @@
1
+ # Preview release: Release v0.22.0-preview.0
2
+
3
+ Released: December 16, 2025
4
+
5
+ Our preview release includes the latest, new, and experimental features. This
6
+ release may not be as stable as our [latest weekly release](latest.md).
7
+
8
+ To install the preview release:
9
+
10
+ ```
11
+ npm install -g @google/gemini-cli@preview
12
+ ```
13
+
14
+ ## What's Changed
15
+
16
+ - feat(ide): fallback to GEMINI_CLI_IDE_AUTH_TOKEN env var by @skeshive in
17
+ https://github.com/google-gemini/gemini-cli/pull/14843
18
+ - feat: display quota stats for unused models in /stats by @sehoon38 in
19
+ https://github.com/google-gemini/gemini-cli/pull/14764
20
+ - feat: ensure codebase investigator uses preview model when main agent does by
21
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14412
22
+ - chore: add closing reason to stale bug workflow by @galz10 in
23
+ https://github.com/google-gemini/gemini-cli/pull/14861
24
+ - Send the model and CLI version with the user agent by @gundermanc in
25
+ https://github.com/google-gemini/gemini-cli/pull/14865
26
+ - refactor(sessions): move session summary generation to startup by
27
+ @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14691
28
+ - Limit search depth in path corrector by @scidomino in
29
+ https://github.com/google-gemini/gemini-cli/pull/14869
30
+ - Fix: Correct typo in code comment by @kuishou68 in
31
+ https://github.com/google-gemini/gemini-cli/pull/14671
32
+ - feat(core): Plumbing for late resolution of model configs. by @joshualitt in
33
+ https://github.com/google-gemini/gemini-cli/pull/14597
34
+ - feat: attempt more error parsing by @adamfweidman in
35
+ https://github.com/google-gemini/gemini-cli/pull/14899
36
+ - Add missing await. by @gundermanc in
37
+ https://github.com/google-gemini/gemini-cli/pull/14910
38
+ - feat(core): Add support for transcript_path in hooks for git-ai/Gemini
39
+ extension by @svarlamov in
40
+ https://github.com/google-gemini/gemini-cli/pull/14663
41
+ - refactor: implement DelegateToAgentTool with discriminated union by
42
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14769
43
+ - feat: reset availabilityService on /auth by @adamfweidman in
44
+ https://github.com/google-gemini/gemini-cli/pull/14911
45
+ - chore/release: bump version to 0.21.0-nightly.20251211.8c83e1ea9 by
46
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14924
47
+ - Fix: Correctly detect MCP tool errors by @kevin-ramdass in
48
+ https://github.com/google-gemini/gemini-cli/pull/14937
49
+ - increase labeler timeout by @scidomino in
50
+ https://github.com/google-gemini/gemini-cli/pull/14922
51
+ - tool(cli): tweak the frontend tool to be aware of more core files from the cli
52
+ by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14962
53
+ - feat(cli): polish cached token stats and simplify stats display when quota is
54
+ present. by @jacob314 in
55
+ https://github.com/google-gemini/gemini-cli/pull/14961
56
+ - feat(settings-validation): add validation for settings schema by @lifefloating
57
+ in https://github.com/google-gemini/gemini-cli/pull/12929
58
+ - fix(ide): Update IDE extension to write auth token in env var by @skeshive in
59
+ https://github.com/google-gemini/gemini-cli/pull/14999
60
+ - Revert "chore(deps): bump express from 5.1.0 to 5.2.0" by @skeshive in
61
+ https://github.com/google-gemini/gemini-cli/pull/14998
62
+ - feat(a2a): Introduce /init command for a2a server by @cocosheng-g in
63
+ https://github.com/google-gemini/gemini-cli/pull/13419
64
+ - feat: support multi-file drag and drop of images by @jackwotherspoon in
65
+ https://github.com/google-gemini/gemini-cli/pull/14832
66
+ - fix(policy): allow codebase_investigator by default in read-only policy by
67
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15000
68
+ - refactor(ide ext): Update port file name + switch to 1-based index for
69
+ characters + remove truncation text by @skeshive in
70
+ https://github.com/google-gemini/gemini-cli/pull/10501
71
+ - fix(vscode-ide-companion): correct license generation for workspace
72
+ dependencies by @skeshive in
73
+ https://github.com/google-gemini/gemini-cli/pull/15004
74
+ - fix: temp fix for subagent invocation until subagent delegation is merged to
75
+ stable by @abhipatel12 in
76
+ https://github.com/google-gemini/gemini-cli/pull/15007
77
+ - test: update ide detection tests to make them more robust when run in an ide
78
+ by @kevin-ramdass in https://github.com/google-gemini/gemini-cli/pull/15008
79
+ - Remove flex from stats display. See snapshots for diffs. by @jacob314 in
80
+ https://github.com/google-gemini/gemini-cli/pull/14983
81
+ - Add license field into package.json by @jb-perez in
82
+ https://github.com/google-gemini/gemini-cli/pull/14473
83
+ - feat: Persistent "Always Allow" policies with granular shell & MCP support by
84
+ @allenhutchison in https://github.com/google-gemini/gemini-cli/pull/14737
85
+ - chore/release: bump version to 0.21.0-nightly.20251212.54de67536 by
86
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14969
87
+ - fix(core): commandPrefix word boundary and compound command safety by
88
+ @allenhutchison in https://github.com/google-gemini/gemini-cli/pull/15006
89
+ - chore(docs): add 'Maintainers only' label info to CONTRIBUTING.md by @jacob314
90
+ in https://github.com/google-gemini/gemini-cli/pull/14914
91
+ - Refresh hooks when refreshing extensions. by @scidomino in
92
+ https://github.com/google-gemini/gemini-cli/pull/14918
93
+ - Add clarity to error messages by @gsehgal in
94
+ https://github.com/google-gemini/gemini-cli/pull/14879
95
+ - chore : remove a redundant tip by @JayadityaGit in
96
+ https://github.com/google-gemini/gemini-cli/pull/14947
97
+ - chore/release: bump version to 0.21.0-nightly.20251213.977248e09 by
98
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15029
99
+ - Disallow redundant typecasts. by @gundermanc in
100
+ https://github.com/google-gemini/gemini-cli/pull/15030
101
+ - fix(auth): prioritize GEMINI_API_KEY env var and skip unnecessary key… by
102
+ @galz10 in https://github.com/google-gemini/gemini-cli/pull/14745
103
+ - fix: use zod for safety check result validation by @allenhutchison in
104
+ https://github.com/google-gemini/gemini-cli/pull/15026
105
+ - update(telemetry): add hashed_extension_name to field to extension events by
106
+ @kiranani in https://github.com/google-gemini/gemini-cli/pull/15025
107
+ - fix: similar to policy-engine, throw error in case of requiring tool execution
108
+ confirmation for non-interactive mode by @MayV in
109
+ https://github.com/google-gemini/gemini-cli/pull/14702
110
+ - Clean up processes in integration tests by @scidomino in
111
+ https://github.com/google-gemini/gemini-cli/pull/15102
112
+ - docs: update policy engine getting started and defaults by @NTaylorMullen in
113
+ https://github.com/google-gemini/gemini-cli/pull/15105
114
+ - Fix tool output fragmentation by encapsulating content in functionResponse by
115
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/13082
116
+ - Simplify method signature. by @scidomino in
117
+ https://github.com/google-gemini/gemini-cli/pull/15114
118
+ - Show raw input token counts in json output. by @jacob314 in
119
+ https://github.com/google-gemini/gemini-cli/pull/15021
120
+ - fix: Mark A2A requests as interactive by @MayV in
121
+ https://github.com/google-gemini/gemini-cli/pull/15108
122
+ - use previewFeatures to determine which pro model to use for A2A by @sehoon38
123
+ in https://github.com/google-gemini/gemini-cli/pull/15131
124
+ - refactor(cli): fix settings merging so that settings using the new json format
125
+ take priority over ones using the old format by @jacob314 in
126
+ https://github.com/google-gemini/gemini-cli/pull/15116
127
+
128
+ **Full Changelog**:
129
+ https://github.com/google-gemini/gemini-cli/compare/v0.21.0-preview.6...v0.22.0-preview.0