@google/gemini-cli-core 0.32.0-preview.0 → 0.33.0-preview.0
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.
- package/README.md +11 -9
- package/dist/docs/CONTRIBUTING.md +7 -4
- package/dist/docs/changelogs/index.md +24 -2
- package/dist/docs/changelogs/latest.md +389 -310
- package/dist/docs/changelogs/preview.md +186 -394
- package/dist/docs/cli/cli-reference.md +12 -12
- package/dist/docs/cli/custom-commands.md +9 -0
- package/dist/docs/cli/enterprise.md +19 -0
- package/dist/docs/cli/model.md +5 -14
- package/dist/docs/cli/plan-mode.md +38 -7
- package/dist/docs/cli/sandbox.md +42 -2
- package/dist/docs/cli/session-management.md +16 -7
- package/dist/docs/cli/settings.md +10 -10
- package/dist/docs/cli/telemetry.md +29 -0
- package/dist/docs/cli/tutorials/automation.md +101 -5
- package/dist/docs/cli/tutorials/mcp-setup.md +8 -0
- package/dist/docs/cli/tutorials/skills-getting-started.md +8 -0
- package/dist/docs/extensions/reference.md +9 -1
- package/dist/docs/extensions/writing-extensions.md +16 -0
- package/dist/docs/get-started/authentication.md +86 -5
- package/dist/docs/get-started/installation.md +1 -1
- package/dist/docs/hooks/best-practices.md +33 -1
- package/dist/docs/hooks/writing-hooks.md +24 -0
- package/dist/docs/ide-integration/index.md +8 -0
- package/dist/docs/reference/commands.md +3 -0
- package/dist/docs/reference/configuration.md +19 -15
- package/dist/docs/reference/keyboard-shortcuts.md +10 -0
- package/dist/docs/reference/policy-engine.md +10 -0
- package/dist/docs/resources/faq.md +8 -0
- package/dist/docs/resources/troubleshooting.md +4 -1
- package/dist/docs/sidebar.json +8 -1
- package/dist/src/agents/a2aUtils.d.ts +2 -0
- package/dist/src/agents/a2aUtils.js +12 -0
- package/dist/src/agents/a2aUtils.js.map +1 -1
- package/dist/src/agents/a2aUtils.test.js +50 -1
- package/dist/src/agents/a2aUtils.test.js.map +1 -1
- package/dist/src/agents/agentLoader.d.ts +2 -1
- package/dist/src/agents/agentLoader.js +17 -4
- package/dist/src/agents/agentLoader.js.map +1 -1
- package/dist/src/agents/agentLoader.test.js +46 -0
- package/dist/src/agents/agentLoader.test.js.map +1 -1
- package/dist/src/agents/auth-provider/factory.js +6 -3
- package/dist/src/agents/auth-provider/factory.js.map +1 -1
- package/dist/src/agents/auth-provider/http-provider.d.ts +28 -0
- package/dist/src/agents/auth-provider/http-provider.js +73 -0
- package/dist/src/agents/auth-provider/http-provider.js.map +1 -0
- package/dist/src/agents/auth-provider/http-provider.test.d.ts +6 -0
- package/dist/src/agents/auth-provider/http-provider.test.js +112 -0
- package/dist/src/agents/auth-provider/http-provider.test.js.map +1 -0
- package/dist/src/agents/auth-provider/types.d.ts +5 -0
- package/dist/src/agents/browser/browserAgentInvocation.d.ts +2 -3
- package/dist/src/agents/browser/browserAgentInvocation.js +1 -1
- package/dist/src/agents/browser/browserAgentInvocation.js.map +1 -1
- package/dist/src/agents/local-executor.js +36 -7
- package/dist/src/agents/local-executor.js.map +1 -1
- package/dist/src/agents/local-executor.test.js +18 -13
- package/dist/src/agents/local-executor.test.js.map +1 -1
- package/dist/src/agents/local-invocation.d.ts +3 -4
- package/dist/src/agents/local-invocation.js +164 -11
- package/dist/src/agents/local-invocation.js.map +1 -1
- package/dist/src/agents/local-invocation.test.js +49 -29
- package/dist/src/agents/local-invocation.test.js.map +1 -1
- package/dist/src/agents/registry.js +66 -12
- package/dist/src/agents/registry.js.map +1 -1
- package/dist/src/agents/registry.test.js +220 -0
- package/dist/src/agents/registry.test.js.map +1 -1
- package/dist/src/agents/remote-invocation.d.ts +2 -1
- package/dist/src/agents/remote-invocation.js +20 -2
- package/dist/src/agents/remote-invocation.js.map +1 -1
- package/dist/src/agents/remote-invocation.test.js +62 -10
- package/dist/src/agents/remote-invocation.test.js.map +1 -1
- package/dist/src/agents/subagent-tool.js.map +1 -1
- package/dist/src/agents/subagent-tool.test.js +7 -0
- package/dist/src/agents/subagent-tool.test.js.map +1 -1
- package/dist/src/agents/types.d.ts +18 -0
- package/dist/src/agents/types.js +6 -0
- package/dist/src/agents/types.js.map +1 -1
- package/dist/src/code_assist/server.js.map +1 -1
- package/dist/src/config/config.d.ts +11 -4
- package/dist/src/config/config.js +23 -47
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/config.test.js +29 -101
- package/dist/src/config/config.test.js.map +1 -1
- package/dist/src/core/client.js +5 -3
- package/dist/src/core/client.js.map +1 -1
- package/dist/src/core/client.test.js +47 -7
- package/dist/src/core/client.test.js.map +1 -1
- package/dist/src/core/coreToolHookTriggers.d.ts +3 -3
- package/dist/src/core/coreToolHookTriggers.js.map +1 -1
- package/dist/src/core/coreToolScheduler.js +38 -22
- package/dist/src/core/coreToolScheduler.js.map +1 -1
- package/dist/src/core/geminiChat.d.ts +2 -2
- package/dist/src/core/geminiChat.js +3 -0
- package/dist/src/core/geminiChat.js.map +1 -1
- package/dist/src/core/loggingContentGenerator.d.ts +1 -0
- package/dist/src/core/loggingContentGenerator.js +31 -1
- package/dist/src/core/loggingContentGenerator.js.map +1 -1
- package/dist/src/core/loggingContentGenerator.test.js +94 -0
- package/dist/src/core/loggingContentGenerator.test.js.map +1 -1
- package/dist/src/generated/git-commit.d.ts +2 -2
- package/dist/src/generated/git-commit.js +2 -2
- package/dist/src/hooks/hookRunner.js +30 -4
- package/dist/src/hooks/hookRunner.js.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +1 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/mcp/mcp-oauth-provider.d.ts +43 -0
- package/dist/src/mcp/mcp-oauth-provider.js +67 -0
- package/dist/src/mcp/mcp-oauth-provider.js.map +1 -0
- package/dist/src/mcp/mcp-oauth-provider.test.d.ts +6 -0
- package/dist/src/mcp/mcp-oauth-provider.test.js +63 -0
- package/dist/src/mcp/mcp-oauth-provider.test.js.map +1 -0
- package/dist/src/policy/config.d.ts +1 -1
- package/dist/src/policy/config.js +4 -3
- package/dist/src/policy/config.js.map +1 -1
- package/dist/src/policy/policies/plan.toml +50 -13
- package/dist/src/policy/policies/read-only.toml +12 -11
- package/dist/src/policy/policies/write.toml +12 -11
- package/dist/src/policy/policies/yolo.toml +21 -11
- package/dist/src/policy/policy-engine.test.js +62 -2
- package/dist/src/policy/policy-engine.test.js.map +1 -1
- package/dist/src/policy/toml-loader.d.ts +19 -1
- package/dist/src/policy/toml-loader.js +127 -0
- package/dist/src/policy/toml-loader.js.map +1 -1
- package/dist/src/policy/toml-loader.test.js +218 -14
- package/dist/src/policy/toml-loader.test.js.map +1 -1
- package/dist/src/prompts/snippets.js +7 -7
- package/dist/src/prompts/snippets.js.map +1 -1
- package/dist/src/scheduler/scheduler.js +1 -1
- package/dist/src/scheduler/scheduler.js.map +1 -1
- package/dist/src/scheduler/scheduler.test.js +1 -1
- package/dist/src/scheduler/scheduler.test.js.map +1 -1
- package/dist/src/scheduler/state-manager.d.ts +1 -2
- package/dist/src/scheduler/state-manager.js +19 -10
- package/dist/src/scheduler/state-manager.js.map +1 -1
- package/dist/src/scheduler/tool-executor.d.ts +3 -2
- package/dist/src/scheduler/tool-executor.js +89 -32
- package/dist/src/scheduler/tool-executor.js.map +1 -1
- package/dist/src/scheduler/tool-executor.test.js +191 -0
- package/dist/src/scheduler/tool-executor.test.js.map +1 -1
- package/dist/src/scheduler/types.d.ts +3 -4
- package/dist/src/services/chatRecordingService.js +12 -0
- package/dist/src/services/chatRecordingService.js.map +1 -1
- package/dist/src/services/chatRecordingService.test.js +15 -4
- package/dist/src/services/chatRecordingService.test.js.map +1 -1
- package/dist/src/services/loopDetectionService.d.ts +2 -1
- package/dist/src/services/loopDetectionService.js +49 -11
- package/dist/src/services/loopDetectionService.js.map +1 -1
- package/dist/src/services/loopDetectionService.test.js +63 -22
- package/dist/src/services/loopDetectionService.test.js.map +1 -1
- package/dist/src/skills/builtin/skill-creator/scripts/package_skill.cjs +35 -10
- package/dist/src/tools/ask-user.d.ts +1 -0
- package/dist/src/tools/ask-user.js +2 -1
- package/dist/src/tools/ask-user.js.map +1 -1
- package/dist/src/tools/definitions/base-declarations.d.ts +51 -0
- package/dist/src/tools/definitions/base-declarations.js +75 -1
- package/dist/src/tools/definitions/base-declarations.js.map +1 -1
- package/dist/src/tools/definitions/coreTools.d.ts +1 -1
- package/dist/src/tools/definitions/coreTools.js +5 -1
- package/dist/src/tools/definitions/coreTools.js.map +1 -1
- package/dist/src/tools/definitions/dynamic-declaration-helpers.js +14 -12
- package/dist/src/tools/definitions/dynamic-declaration-helpers.js.map +1 -1
- package/dist/src/tools/definitions/model-family-sets/default-legacy.js +97 -81
- package/dist/src/tools/definitions/model-family-sets/default-legacy.js.map +1 -1
- package/dist/src/tools/definitions/model-family-sets/gemini-3.js +99 -82
- package/dist/src/tools/definitions/model-family-sets/gemini-3.js.map +1 -1
- package/dist/src/tools/enter-plan-mode.d.ts +1 -0
- package/dist/src/tools/enter-plan-mode.js +2 -1
- package/dist/src/tools/enter-plan-mode.js.map +1 -1
- package/dist/src/tools/exit-plan-mode.d.ts +1 -0
- package/dist/src/tools/exit-plan-mode.js +2 -1
- package/dist/src/tools/exit-plan-mode.js.map +1 -1
- package/dist/src/tools/mcp-client.d.ts +6 -0
- package/dist/src/tools/mcp-client.js +14 -0
- package/dist/src/tools/mcp-client.js.map +1 -1
- package/dist/src/tools/mcp-tool.js +20 -9
- package/dist/src/tools/mcp-tool.js.map +1 -1
- package/dist/src/tools/mcp-tool.test.js +48 -1
- package/dist/src/tools/mcp-tool.test.js.map +1 -1
- package/dist/src/tools/read-file.test.js +7 -0
- package/dist/src/tools/read-file.test.js.map +1 -1
- package/dist/src/tools/shell.d.ts +2 -3
- package/dist/src/tools/shell.js +10 -9
- package/dist/src/tools/shell.js.map +1 -1
- package/dist/src/tools/tool-names.d.ts +2 -2
- package/dist/src/tools/tool-names.js +14 -4
- package/dist/src/tools/tool-names.js.map +1 -1
- package/dist/src/tools/tool-names.test.js +2 -0
- package/dist/src/tools/tool-names.test.js.map +1 -1
- package/dist/src/tools/tool-registry.d.ts +3 -2
- package/dist/src/tools/tool-registry.js +41 -5
- package/dist/src/tools/tool-registry.js.map +1 -1
- package/dist/src/tools/tool-registry.test.js +42 -7
- package/dist/src/tools/tool-registry.test.js.map +1 -1
- package/dist/src/tools/tools.d.ts +6 -4
- package/dist/src/tools/tools.js.map +1 -1
- package/dist/src/utils/constants.d.ts +3 -0
- package/dist/src/utils/constants.js +3 -0
- package/dist/src/utils/constants.js.map +1 -1
- package/dist/src/utils/errors.d.ts +4 -0
- package/dist/src/utils/errors.js +6 -0
- package/dist/src/utils/errors.js.map +1 -1
- package/dist/src/utils/errors.test.js +20 -1
- package/dist/src/utils/errors.test.js.map +1 -1
- package/dist/src/utils/fetch.js +1 -1
- package/dist/src/utils/fetch.js.map +1 -1
- package/dist/src/utils/fileUtils.d.ts +0 -1
- package/dist/src/utils/fileUtils.js +5 -7
- package/dist/src/utils/fileUtils.js.map +1 -1
- package/dist/src/utils/tool-utils.d.ts +11 -4
- package/dist/src/utils/tool-utils.js +18 -5
- package/dist/src/utils/tool-utils.js.map +1 -1
- package/dist/src/utils/tool-utils.test.js +8 -0
- package/dist/src/utils/tool-utils.test.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Preview release: v0.
|
|
1
|
+
# Preview release: v0.32.0-preview.0
|
|
2
2
|
|
|
3
3
|
Released: February 27, 2026
|
|
4
4
|
|
|
@@ -13,404 +13,196 @@ npm install -g @google/gemini-cli@preview
|
|
|
13
13
|
|
|
14
14
|
## Highlights
|
|
15
15
|
|
|
16
|
-
- **Plan Mode Enhancements**:
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
- **
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
- **
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
and resolved multiple dependency vulnerabilities.
|
|
16
|
+
- **Plan Mode Enhancements**: Significant updates to Plan Mode, including
|
|
17
|
+
support for modifying plans in external editors, adaptive workflows based on
|
|
18
|
+
task complexity, and new integration tests.
|
|
19
|
+
- **Agent and Core Engine Updates**: Enabled the generalist agent, introduced
|
|
20
|
+
`Kind.Agent` for sub-agent classification, implemented task tracking
|
|
21
|
+
foundation, and improved Agent-to-Agent (A2A) streaming and content
|
|
22
|
+
extraction.
|
|
23
|
+
- **CLI & User Experience**: Introduced interactive shell autocompletion, added
|
|
24
|
+
a new verbosity mode for cleaner error reporting, enabled parallel loading of
|
|
25
|
+
extensions, and improved UI hints and shortcut handling.
|
|
26
|
+
- **Billing and Security**: Implemented G1 AI credits overage flow with enhanced
|
|
27
|
+
billing telemetry, updated the authentication handshake to specification, and
|
|
28
|
+
added support for a policy engine in extensions.
|
|
29
|
+
- **Stability and Bug Fixes**: Addressed numerous issues including 100% CPU
|
|
30
|
+
consumption by orphaned processes, enhanced retry logic for Code Assist,
|
|
31
|
+
reduced intrusive MCP errors, and merged duplicate imports across packages.
|
|
33
32
|
|
|
34
33
|
## What's Changed
|
|
35
34
|
|
|
36
|
-
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
[#
|
|
40
|
-
-
|
|
41
|
-
@
|
|
42
|
-
[#
|
|
43
|
-
-
|
|
44
|
-
[#
|
|
45
|
-
-
|
|
46
|
-
[#
|
|
47
|
-
-
|
|
48
|
-
[#
|
|
49
|
-
-
|
|
50
|
-
|
|
51
|
-
-
|
|
52
|
-
|
|
53
|
-
-
|
|
54
|
-
|
|
55
|
-
-
|
|
56
|
-
|
|
57
|
-
-
|
|
58
|
-
|
|
59
|
-
-
|
|
60
|
-
|
|
61
|
-
[#
|
|
62
|
-
-
|
|
63
|
-
[#
|
|
64
|
-
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
-
|
|
68
|
-
|
|
69
|
-
-
|
|
70
|
-
|
|
71
|
-
- fix(core): clarify plan mode constraints and exit mechanism by @jerop in
|
|
72
|
-
[#19438](https://github.com/google-gemini/gemini-cli/pull/19438)
|
|
73
|
-
- feat(cli): add macOS run-event notifications (interactive only) by
|
|
74
|
-
@LyalinDotCom in
|
|
75
|
-
[#19056](https://github.com/google-gemini/gemini-cli/pull/19056)
|
|
76
|
-
- Changelog for v0.29.0 by @gemini-cli-robot in
|
|
77
|
-
[#19361](https://github.com/google-gemini/gemini-cli/pull/19361)
|
|
78
|
-
- fix(ui): preventing empty history items from being added by @devr0306 in
|
|
79
|
-
[#19014](https://github.com/google-gemini/gemini-cli/pull/19014)
|
|
80
|
-
- Changelog for v0.30.0-preview.0 by @gemini-cli-robot in
|
|
81
|
-
[#19364](https://github.com/google-gemini/gemini-cli/pull/19364)
|
|
82
|
-
- feat(core): add support for MCP progress updates by @NTaylorMullen in
|
|
83
|
-
[#19046](https://github.com/google-gemini/gemini-cli/pull/19046)
|
|
84
|
-
- fix(core): ensure directory exists before writing conversation file by
|
|
85
|
-
@godwiniheuwa in
|
|
86
|
-
[#18429](https://github.com/google-gemini/gemini-cli/pull/18429)
|
|
87
|
-
- fix(ui): move margin from top to bottom in ToolGroupMessage by @imadraude in
|
|
88
|
-
[#17198](https://github.com/google-gemini/gemini-cli/pull/17198)
|
|
89
|
-
- fix(cli): treat unknown slash commands as regular input instead of showing
|
|
90
|
-
error by @skyvanguard in
|
|
91
|
-
[#17393](https://github.com/google-gemini/gemini-cli/pull/17393)
|
|
92
|
-
- feat(core): experimental in-progress steering hints (2 of 2) by @joshualitt in
|
|
93
|
-
[#19307](https://github.com/google-gemini/gemini-cli/pull/19307)
|
|
94
|
-
- docs(plan): add documentation for plan mode command by @Adib234 in
|
|
95
|
-
[#19467](https://github.com/google-gemini/gemini-cli/pull/19467)
|
|
96
|
-
- fix(core): ripgrep fails when pattern looks like ripgrep flag by @syvb in
|
|
97
|
-
[#18858](https://github.com/google-gemini/gemini-cli/pull/18858)
|
|
98
|
-
- fix(cli): disable auto-completion on Shift+Tab to preserve mode cycling by
|
|
99
|
-
@NTaylorMullen in
|
|
100
|
-
[#19451](https://github.com/google-gemini/gemini-cli/pull/19451)
|
|
101
|
-
- use issuer instead of authorization_endpoint for oauth discovery by
|
|
102
|
-
@garrettsparks in
|
|
103
|
-
[#17332](https://github.com/google-gemini/gemini-cli/pull/17332)
|
|
104
|
-
- feat(cli): include `/dir add` directories in @ autocomplete suggestions by
|
|
105
|
-
@jasmeetsb in [#19246](https://github.com/google-gemini/gemini-cli/pull/19246)
|
|
106
|
-
- feat(admin): Admin settings should only apply if adminControlsApplicable =
|
|
107
|
-
true and fetch errors should be fatal by @skeshive in
|
|
108
|
-
[#19453](https://github.com/google-gemini/gemini-cli/pull/19453)
|
|
109
|
-
- Format strict-development-rules command by @g-samroberts in
|
|
110
|
-
[#19484](https://github.com/google-gemini/gemini-cli/pull/19484)
|
|
111
|
-
- feat(core): centralize compatibility checks and add TrueColor detection by
|
|
112
|
-
@spencer426 in
|
|
113
|
-
[#19478](https://github.com/google-gemini/gemini-cli/pull/19478)
|
|
114
|
-
- Remove unused files and update index and sidebar. by @g-samroberts in
|
|
115
|
-
[#19479](https://github.com/google-gemini/gemini-cli/pull/19479)
|
|
116
|
-
- Migrate core render util to use xterm.js as part of the rendering loop. by
|
|
117
|
-
@jacob314 in [#19044](https://github.com/google-gemini/gemini-cli/pull/19044)
|
|
118
|
-
- Changelog for v0.30.0-preview.1 by @gemini-cli-robot in
|
|
119
|
-
[#19496](https://github.com/google-gemini/gemini-cli/pull/19496)
|
|
120
|
-
- build: replace deprecated built-in punycode with userland package by @jacob314
|
|
121
|
-
in [#19502](https://github.com/google-gemini/gemini-cli/pull/19502)
|
|
122
|
-
- Speculative fixes to try to fix react error. by @jacob314 in
|
|
123
|
-
[#19508](https://github.com/google-gemini/gemini-cli/pull/19508)
|
|
124
|
-
- fix spacing by @jacob314 in
|
|
125
|
-
[#19494](https://github.com/google-gemini/gemini-cli/pull/19494)
|
|
126
|
-
- fix(core): ensure user rejections update tool outcome for telemetry by
|
|
127
|
-
@abhiasap in [#18982](https://github.com/google-gemini/gemini-cli/pull/18982)
|
|
128
|
-
- fix(acp): Initialize config (#18897) by @Mervap in
|
|
129
|
-
[#18898](https://github.com/google-gemini/gemini-cli/pull/18898)
|
|
130
|
-
- fix(core): add error logging for IDE fetch failures by @yuvrajangadsingh in
|
|
131
|
-
[#17981](https://github.com/google-gemini/gemini-cli/pull/17981)
|
|
132
|
-
- feat(acp): support set_mode interface (#18890) by @Mervap in
|
|
133
|
-
[#18891](https://github.com/google-gemini/gemini-cli/pull/18891)
|
|
134
|
-
- fix(core): robust workspace-based IDE connection discovery by @ehedlund in
|
|
135
|
-
[#18443](https://github.com/google-gemini/gemini-cli/pull/18443)
|
|
136
|
-
- Deflake windows tests. by @jacob314 in
|
|
137
|
-
[#19511](https://github.com/google-gemini/gemini-cli/pull/19511)
|
|
138
|
-
- Fix: Avoid tool confirmation timeout when no UI listeners are present by
|
|
139
|
-
@pdHaku0 in [#17955](https://github.com/google-gemini/gemini-cli/pull/17955)
|
|
140
|
-
- format md file by @scidomino in
|
|
141
|
-
[#19474](https://github.com/google-gemini/gemini-cli/pull/19474)
|
|
142
|
-
- feat(cli): add experimental.useOSC52Copy setting by @scidomino in
|
|
143
|
-
[#19488](https://github.com/google-gemini/gemini-cli/pull/19488)
|
|
144
|
-
- feat(cli): replace loading phrases boolean with enum setting by @LyalinDotCom
|
|
145
|
-
in [#19347](https://github.com/google-gemini/gemini-cli/pull/19347)
|
|
146
|
-
- Update skill to adjust for generated results. by @g-samroberts in
|
|
147
|
-
[#19500](https://github.com/google-gemini/gemini-cli/pull/19500)
|
|
148
|
-
- Fix message too large issue. by @gundermanc in
|
|
149
|
-
[#19499](https://github.com/google-gemini/gemini-cli/pull/19499)
|
|
150
|
-
- fix(core): prevent duplicate tool approval entries in auto-saved.toml by
|
|
35
|
+
- feat(plan): add integration tests for plan mode by @Adib234 in
|
|
36
|
+
[#20214](https://github.com/google-gemini/gemini-cli/pull/20214)
|
|
37
|
+
- fix(acp): update auth handshake to spec by @skeshive in
|
|
38
|
+
[#19725](https://github.com/google-gemini/gemini-cli/pull/19725)
|
|
39
|
+
- feat(core): implement robust A2A streaming reassembly and fix task continuity
|
|
40
|
+
by @adamfweidman in
|
|
41
|
+
[#20091](https://github.com/google-gemini/gemini-cli/pull/20091)
|
|
42
|
+
- feat(cli): load extensions in parallel by @scidomino in
|
|
43
|
+
[#20229](https://github.com/google-gemini/gemini-cli/pull/20229)
|
|
44
|
+
- Plumb the maxAttempts setting through Config args by @kevinjwang1 in
|
|
45
|
+
[#20239](https://github.com/google-gemini/gemini-cli/pull/20239)
|
|
46
|
+
- fix(cli): skip 404 errors in setup-github file downloads by @h30s in
|
|
47
|
+
[#20287](https://github.com/google-gemini/gemini-cli/pull/20287)
|
|
48
|
+
- fix(cli): expose model.name setting in settings dialog for persistence by
|
|
49
|
+
@achaljhawar in
|
|
50
|
+
[#19605](https://github.com/google-gemini/gemini-cli/pull/19605)
|
|
51
|
+
- docs: remove legacy cmd examples in favor of powershell by @scidomino in
|
|
52
|
+
[#20323](https://github.com/google-gemini/gemini-cli/pull/20323)
|
|
53
|
+
- feat(core): Enable model steering in workspace. by @joshualitt in
|
|
54
|
+
[#20343](https://github.com/google-gemini/gemini-cli/pull/20343)
|
|
55
|
+
- fix: remove trailing comma in issue triage workflow settings json by @Nixxx19
|
|
56
|
+
in [#20265](https://github.com/google-gemini/gemini-cli/pull/20265)
|
|
57
|
+
- feat(core): implement task tracker foundation and service by @anj-s in
|
|
58
|
+
[#19464](https://github.com/google-gemini/gemini-cli/pull/19464)
|
|
59
|
+
- test: support tests that include color information by @jacob314 in
|
|
60
|
+
[#20220](https://github.com/google-gemini/gemini-cli/pull/20220)
|
|
61
|
+
- feat(core): introduce Kind.Agent for sub-agent classification by @abhipatel12
|
|
62
|
+
in [#20369](https://github.com/google-gemini/gemini-cli/pull/20369)
|
|
63
|
+
- Changelog for v0.30.0 by @gemini-cli-robot in
|
|
64
|
+
[#20252](https://github.com/google-gemini/gemini-cli/pull/20252)
|
|
65
|
+
- Update changelog workflow to reject nightly builds by @g-samroberts in
|
|
66
|
+
[#20248](https://github.com/google-gemini/gemini-cli/pull/20248)
|
|
67
|
+
- Changelog for v0.31.0-preview.0 by @gemini-cli-robot in
|
|
68
|
+
[#20249](https://github.com/google-gemini/gemini-cli/pull/20249)
|
|
69
|
+
- feat(cli): hide workspace policy update dialog and auto-accept by default by
|
|
151
70
|
@Abhijit-2592 in
|
|
152
|
-
[#
|
|
153
|
-
-
|
|
154
|
-
in [#19555](https://github.com/google-gemini/gemini-cli/pull/19555)
|
|
155
|
-
- chore(core): improve encapsulation and remove unused exports by @adamfweidman
|
|
156
|
-
in [#19556](https://github.com/google-gemini/gemini-cli/pull/19556)
|
|
157
|
-
- Revert "Add generic searchable list to back settings and extensions (… by
|
|
158
|
-
@chrstnb in [#19434](https://github.com/google-gemini/gemini-cli/pull/19434)
|
|
159
|
-
- fix(core): improve error type extraction for telemetry by @yunaseoul in
|
|
160
|
-
[#19565](https://github.com/google-gemini/gemini-cli/pull/19565)
|
|
161
|
-
- fix: remove extra padding in Composer by @jackwotherspoon in
|
|
162
|
-
[#19529](https://github.com/google-gemini/gemini-cli/pull/19529)
|
|
163
|
-
- feat(plan): support configuring custom plans storage directory by @jerop in
|
|
164
|
-
[#19577](https://github.com/google-gemini/gemini-cli/pull/19577)
|
|
165
|
-
- Migrate files to resource or references folder. by @g-samroberts in
|
|
166
|
-
[#19503](https://github.com/google-gemini/gemini-cli/pull/19503)
|
|
167
|
-
- feat(policy): implement project-level policy support by @Abhijit-2592 in
|
|
168
|
-
[#18682](https://github.com/google-gemini/gemini-cli/pull/18682)
|
|
169
|
-
- feat(core): Implement parallel FC for read only tools. by @joshualitt in
|
|
170
|
-
[#18791](https://github.com/google-gemini/gemini-cli/pull/18791)
|
|
171
|
-
- chore(skills): adds pr-address-comments skill to work on PR feedback by
|
|
172
|
-
@mbleigh in [#19576](https://github.com/google-gemini/gemini-cli/pull/19576)
|
|
173
|
-
- refactor(sdk): introduce session-based architecture by @mbleigh in
|
|
174
|
-
[#19180](https://github.com/google-gemini/gemini-cli/pull/19180)
|
|
175
|
-
- fix(ci): add fallback JSON extraction to issue triage workflow by @bdmorgan in
|
|
176
|
-
[#19593](https://github.com/google-gemini/gemini-cli/pull/19593)
|
|
177
|
-
- feat(core): refine Edit and WriteFile tool schemas for Gemini 3 by
|
|
71
|
+
[#20351](https://github.com/google-gemini/gemini-cli/pull/20351)
|
|
72
|
+
- feat(core): rename grep_search include parameter to include_pattern by
|
|
178
73
|
@SandyTao520 in
|
|
179
|
-
[#
|
|
180
|
-
-
|
|
181
|
-
[#
|
|
182
|
-
-
|
|
183
|
-
[#
|
|
184
|
-
-
|
|
185
|
-
[#
|
|
186
|
-
- feat(
|
|
187
|
-
[#
|
|
188
|
-
-
|
|
189
|
-
[#
|
|
190
|
-
-
|
|
191
|
-
[#
|
|
192
|
-
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
-
|
|
198
|
-
|
|
199
|
-
[#
|
|
200
|
-
-
|
|
201
|
-
[#
|
|
202
|
-
-
|
|
203
|
-
|
|
204
|
-
-
|
|
205
|
-
|
|
206
|
-
[#
|
|
207
|
-
-
|
|
74
|
+
[#20328](https://github.com/google-gemini/gemini-cli/pull/20328)
|
|
75
|
+
- feat(plan): support opening and modifying plan in external editor by @Adib234
|
|
76
|
+
in [#20348](https://github.com/google-gemini/gemini-cli/pull/20348)
|
|
77
|
+
- feat(cli): implement interactive shell autocompletion by @mrpmohiburrahman in
|
|
78
|
+
[#20082](https://github.com/google-gemini/gemini-cli/pull/20082)
|
|
79
|
+
- fix(core): allow /memory add to work in plan mode by @Jefftree in
|
|
80
|
+
[#20353](https://github.com/google-gemini/gemini-cli/pull/20353)
|
|
81
|
+
- feat(core): add HTTP 499 to retryable errors and map to RetryableQuotaError by
|
|
82
|
+
@bdmorgan in [#20432](https://github.com/google-gemini/gemini-cli/pull/20432)
|
|
83
|
+
- feat(core): Enable generalist agent by @joshualitt in
|
|
84
|
+
[#19665](https://github.com/google-gemini/gemini-cli/pull/19665)
|
|
85
|
+
- Updated tests in TableRenderer.test.tsx to use SVG snapshots by @devr0306 in
|
|
86
|
+
[#20450](https://github.com/google-gemini/gemini-cli/pull/20450)
|
|
87
|
+
- Refactor Github Action per b/485167538 by @google-admin in
|
|
88
|
+
[#19443](https://github.com/google-gemini/gemini-cli/pull/19443)
|
|
89
|
+
- fix(github): resolve actionlint and yamllint regressions from #19443 by @jerop
|
|
90
|
+
in [#20467](https://github.com/google-gemini/gemini-cli/pull/20467)
|
|
91
|
+
- fix: action var usage by @galz10 in
|
|
92
|
+
[#20492](https://github.com/google-gemini/gemini-cli/pull/20492)
|
|
93
|
+
- feat(core): improve A2A content extraction by @adamfweidman in
|
|
94
|
+
[#20487](https://github.com/google-gemini/gemini-cli/pull/20487)
|
|
95
|
+
- fix(cli): support quota error fallbacks for all authentication types by
|
|
96
|
+
@sehoon38 in [#20475](https://github.com/google-gemini/gemini-cli/pull/20475)
|
|
97
|
+
- fix(core): flush transcript for pure tool-call responses to ensure BeforeTool
|
|
98
|
+
hooks see complete state by @krishdef7 in
|
|
99
|
+
[#20419](https://github.com/google-gemini/gemini-cli/pull/20419)
|
|
100
|
+
- feat(plan): adapt planning workflow based on complexity of task by @jerop in
|
|
101
|
+
[#20465](https://github.com/google-gemini/gemini-cli/pull/20465)
|
|
102
|
+
- fix: prevent orphaned processes from consuming 100% CPU when terminal closes
|
|
103
|
+
by @yuvrajangadsingh in
|
|
104
|
+
[#16965](https://github.com/google-gemini/gemini-cli/pull/16965)
|
|
105
|
+
- feat(core): increase fetch timeout and fix [object Object] error
|
|
106
|
+
stringification by @bdmorgan in
|
|
107
|
+
[#20441](https://github.com/google-gemini/gemini-cli/pull/20441)
|
|
108
|
+
- [Gemma x Gemini CLI] Add an Experimental Gemma Router that uses a LiteRT-LM
|
|
109
|
+
shim into the Composite Model Classifier Strategy by @sidwan02 in
|
|
110
|
+
[#17231](https://github.com/google-gemini/gemini-cli/pull/17231)
|
|
111
|
+
- docs(plan): update documentation regarding supporting editing of plan files
|
|
112
|
+
during plan approval by @Adib234 in
|
|
113
|
+
[#20452](https://github.com/google-gemini/gemini-cli/pull/20452)
|
|
114
|
+
- test(cli): fix flaky ToolResultDisplay overflow test by @jwhelangoog in
|
|
115
|
+
[#20518](https://github.com/google-gemini/gemini-cli/pull/20518)
|
|
116
|
+
- ui(cli): reduce length of Ctrl+O hint by @jwhelangoog in
|
|
117
|
+
[#20490](https://github.com/google-gemini/gemini-cli/pull/20490)
|
|
118
|
+
- fix(ui): correct styled table width calculations by @devr0306 in
|
|
119
|
+
[#20042](https://github.com/google-gemini/gemini-cli/pull/20042)
|
|
120
|
+
- Avoid overaggressive unescaping by @scidomino in
|
|
121
|
+
[#20520](https://github.com/google-gemini/gemini-cli/pull/20520)
|
|
122
|
+
- feat(telemetry) Instrument traces with more attributes and make them available
|
|
123
|
+
to OTEL users by @heaventourist in
|
|
124
|
+
[#20237](https://github.com/google-gemini/gemini-cli/pull/20237)
|
|
125
|
+
- Add support for policy engine in extensions by @chrstnb in
|
|
126
|
+
[#20049](https://github.com/google-gemini/gemini-cli/pull/20049)
|
|
127
|
+
- Docs: Update to Terms of Service & FAQ by @jkcinouye in
|
|
128
|
+
[#20488](https://github.com/google-gemini/gemini-cli/pull/20488)
|
|
129
|
+
- Fix bottom border rendering for search and add a regression test. by @jacob314
|
|
130
|
+
in [#20517](https://github.com/google-gemini/gemini-cli/pull/20517)
|
|
131
|
+
- fix(core): apply retry logic to CodeAssistServer for all users by @bdmorgan in
|
|
132
|
+
[#20507](https://github.com/google-gemini/gemini-cli/pull/20507)
|
|
133
|
+
- Fix extension MCP server env var loading by @chrstnb in
|
|
134
|
+
[#20374](https://github.com/google-gemini/gemini-cli/pull/20374)
|
|
135
|
+
- feat(ui): add 'ctrl+o' hint to truncated content message by @jerop in
|
|
136
|
+
[#20529](https://github.com/google-gemini/gemini-cli/pull/20529)
|
|
137
|
+
- Fix flicker showing message to press ctrl-O again to collapse. by @jacob314 in
|
|
138
|
+
[#20414](https://github.com/google-gemini/gemini-cli/pull/20414)
|
|
139
|
+
- fix(cli): hide shortcuts hint while model is thinking or the user has typed a
|
|
140
|
+
prompt + add debounce to avoid flicker by @jacob314 in
|
|
141
|
+
[#19389](https://github.com/google-gemini/gemini-cli/pull/19389)
|
|
142
|
+
- feat(plan): update planning workflow to encourage multi-select with
|
|
143
|
+
descriptions of options by @Adib234 in
|
|
144
|
+
[#20491](https://github.com/google-gemini/gemini-cli/pull/20491)
|
|
145
|
+
- refactor(core,cli): useAlternateBuffer read from config by @psinha40898 in
|
|
146
|
+
[#20346](https://github.com/google-gemini/gemini-cli/pull/20346)
|
|
147
|
+
- fix(cli): ensure dialogs stay scrolled to bottom in alternate buffer mode by
|
|
148
|
+
@jacob314 in [#20527](https://github.com/google-gemini/gemini-cli/pull/20527)
|
|
149
|
+
- fix(core): revert auto-save of policies to user space by @Abhijit-2592 in
|
|
150
|
+
[#20531](https://github.com/google-gemini/gemini-cli/pull/20531)
|
|
151
|
+
- Demote unreliable test. by @gundermanc in
|
|
152
|
+
[#20571](https://github.com/google-gemini/gemini-cli/pull/20571)
|
|
153
|
+
- fix(core): handle optional response fields from code assist API by @sehoon38
|
|
154
|
+
in [#20345](https://github.com/google-gemini/gemini-cli/pull/20345)
|
|
155
|
+
- fix(cli): keep thought summary when loading phrases are off by @LyalinDotCom
|
|
156
|
+
in [#20497](https://github.com/google-gemini/gemini-cli/pull/20497)
|
|
157
|
+
- feat(cli): add temporary flag to disable workspace policies by @Abhijit-2592
|
|
158
|
+
in [#20523](https://github.com/google-gemini/gemini-cli/pull/20523)
|
|
159
|
+
- Disable expensive and scheduled workflows on personal forks by @dewitt in
|
|
160
|
+
[#20449](https://github.com/google-gemini/gemini-cli/pull/20449)
|
|
161
|
+
- Moved markdown parsing logic to a separate util file by @devr0306 in
|
|
162
|
+
[#20526](https://github.com/google-gemini/gemini-cli/pull/20526)
|
|
163
|
+
- fix(plan): prevent agent from using ask_user for shell command confirmation by
|
|
164
|
+
@Adib234 in [#20504](https://github.com/google-gemini/gemini-cli/pull/20504)
|
|
165
|
+
- fix(core): disable retries for code assist streaming requests by @sehoon38 in
|
|
166
|
+
[#20561](https://github.com/google-gemini/gemini-cli/pull/20561)
|
|
167
|
+
- feat(billing): implement G1 AI credits overage flow with billing telemetry by
|
|
168
|
+
@gsquared94 in
|
|
169
|
+
[#18590](https://github.com/google-gemini/gemini-cli/pull/18590)
|
|
170
|
+
- feat: better error messages by @gsquared94 in
|
|
171
|
+
[#20577](https://github.com/google-gemini/gemini-cli/pull/20577)
|
|
172
|
+
- fix(ui): persist expansion in AskUser dialog when navigating options by @jerop
|
|
173
|
+
in [#20559](https://github.com/google-gemini/gemini-cli/pull/20559)
|
|
174
|
+
- fix(cli): prevent sub-agent tool calls from leaking into UI by @abhipatel12 in
|
|
175
|
+
[#20580](https://github.com/google-gemini/gemini-cli/pull/20580)
|
|
176
|
+
- fix(cli): Shell autocomplete polish by @jacob314 in
|
|
177
|
+
[#20411](https://github.com/google-gemini/gemini-cli/pull/20411)
|
|
178
|
+
- Changelog for v0.31.0-preview.1 by @gemini-cli-robot in
|
|
179
|
+
[#20590](https://github.com/google-gemini/gemini-cli/pull/20590)
|
|
180
|
+
- Add slash command for promoting behavioral evals to CI blocking by @gundermanc
|
|
181
|
+
in [#20575](https://github.com/google-gemini/gemini-cli/pull/20575)
|
|
182
|
+
- Changelog for v0.30.1 by @gemini-cli-robot in
|
|
183
|
+
[#20589](https://github.com/google-gemini/gemini-cli/pull/20589)
|
|
184
|
+
- Add low/full CLI error verbosity mode for cleaner UI by @LyalinDotCom in
|
|
185
|
+
[#20399](https://github.com/google-gemini/gemini-cli/pull/20399)
|
|
186
|
+
- Disable Gemini PR reviews on draft PRs. by @gundermanc in
|
|
187
|
+
[#20362](https://github.com/google-gemini/gemini-cli/pull/20362)
|
|
188
|
+
- Docs: FAQ update by @jkcinouye in
|
|
189
|
+
[#20585](https://github.com/google-gemini/gemini-cli/pull/20585)
|
|
190
|
+
- fix(core): reduce intrusive MCP errors and deduplicate diagnostics by
|
|
208
191
|
@spencer426 in
|
|
209
|
-
[#
|
|
210
|
-
-
|
|
211
|
-
[#
|
|
212
|
-
-
|
|
213
|
-
[#
|
|
214
|
-
- feat(
|
|
215
|
-
|
|
216
|
-
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
[#
|
|
221
|
-
- fix
|
|
222
|
-
|
|
223
|
-
- Update sidebar.json for to allow top nav tabs. by @g-samroberts in
|
|
224
|
-
[#19595](https://github.com/google-gemini/gemini-cli/pull/19595)
|
|
225
|
-
- security: strip deceptive Unicode characters from terminal output by @ehedlund
|
|
226
|
-
in [#19026](https://github.com/google-gemini/gemini-cli/pull/19026)
|
|
227
|
-
- Fixes 'input.on' is not a function error in Gemini CLI by @gundermanc in
|
|
228
|
-
[#19691](https://github.com/google-gemini/gemini-cli/pull/19691)
|
|
229
|
-
- Revert "feat(ui): add source indicators to slash commands" by @ehedlund in
|
|
230
|
-
[#19695](https://github.com/google-gemini/gemini-cli/pull/19695)
|
|
231
|
-
- security: implement deceptive URL detection and disclosure in tool
|
|
232
|
-
confirmations by @ehedlund in
|
|
233
|
-
[#19288](https://github.com/google-gemini/gemini-cli/pull/19288)
|
|
234
|
-
- fix(core): restore auth consent in headless mode and add unit tests by
|
|
235
|
-
@ehedlund in [#19689](https://github.com/google-gemini/gemini-cli/pull/19689)
|
|
236
|
-
- Fix unsafe assertions in code_assist folder. by @gundermanc in
|
|
237
|
-
[#19706](https://github.com/google-gemini/gemini-cli/pull/19706)
|
|
238
|
-
- feat(cli): make JetBrains warning more specific by @jacob314 in
|
|
239
|
-
[#19687](https://github.com/google-gemini/gemini-cli/pull/19687)
|
|
240
|
-
- fix(cli): extensions dialog UX polish by @jacob314 in
|
|
241
|
-
[#19685](https://github.com/google-gemini/gemini-cli/pull/19685)
|
|
242
|
-
- fix(cli): use getDisplayString for manual model selection in dialog by
|
|
243
|
-
@sehoon38 in [#19726](https://github.com/google-gemini/gemini-cli/pull/19726)
|
|
244
|
-
- feat(policy): repurpose "Always Allow" persistence to workspace level by
|
|
245
|
-
@Abhijit-2592 in
|
|
246
|
-
[#19707](https://github.com/google-gemini/gemini-cli/pull/19707)
|
|
247
|
-
- fix(cli): re-enable CLI banner by @sehoon38 in
|
|
248
|
-
[#19741](https://github.com/google-gemini/gemini-cli/pull/19741)
|
|
249
|
-
- Disallow and suppress unsafe assignment by @gundermanc in
|
|
250
|
-
[#19736](https://github.com/google-gemini/gemini-cli/pull/19736)
|
|
251
|
-
- feat(core): migrate read_file to 1-based start_line/end_line parameters by
|
|
252
|
-
@adamfweidman in
|
|
253
|
-
[#19526](https://github.com/google-gemini/gemini-cli/pull/19526)
|
|
254
|
-
- feat(cli): improve CTRL+O experience for both standard and alternate screen
|
|
255
|
-
buffer (ASB) modes by @jwhelangoog in
|
|
256
|
-
[#19010](https://github.com/google-gemini/gemini-cli/pull/19010)
|
|
257
|
-
- Utilize pipelining of grep_search -> read_file to eliminate turns by
|
|
258
|
-
@gundermanc in
|
|
259
|
-
[#19574](https://github.com/google-gemini/gemini-cli/pull/19574)
|
|
260
|
-
- refactor(core): remove unsafe type assertions in error utils (Phase 1.1) by
|
|
261
|
-
@mattKorwel in
|
|
262
|
-
[#19750](https://github.com/google-gemini/gemini-cli/pull/19750)
|
|
263
|
-
- Disallow unsafe returns. by @gundermanc in
|
|
264
|
-
[#19767](https://github.com/google-gemini/gemini-cli/pull/19767)
|
|
265
|
-
- fix(cli): filter subagent sessions from resume history by @abhipatel12 in
|
|
266
|
-
[#19698](https://github.com/google-gemini/gemini-cli/pull/19698)
|
|
267
|
-
- chore(lint): fix lint errors seen when running npm run lint by @abhipatel12 in
|
|
268
|
-
[#19844](https://github.com/google-gemini/gemini-cli/pull/19844)
|
|
269
|
-
- feat(core): remove unnecessary login verbiage from Code Assist auth by
|
|
270
|
-
@NTaylorMullen in
|
|
271
|
-
[#19861](https://github.com/google-gemini/gemini-cli/pull/19861)
|
|
272
|
-
- fix(plan): time share by approval mode dashboard reporting negative time
|
|
273
|
-
shares by @Adib234 in
|
|
274
|
-
[#19847](https://github.com/google-gemini/gemini-cli/pull/19847)
|
|
275
|
-
- fix(core): allow any preview model in quota access check by @bdmorgan in
|
|
276
|
-
[#19867](https://github.com/google-gemini/gemini-cli/pull/19867)
|
|
277
|
-
- fix(core): prevent omission placeholder deletions in replace/write_file by
|
|
278
|
-
@nsalerni in [#19870](https://github.com/google-gemini/gemini-cli/pull/19870)
|
|
279
|
-
- fix(core): add uniqueness guard to edit tool by @Shivangisharma4 in
|
|
280
|
-
[#19890](https://github.com/google-gemini/gemini-cli/pull/19890)
|
|
281
|
-
- refactor(config): remove enablePromptCompletion from settings by @sehoon38 in
|
|
282
|
-
[#19974](https://github.com/google-gemini/gemini-cli/pull/19974)
|
|
283
|
-
- refactor(core): move session conversion logic to core by @abhipatel12 in
|
|
284
|
-
[#19972](https://github.com/google-gemini/gemini-cli/pull/19972)
|
|
285
|
-
- Fix: Persist manual model selection on restart #19864 by @Nixxx19 in
|
|
286
|
-
[#19891](https://github.com/google-gemini/gemini-cli/pull/19891)
|
|
287
|
-
- fix(core): increase default retry attempts and add quota error backoff by
|
|
288
|
-
@sehoon38 in [#19949](https://github.com/google-gemini/gemini-cli/pull/19949)
|
|
289
|
-
- feat(core): add policy chain support for Gemini 3.1 by @sehoon38 in
|
|
290
|
-
[#19991](https://github.com/google-gemini/gemini-cli/pull/19991)
|
|
291
|
-
- Updates command reference and /stats command. by @g-samroberts in
|
|
292
|
-
[#19794](https://github.com/google-gemini/gemini-cli/pull/19794)
|
|
293
|
-
- Fix for silent failures in non-interactive mode by @owenofbrien in
|
|
294
|
-
[#19905](https://github.com/google-gemini/gemini-cli/pull/19905)
|
|
295
|
-
- fix(plan): allow plan mode writes on Windows and fix prompt paths by @Adib234
|
|
296
|
-
in [#19658](https://github.com/google-gemini/gemini-cli/pull/19658)
|
|
297
|
-
- fix(core): prevent OAuth server crash on unexpected requests by @reyyanxahmed
|
|
298
|
-
in [#19668](https://github.com/google-gemini/gemini-cli/pull/19668)
|
|
299
|
-
- feat: Map tool kinds to explicit ACP.ToolKind values and update test … by
|
|
300
|
-
@sripasg in [#19547](https://github.com/google-gemini/gemini-cli/pull/19547)
|
|
301
|
-
- chore: restrict gemini-automted-issue-triage to only allow echo by @galz10 in
|
|
302
|
-
[#20047](https://github.com/google-gemini/gemini-cli/pull/20047)
|
|
303
|
-
- Allow ask headers longer than 16 chars by @scidomino in
|
|
304
|
-
[#20041](https://github.com/google-gemini/gemini-cli/pull/20041)
|
|
305
|
-
- fix(core): prevent state corruption in McpClientManager during collis by @h30s
|
|
306
|
-
in [#19782](https://github.com/google-gemini/gemini-cli/pull/19782)
|
|
307
|
-
- fix(bundling): copy devtools package to bundle for runtime resolution by
|
|
308
|
-
@SandyTao520 in
|
|
309
|
-
[#19766](https://github.com/google-gemini/gemini-cli/pull/19766)
|
|
310
|
-
- feat(policy): Support MCP Server Wildcards in Policy Engine by @jerop in
|
|
311
|
-
[#20024](https://github.com/google-gemini/gemini-cli/pull/20024)
|
|
312
|
-
- docs(CONTRIBUTING): update React DevTools version to 6 by @mmgok in
|
|
313
|
-
[#20014](https://github.com/google-gemini/gemini-cli/pull/20014)
|
|
314
|
-
- feat(core): optimize tool descriptions and schemas for Gemini 3 by
|
|
315
|
-
@aishaneeshah in
|
|
316
|
-
[#19643](https://github.com/google-gemini/gemini-cli/pull/19643)
|
|
317
|
-
- feat(core): implement experimental direct web fetch by @mbleigh in
|
|
318
|
-
[#19557](https://github.com/google-gemini/gemini-cli/pull/19557)
|
|
319
|
-
- feat(core): replace expected_replacements with allow_multiple in replace tool
|
|
320
|
-
by @SandyTao520 in
|
|
321
|
-
[#20033](https://github.com/google-gemini/gemini-cli/pull/20033)
|
|
322
|
-
- fix(sandbox): harden image packaging integrity checks by @aviralgarg05 in
|
|
323
|
-
[#19552](https://github.com/google-gemini/gemini-cli/pull/19552)
|
|
324
|
-
- fix(core): allow environment variable expansion and explicit overrides for MCP
|
|
325
|
-
servers by @galz10 in
|
|
326
|
-
[#18837](https://github.com/google-gemini/gemini-cli/pull/18837)
|
|
327
|
-
- feat(policy): Implement Tool Annotation Matching in Policy Engine by @jerop in
|
|
328
|
-
[#20029](https://github.com/google-gemini/gemini-cli/pull/20029)
|
|
329
|
-
- fix(core): prevent utility calls from changing session active model by
|
|
330
|
-
@adamfweidman in
|
|
331
|
-
[#20035](https://github.com/google-gemini/gemini-cli/pull/20035)
|
|
332
|
-
- fix(cli): skip workspace policy loading when in home directory by
|
|
333
|
-
@Abhijit-2592 in
|
|
334
|
-
[#20054](https://github.com/google-gemini/gemini-cli/pull/20054)
|
|
335
|
-
- fix(scripts): Add Windows (win32/x64) support to lint.js by @ZafeerMahmood in
|
|
336
|
-
[#16193](https://github.com/google-gemini/gemini-cli/pull/16193)
|
|
337
|
-
- fix(a2a-server): Remove unsafe type assertions in agent by @Nixxx19 in
|
|
338
|
-
[#19723](https://github.com/google-gemini/gemini-cli/pull/19723)
|
|
339
|
-
- Fix: Handle corrupted token file gracefully when switching auth types (#19845)
|
|
340
|
-
by @Nixxx19 in
|
|
341
|
-
[#19850](https://github.com/google-gemini/gemini-cli/pull/19850)
|
|
342
|
-
- fix critical dep vulnerability by @scidomino in
|
|
343
|
-
[#20087](https://github.com/google-gemini/gemini-cli/pull/20087)
|
|
344
|
-
- Add new setting to configure maxRetries by @kevinjwang1 in
|
|
345
|
-
[#20064](https://github.com/google-gemini/gemini-cli/pull/20064)
|
|
346
|
-
- Stabilize tests. by @gundermanc in
|
|
347
|
-
[#20095](https://github.com/google-gemini/gemini-cli/pull/20095)
|
|
348
|
-
- make windows tests mandatory by @scidomino in
|
|
349
|
-
[#20096](https://github.com/google-gemini/gemini-cli/pull/20096)
|
|
350
|
-
- Add 3.1 pro preview to behavioral evals. by @gundermanc in
|
|
351
|
-
[#20088](https://github.com/google-gemini/gemini-cli/pull/20088)
|
|
352
|
-
- feat:PR-rate-limit by @JagjeevanAK in
|
|
353
|
-
[#19804](https://github.com/google-gemini/gemini-cli/pull/19804)
|
|
354
|
-
- feat(cli): allow expanding full details of MCP tool on approval by @y-okt in
|
|
355
|
-
[#19916](https://github.com/google-gemini/gemini-cli/pull/19916)
|
|
356
|
-
- feat(security): Introduce Conseca framework by @shrishabh in
|
|
357
|
-
[#13193](https://github.com/google-gemini/gemini-cli/pull/13193)
|
|
358
|
-
- fix(cli): Remove unsafe type assertions in activityLogger #19713 by @Nixxx19
|
|
359
|
-
in [#19745](https://github.com/google-gemini/gemini-cli/pull/19745)
|
|
360
|
-
- feat: implement AfterTool tail tool calls by @googlestrobe in
|
|
361
|
-
[#18486](https://github.com/google-gemini/gemini-cli/pull/18486)
|
|
362
|
-
- ci(actions): fix PR rate limiter excluding maintainers by @scidomino in
|
|
363
|
-
[#20117](https://github.com/google-gemini/gemini-cli/pull/20117)
|
|
364
|
-
- Shortcuts: Move SectionHeader title below top line and refine styling by
|
|
365
|
-
@keithguerin in
|
|
366
|
-
[#18721](https://github.com/google-gemini/gemini-cli/pull/18721)
|
|
367
|
-
- refactor(ui): Update and simplify use of gray colors in themes by @keithguerin
|
|
368
|
-
in [#20141](https://github.com/google-gemini/gemini-cli/pull/20141)
|
|
369
|
-
- fix punycode2 by @jacob314 in
|
|
370
|
-
[#20154](https://github.com/google-gemini/gemini-cli/pull/20154)
|
|
371
|
-
- feat(ide): add GEMINI_CLI_IDE_PID env var to override IDE process detection by
|
|
372
|
-
@kiryltech in [#15842](https://github.com/google-gemini/gemini-cli/pull/15842)
|
|
373
|
-
- feat(policy): Propagate Tool Annotations for MCP Servers by @jerop in
|
|
374
|
-
[#20083](https://github.com/google-gemini/gemini-cli/pull/20083)
|
|
375
|
-
- fix(a2a-server): pass allowedTools settings to core Config by @reyyanxahmed in
|
|
376
|
-
[#19680](https://github.com/google-gemini/gemini-cli/pull/19680)
|
|
377
|
-
- feat(mcp): add progress bar, throttling, and input validation for MCP tool
|
|
378
|
-
progress by @jasmeetsb in
|
|
379
|
-
[#19772](https://github.com/google-gemini/gemini-cli/pull/19772)
|
|
380
|
-
- feat(policy): centralize plan mode tool visibility in policy engine by @jerop
|
|
381
|
-
in [#20178](https://github.com/google-gemini/gemini-cli/pull/20178)
|
|
382
|
-
- feat(browser): implement experimental browser agent by @gsquared94 in
|
|
383
|
-
[#19284](https://github.com/google-gemini/gemini-cli/pull/19284)
|
|
384
|
-
- feat(plan): summarize work after executing a plan by @jerop in
|
|
385
|
-
[#19432](https://github.com/google-gemini/gemini-cli/pull/19432)
|
|
386
|
-
- fix(core): create new McpClient on restart to apply updated config by @h30s in
|
|
387
|
-
[#20126](https://github.com/google-gemini/gemini-cli/pull/20126)
|
|
388
|
-
- Changelog for v0.30.0-preview.5 by @gemini-cli-robot in
|
|
389
|
-
[#20107](https://github.com/google-gemini/gemini-cli/pull/20107)
|
|
390
|
-
- Update packages. by @jacob314 in
|
|
391
|
-
[#20152](https://github.com/google-gemini/gemini-cli/pull/20152)
|
|
392
|
-
- Fix extension env dir loading issue by @chrstnb in
|
|
393
|
-
[#20198](https://github.com/google-gemini/gemini-cli/pull/20198)
|
|
394
|
-
- restrict /assign to help-wanted issues by @scidomino in
|
|
395
|
-
[#20207](https://github.com/google-gemini/gemini-cli/pull/20207)
|
|
396
|
-
- feat(plan): inject message when user manually exits Plan mode by @jerop in
|
|
397
|
-
[#20203](https://github.com/google-gemini/gemini-cli/pull/20203)
|
|
398
|
-
- feat(extensions): enforce folder trust for local extension install by @galz10
|
|
399
|
-
in [#19703](https://github.com/google-gemini/gemini-cli/pull/19703)
|
|
400
|
-
- feat(hooks): adds support for RuntimeHook functions. by @mbleigh in
|
|
401
|
-
[#19598](https://github.com/google-gemini/gemini-cli/pull/19598)
|
|
402
|
-
- Docs: Update UI links. by @jkcinouye in
|
|
403
|
-
[#20224](https://github.com/google-gemini/gemini-cli/pull/20224)
|
|
404
|
-
- feat: prompt users to run /terminal-setup with yes/no by @ishaanxgupta in
|
|
405
|
-
[#16235](https://github.com/google-gemini/gemini-cli/pull/16235)
|
|
406
|
-
- fix: additional high vulnerabilities (minimatch, cross-spawn) by @adamfweidman
|
|
407
|
-
in [#20221](https://github.com/google-gemini/gemini-cli/pull/20221)
|
|
408
|
-
- feat(telemetry): Add context breakdown to API response event by @SandyTao520
|
|
409
|
-
in [#19699](https://github.com/google-gemini/gemini-cli/pull/19699)
|
|
410
|
-
- Docs: Add nested sub-folders for related topics by @g-samroberts in
|
|
411
|
-
[#20235](https://github.com/google-gemini/gemini-cli/pull/20235)
|
|
412
|
-
- feat(plan): support automatic model switching for Plan Mode by @jerop in
|
|
413
|
-
[#20240](https://github.com/google-gemini/gemini-cli/pull/20240)
|
|
192
|
+
[#20232](https://github.com/google-gemini/gemini-cli/pull/20232)
|
|
193
|
+
- docs: fix spelling typos in installation guide by @campox747 in
|
|
194
|
+
[#20579](https://github.com/google-gemini/gemini-cli/pull/20579)
|
|
195
|
+
- Promote stable tests to CI blocking. by @gundermanc in
|
|
196
|
+
[#20581](https://github.com/google-gemini/gemini-cli/pull/20581)
|
|
197
|
+
- feat(core): enable contiguous parallel admission for Kind.Agent tools by
|
|
198
|
+
@abhipatel12 in
|
|
199
|
+
[#20583](https://github.com/google-gemini/gemini-cli/pull/20583)
|
|
200
|
+
- Enforce import/no-duplicates as error by @Nixxx19 in
|
|
201
|
+
[#19797](https://github.com/google-gemini/gemini-cli/pull/19797)
|
|
202
|
+
- fix: merge duplicate imports in sdk and test-utils packages (1/4) by @Nixxx19
|
|
203
|
+
in [#19777](https://github.com/google-gemini/gemini-cli/pull/19777)
|
|
204
|
+
- fix: merge duplicate imports in a2a-server package (2/4) by @Nixxx19 in
|
|
205
|
+
[#19781](https://github.com/google-gemini/gemini-cli/pull/19781)
|
|
414
206
|
|
|
415
207
|
**Full Changelog**:
|
|
416
|
-
https://github.com/google-gemini/gemini-cli/compare/v0.
|
|
208
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.31.0-preview.3...v0.32.0-preview.0
|