@google/gemini-cli-core 0.31.0-preview.2 → 0.32.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/dist/docs/changelogs/index.md +22 -0
- package/dist/docs/changelogs/latest.md +307 -352
- package/dist/docs/changelogs/preview.md +391 -293
- package/dist/docs/cli/plan-mode.md +29 -7
- package/dist/docs/cli/settings.md +15 -6
- package/dist/docs/cli/telemetry.md +39 -11
- package/dist/docs/extensions/reference.md +36 -0
- package/dist/docs/get-started/installation.md +1 -1
- package/dist/docs/local-development.md +49 -43
- package/dist/docs/reference/configuration.md +32 -0
- package/dist/docs/reference/keyboard-shortcuts.md +6 -6
- package/dist/docs/reference/policy-engine.md +4 -3
- package/dist/docs/resources/faq.md +13 -0
- package/dist/docs/resources/tos-privacy.md +6 -0
- package/dist/docs/resources/uninstall.md +1 -10
- package/dist/docs/tools/mcp-server.md +22 -0
- package/dist/src/agents/a2a-client-manager.d.ts +7 -6
- package/dist/src/agents/a2a-client-manager.js +8 -9
- package/dist/src/agents/a2a-client-manager.js.map +1 -1
- package/dist/src/agents/a2a-client-manager.test.js +45 -31
- package/dist/src/agents/a2a-client-manager.test.js.map +1 -1
- package/dist/src/agents/a2aUtils.d.ts +25 -7
- package/dist/src/agents/a2aUtils.js +165 -58
- package/dist/src/agents/a2aUtils.js.map +1 -1
- package/dist/src/agents/a2aUtils.test.js +170 -27
- package/dist/src/agents/a2aUtils.test.js.map +1 -1
- package/dist/src/agents/generalist-agent.js +1 -2
- package/dist/src/agents/generalist-agent.js.map +1 -1
- package/dist/src/agents/registry.test.js +4 -2
- 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 +41 -22
- package/dist/src/agents/remote-invocation.js.map +1 -1
- package/dist/src/agents/remote-invocation.test.js +196 -56
- package/dist/src/agents/remote-invocation.test.js.map +1 -1
- package/dist/src/agents/subagent-tool-wrapper.js +1 -1
- package/dist/src/agents/subagent-tool-wrapper.test.js +1 -1
- package/dist/src/agents/subagent-tool.js +15 -2
- package/dist/src/agents/subagent-tool.js.map +1 -1
- package/dist/src/agents/subagent-tool.test.js +31 -0
- package/dist/src/agents/subagent-tool.test.js.map +1 -1
- package/dist/src/billing/billing.d.ts +80 -0
- package/dist/src/billing/billing.js +127 -0
- package/dist/src/billing/billing.js.map +1 -0
- package/dist/src/billing/billing.test.d.ts +6 -0
- package/dist/src/billing/billing.test.js +182 -0
- package/dist/src/billing/billing.test.js.map +1 -0
- package/dist/src/billing/index.d.ts +6 -0
- package/dist/src/billing/index.js +7 -0
- package/dist/src/billing/index.js.map +1 -0
- package/dist/src/code_assist/codeAssist.js +1 -1
- package/dist/src/code_assist/codeAssist.js.map +1 -1
- package/dist/src/code_assist/codeAssist.test.js +2 -2
- package/dist/src/code_assist/codeAssist.test.js.map +1 -1
- package/dist/src/code_assist/converter.d.ts +9 -4
- package/dist/src/code_assist/converter.js +17 -2
- package/dist/src/code_assist/converter.js.map +1 -1
- package/dist/src/code_assist/converter.test.js.map +1 -1
- package/dist/src/code_assist/oauth2.js +6 -3
- package/dist/src/code_assist/oauth2.js.map +1 -1
- package/dist/src/code_assist/oauth2.test.js +1 -0
- package/dist/src/code_assist/oauth2.test.js.map +1 -1
- package/dist/src/code_assist/server.d.ts +9 -4
- package/dist/src/code_assist/server.js +86 -5
- package/dist/src/code_assist/server.js.map +1 -1
- package/dist/src/code_assist/server.test.js +11 -0
- package/dist/src/code_assist/server.test.js.map +1 -1
- package/dist/src/code_assist/setup.d.ts +2 -1
- package/dist/src/code_assist/setup.js +15 -4
- package/dist/src/code_assist/setup.js.map +1 -1
- package/dist/src/code_assist/types.d.ts +33 -10
- package/dist/src/code_assist/types.js.map +1 -1
- package/dist/src/config/config.d.ts +50 -4
- package/dist/src/config/config.js +77 -3
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/config.test.js +151 -1
- package/dist/src/config/config.test.js.map +1 -1
- package/dist/src/config/storage.d.ts +1 -0
- package/dist/src/config/storage.js +4 -1
- package/dist/src/config/storage.js.map +1 -1
- package/dist/src/core/contentGenerator.d.ts +3 -2
- package/dist/src/core/contentGenerator.js +9 -2
- package/dist/src/core/contentGenerator.js.map +1 -1
- package/dist/src/core/coreToolScheduler.js +2 -1
- package/dist/src/core/coreToolScheduler.js.map +1 -1
- package/dist/src/core/coreToolScheduler.test.js +21 -2
- package/dist/src/core/coreToolScheduler.test.js.map +1 -1
- package/dist/src/core/fakeContentGenerator.d.ts +2 -1
- package/dist/src/core/fakeContentGenerator.js +1 -0
- package/dist/src/core/fakeContentGenerator.js.map +1 -1
- package/dist/src/core/geminiChat.js +6 -2
- package/dist/src/core/geminiChat.js.map +1 -1
- package/dist/src/core/geminiChat.test.js +34 -0
- package/dist/src/core/geminiChat.test.js.map +1 -1
- package/dist/src/core/localLiteRtLmClient.d.ts +24 -0
- package/dist/src/core/localLiteRtLmClient.js +77 -0
- package/dist/src/core/localLiteRtLmClient.js.map +1 -0
- package/dist/src/core/localLiteRtLmClient.test.d.ts +6 -0
- package/dist/src/core/localLiteRtLmClient.test.js +87 -0
- package/dist/src/core/localLiteRtLmClient.test.js.map +1 -0
- package/dist/src/core/loggingContentGenerator.d.ts +2 -1
- package/dist/src/core/loggingContentGenerator.js +39 -17
- package/dist/src/core/loggingContentGenerator.js.map +1 -1
- package/dist/src/core/loggingContentGenerator.test.js +122 -5
- package/dist/src/core/loggingContentGenerator.test.js.map +1 -1
- package/dist/src/core/prompts.test.js +1 -1
- package/dist/src/core/prompts.test.js.map +1 -1
- package/dist/src/fallback/handler.js +2 -0
- package/dist/src/fallback/handler.js.map +1 -1
- package/dist/src/fallback/types.d.ts +1 -1
- package/dist/src/generated/git-commit.d.ts +2 -2
- package/dist/src/generated/git-commit.js +2 -2
- package/dist/src/index.d.ts +5 -0
- package/dist/src/index.js +5 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/policy/config.d.ts +18 -6
- package/dist/src/policy/config.js +51 -14
- package/dist/src/policy/config.js.map +1 -1
- package/dist/src/policy/config.test.js +26 -26
- package/dist/src/policy/config.test.js.map +1 -1
- package/dist/src/policy/persistence.test.js +9 -14
- package/dist/src/policy/persistence.test.js.map +1 -1
- package/dist/src/policy/policies/plan.toml +1 -1
- package/dist/src/policy/policy-engine.d.ts +8 -0
- package/dist/src/policy/policy-engine.js +12 -0
- package/dist/src/policy/policy-engine.js.map +1 -1
- package/dist/src/policy/policy-engine.test.js +93 -0
- package/dist/src/policy/policy-engine.test.js.map +1 -1
- package/dist/src/policy/policy-updater.test.js +1 -1
- package/dist/src/policy/policy-updater.test.js.map +1 -1
- package/dist/src/policy/toml-loader.d.ts +1 -1
- package/dist/src/policy/toml-loader.js +4 -2
- package/dist/src/policy/toml-loader.js.map +1 -1
- package/dist/src/policy/toml-loader.test.js +15 -12
- package/dist/src/policy/toml-loader.test.js.map +1 -1
- package/dist/src/policy/workspace-policy.test.js +10 -10
- package/dist/src/prompts/snippets.js +43 -27
- package/dist/src/prompts/snippets.js.map +1 -1
- package/dist/src/routing/modelRouterService.js +19 -11
- package/dist/src/routing/modelRouterService.js.map +1 -1
- package/dist/src/routing/modelRouterService.test.js +38 -1
- package/dist/src/routing/modelRouterService.test.js.map +1 -1
- package/dist/src/routing/routingStrategy.d.ts +3 -2
- package/dist/src/routing/strategies/classifierStrategy.d.ts +2 -1
- package/dist/src/routing/strategies/classifierStrategy.js +1 -1
- package/dist/src/routing/strategies/classifierStrategy.js.map +1 -1
- package/dist/src/routing/strategies/classifierStrategy.test.js +15 -13
- package/dist/src/routing/strategies/classifierStrategy.test.js.map +1 -1
- package/dist/src/routing/strategies/compositeStrategy.d.ts +2 -1
- package/dist/src/routing/strategies/compositeStrategy.js +3 -3
- package/dist/src/routing/strategies/compositeStrategy.js.map +1 -1
- package/dist/src/routing/strategies/compositeStrategy.test.js +10 -8
- package/dist/src/routing/strategies/compositeStrategy.test.js.map +1 -1
- package/dist/src/routing/strategies/defaultStrategy.d.ts +2 -1
- package/dist/src/routing/strategies/defaultStrategy.js +1 -1
- package/dist/src/routing/strategies/defaultStrategy.js.map +1 -1
- package/dist/src/routing/strategies/defaultStrategy.test.js +8 -4
- package/dist/src/routing/strategies/defaultStrategy.test.js.map +1 -1
- package/dist/src/routing/strategies/fallbackStrategy.d.ts +2 -1
- package/dist/src/routing/strategies/fallbackStrategy.js +1 -1
- package/dist/src/routing/strategies/fallbackStrategy.js.map +1 -1
- package/dist/src/routing/strategies/fallbackStrategy.test.js +6 -5
- package/dist/src/routing/strategies/fallbackStrategy.test.js.map +1 -1
- package/dist/src/routing/strategies/gemmaClassifierStrategy.d.ts +14 -0
- package/dist/src/routing/strategies/gemmaClassifierStrategy.js +182 -0
- package/dist/src/routing/strategies/gemmaClassifierStrategy.js.map +1 -0
- package/dist/src/routing/strategies/gemmaClassifierStrategy.test.d.ts +6 -0
- package/dist/src/routing/strategies/gemmaClassifierStrategy.test.js +218 -0
- package/dist/src/routing/strategies/gemmaClassifierStrategy.test.js.map +1 -0
- package/dist/src/routing/strategies/numericalClassifierStrategy.d.ts +2 -1
- package/dist/src/routing/strategies/numericalClassifierStrategy.js +1 -1
- package/dist/src/routing/strategies/numericalClassifierStrategy.js.map +1 -1
- package/dist/src/routing/strategies/numericalClassifierStrategy.test.js +24 -22
- package/dist/src/routing/strategies/numericalClassifierStrategy.test.js.map +1 -1
- package/dist/src/routing/strategies/overrideStrategy.d.ts +2 -1
- package/dist/src/routing/strategies/overrideStrategy.js +1 -1
- package/dist/src/routing/strategies/overrideStrategy.js.map +1 -1
- package/dist/src/routing/strategies/overrideStrategy.test.js +5 -4
- package/dist/src/routing/strategies/overrideStrategy.test.js.map +1 -1
- package/dist/src/scheduler/scheduler.d.ts +1 -0
- package/dist/src/scheduler/scheduler.js +18 -7
- package/dist/src/scheduler/scheduler.js.map +1 -1
- package/dist/src/scheduler/scheduler.test.js +19 -1
- package/dist/src/scheduler/scheduler.test.js.map +1 -1
- package/dist/src/scheduler/scheduler_parallel.test.js +94 -3
- package/dist/src/scheduler/scheduler_parallel.test.js.map +1 -1
- package/dist/src/scheduler/tool-executor.js +21 -12
- package/dist/src/scheduler/tool-executor.js.map +1 -1
- package/dist/src/scheduler/tool-executor.test.js +54 -0
- package/dist/src/scheduler/tool-executor.test.js.map +1 -1
- package/dist/src/services/trackerService.d.ts +49 -0
- package/dist/src/services/trackerService.js +172 -0
- package/dist/src/services/trackerService.js.map +1 -0
- package/dist/src/services/trackerService.test.d.ts +6 -0
- package/dist/src/services/trackerService.test.js +117 -0
- package/dist/src/services/trackerService.test.js.map +1 -0
- package/dist/src/services/trackerTypes.d.ts +51 -0
- package/dist/src/services/trackerTypes.js +33 -0
- package/dist/src/services/trackerTypes.js.map +1 -0
- package/dist/src/telemetry/billingEvents.d.ts +75 -0
- package/dist/src/telemetry/billingEvents.js +181 -0
- package/dist/src/telemetry/billingEvents.js.map +1 -0
- package/dist/src/telemetry/billingEvents.test.d.ts +6 -0
- package/dist/src/telemetry/billingEvents.test.js +139 -0
- package/dist/src/telemetry/billingEvents.test.js.map +1 -0
- package/dist/src/telemetry/conseca-logger.test.js +1 -0
- package/dist/src/telemetry/conseca-logger.test.js.map +1 -1
- package/dist/src/telemetry/constants.d.ts +25 -0
- package/dist/src/telemetry/constants.js +29 -0
- package/dist/src/telemetry/constants.js.map +1 -1
- package/dist/src/telemetry/index.d.ts +3 -1
- package/dist/src/telemetry/index.js +5 -1
- package/dist/src/telemetry/index.js.map +1 -1
- package/dist/src/telemetry/loggers.d.ts +2 -0
- package/dist/src/telemetry/loggers.js +10 -0
- package/dist/src/telemetry/loggers.js.map +1 -1
- package/dist/src/telemetry/loggers.test.js +16 -0
- package/dist/src/telemetry/loggers.test.js.map +1 -1
- package/dist/src/telemetry/metrics.d.ts +28 -0
- package/dist/src/telemetry/metrics.js +40 -0
- package/dist/src/telemetry/metrics.js.map +1 -1
- package/dist/src/telemetry/sanitize.test.js +1 -0
- package/dist/src/telemetry/sanitize.test.js.map +1 -1
- package/dist/src/telemetry/sdk.test.js +1 -0
- package/dist/src/telemetry/sdk.test.js.map +1 -1
- package/dist/src/telemetry/telemetryAttributes.js +2 -0
- package/dist/src/telemetry/telemetryAttributes.js.map +1 -1
- package/dist/src/telemetry/trace.d.ts +2 -1
- package/dist/src/telemetry/trace.js +13 -18
- package/dist/src/telemetry/trace.js.map +1 -1
- package/dist/src/telemetry/trace.test.d.ts +6 -0
- package/dist/src/telemetry/trace.test.js +116 -0
- package/dist/src/telemetry/trace.test.js.map +1 -0
- package/dist/src/tools/confirmation-policy.test.js +1 -0
- package/dist/src/tools/confirmation-policy.test.js.map +1 -1
- package/dist/src/tools/definitions/model-family-sets/default-legacy.js +2 -2
- 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 +3 -3
- package/dist/src/tools/definitions/model-family-sets/gemini-3.js.map +1 -1
- package/dist/src/tools/grep-utils.d.ts +1 -1
- package/dist/src/tools/grep-utils.js +4 -4
- package/dist/src/tools/grep-utils.js.map +1 -1
- package/dist/src/tools/grep.d.ts +1 -1
- package/dist/src/tools/grep.js +9 -9
- package/dist/src/tools/grep.js.map +1 -1
- package/dist/src/tools/grep.test.js +8 -5
- package/dist/src/tools/grep.test.js.map +1 -1
- package/dist/src/tools/line-endings.test.js +3 -11
- package/dist/src/tools/line-endings.test.js.map +1 -1
- package/dist/src/tools/mcp-client-manager.d.ts +25 -0
- package/dist/src/tools/mcp-client-manager.js +66 -3
- package/dist/src/tools/mcp-client-manager.js.map +1 -1
- package/dist/src/tools/mcp-client-manager.test.js +47 -0
- package/dist/src/tools/mcp-client-manager.test.js.map +1 -1
- package/dist/src/tools/mcp-client.d.ts +20 -9
- package/dist/src/tools/mcp-client.js +50 -46
- package/dist/src/tools/mcp-client.js.map +1 -1
- package/dist/src/tools/mcp-client.test.js +96 -84
- package/dist/src/tools/mcp-client.test.js.map +1 -1
- package/dist/src/tools/mcp-tool.d.ts +3 -3
- package/dist/src/tools/mcp-tool.js +1 -0
- package/dist/src/tools/mcp-tool.js.map +1 -1
- package/dist/src/tools/ripGrep.d.ts +1 -1
- package/dist/src/tools/ripGrep.js +7 -7
- package/dist/src/tools/ripGrep.js.map +1 -1
- package/dist/src/tools/ripGrep.test.js +10 -7
- package/dist/src/tools/ripGrep.test.js.map +1 -1
- package/dist/src/tools/tools.d.ts +1 -0
- package/dist/src/tools/tools.js +1 -0
- package/dist/src/tools/tools.js.map +1 -1
- package/dist/src/tools/write-file.js +4 -17
- package/dist/src/tools/write-file.js.map +1 -1
- package/dist/src/tools/write-file.test.js +29 -83
- package/dist/src/tools/write-file.test.js.map +1 -1
- package/dist/src/utils/editCorrector.d.ts +1 -42
- package/dist/src/utils/editCorrector.js +9 -461
- package/dist/src/utils/editCorrector.js.map +1 -1
- package/dist/src/utils/editCorrector.test.js +17 -421
- package/dist/src/utils/editCorrector.test.js.map +1 -1
- package/dist/src/utils/envExpansion.js.map +1 -1
- package/dist/src/utils/errors.js +7 -0
- package/dist/src/utils/errors.js.map +1 -1
- package/dist/src/utils/errors_timeout.test.d.ts +6 -0
- package/dist/src/utils/errors_timeout.test.js +40 -0
- package/dist/src/utils/errors_timeout.test.js.map +1 -0
- package/dist/src/utils/extensionLoader.js +35 -0
- package/dist/src/utils/extensionLoader.js.map +1 -1
- package/dist/src/utils/extensionLoader.test.js +36 -0
- package/dist/src/utils/extensionLoader.test.js.map +1 -1
- package/dist/src/utils/fetch.js +13 -2
- package/dist/src/utils/fetch.js.map +1 -1
- package/dist/src/utils/fileUtils.js +0 -1
- package/dist/src/utils/fileUtils.js.map +1 -1
- package/dist/src/utils/fileUtils.test.js +0 -1
- package/dist/src/utils/fileUtils.test.js.map +1 -1
- package/dist/src/utils/flashFallback.test.js +24 -0
- package/dist/src/utils/flashFallback.test.js.map +1 -1
- package/dist/src/utils/googleErrors.d.ts +2 -2
- package/dist/src/utils/googleQuotaErrors.d.ts +3 -1
- package/dist/src/utils/googleQuotaErrors.js +22 -12
- package/dist/src/utils/googleQuotaErrors.js.map +1 -1
- package/dist/src/utils/googleQuotaErrors.test.js +33 -1
- package/dist/src/utils/googleQuotaErrors.test.js.map +1 -1
- package/dist/src/utils/retry.js +4 -2
- package/dist/src/utils/retry.js.map +1 -1
- package/dist/src/utils/retry.test.js +20 -0
- package/dist/src/utils/retry.test.js.map +1 -1
- package/dist/src/utils/schemaValidator.js +0 -1
- package/dist/src/utils/schemaValidator.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/google-gemini-cli-core-0.31.0-preview.1.tgz +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Preview release: v0.
|
|
1
|
+
# Preview release: v0.31.0-preview.1
|
|
2
2
|
|
|
3
|
-
Released: February
|
|
3
|
+
Released: February 27, 2026
|
|
4
4
|
|
|
5
5
|
Our preview release includes the latest, new, and experimental features. This
|
|
6
6
|
release may not be as stable as our [latest weekly release](latest.md).
|
|
@@ -13,306 +13,404 @@ npm install -g @google/gemini-cli@preview
|
|
|
13
13
|
|
|
14
14
|
## Highlights
|
|
15
15
|
|
|
16
|
-
- **
|
|
17
|
-
custom
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
- **
|
|
21
|
-
|
|
22
|
-
-
|
|
23
|
-
|
|
24
|
-
|
|
16
|
+
- **Plan Mode Enhancements**: Numerous additions including automatic model
|
|
17
|
+
switching, custom storage directory configuration, message injection upon
|
|
18
|
+
manual exit, enforcement of read-only constraints, and centralized tool
|
|
19
|
+
visibility in the policy engine.
|
|
20
|
+
- **Policy Engine Updates**: Project-level policy support added, alongside MCP
|
|
21
|
+
server wildcard support, tool annotation propagation and matching, and
|
|
22
|
+
workspace-level "Always Allow" persistence.
|
|
23
|
+
- **MCP Integration Improvements**: Better integration through support for MCP
|
|
24
|
+
progress updates with input validation and throttling, environment variable
|
|
25
|
+
expansion for servers, and full details expansion on tool approval.
|
|
26
|
+
- **CLI & Core UX Enhancements**: Several UI and quality-of-life updates such as
|
|
27
|
+
Alt+D for forward word deletion, macOS run-event notifications, enhanced
|
|
28
|
+
folder trust configurations with security warnings, improved startup warnings,
|
|
29
|
+
and a new experimental browser agent.
|
|
30
|
+
- **Security & Stability**: Introduced the Conseca framework, deceptive URL and
|
|
31
|
+
Unicode character detection, stricter access checks, rate limits on web fetch,
|
|
32
|
+
and resolved multiple dependency vulnerabilities.
|
|
25
33
|
|
|
26
34
|
## What's Changed
|
|
27
35
|
|
|
28
|
-
- fix(patch): cherry-pick
|
|
29
|
-
version v0.
|
|
36
|
+
- fix(patch): cherry-pick 58df1c6 to release/v0.31.0-preview.0-pr-20374 to patch
|
|
37
|
+
version v0.31.0-preview.0 and create version 0.31.0-preview.1 by
|
|
30
38
|
@gemini-cli-robot in
|
|
31
|
-
[#
|
|
32
|
-
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
-
|
|
37
|
-
|
|
38
|
-
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
[#
|
|
43
|
-
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
-
|
|
47
|
-
|
|
48
|
-
[#
|
|
49
|
-
-
|
|
50
|
-
[#
|
|
51
|
-
- fix(
|
|
52
|
-
[#18506](https://github.com/google-gemini/gemini-cli/pull/18506)
|
|
53
|
-
- fix(evals): prevent false positive in hierarchical memory test by
|
|
54
|
-
@Abhijit-2592 in
|
|
55
|
-
[#18777](https://github.com/google-gemini/gemini-cli/pull/18777)
|
|
56
|
-
- test(evals): mark all `save_memory` evals as `USUALLY_PASSES` due to
|
|
57
|
-
unreliability by @jerop in
|
|
58
|
-
[#18786](https://github.com/google-gemini/gemini-cli/pull/18786)
|
|
59
|
-
- feat(cli): add setting to hide shortcuts hint UI by @LyalinDotCom in
|
|
60
|
-
[#18562](https://github.com/google-gemini/gemini-cli/pull/18562)
|
|
61
|
-
- feat(core): formalize 5-phase sequential planning workflow by @jerop in
|
|
62
|
-
[#18759](https://github.com/google-gemini/gemini-cli/pull/18759)
|
|
63
|
-
- Introduce limits for search results. by @gundermanc in
|
|
64
|
-
[#18767](https://github.com/google-gemini/gemini-cli/pull/18767)
|
|
65
|
-
- fix(cli): allow closing debug console after auto-open via flicker by
|
|
39
|
+
[#20568](https://github.com/google-gemini/gemini-cli/pull/20568)
|
|
40
|
+
- Use ranged reads and limited searches and fuzzy editing improvements by
|
|
41
|
+
@gundermanc in
|
|
42
|
+
[#19240](https://github.com/google-gemini/gemini-cli/pull/19240)
|
|
43
|
+
- Fix bottom border color by @jacob314 in
|
|
44
|
+
[#19266](https://github.com/google-gemini/gemini-cli/pull/19266)
|
|
45
|
+
- Release note generator fix by @g-samroberts in
|
|
46
|
+
[#19363](https://github.com/google-gemini/gemini-cli/pull/19363)
|
|
47
|
+
- test(evals): add behavioral tests for tool output masking by @NTaylorMullen in
|
|
48
|
+
[#19172](https://github.com/google-gemini/gemini-cli/pull/19172)
|
|
49
|
+
- docs: clarify preflight instructions in GEMINI.md by @NTaylorMullen in
|
|
50
|
+
[#19377](https://github.com/google-gemini/gemini-cli/pull/19377)
|
|
51
|
+
- feat(cli): add gemini --resume hint on exit by @Mag1ck in
|
|
52
|
+
[#16285](https://github.com/google-gemini/gemini-cli/pull/16285)
|
|
53
|
+
- fix: optimize height calculations for ask_user dialog by @jackwotherspoon in
|
|
54
|
+
[#19017](https://github.com/google-gemini/gemini-cli/pull/19017)
|
|
55
|
+
- feat(cli): add Alt+D for forward word deletion by @scidomino in
|
|
56
|
+
[#19300](https://github.com/google-gemini/gemini-cli/pull/19300)
|
|
57
|
+
- Disable failing eval test by @chrstnb in
|
|
58
|
+
[#19455](https://github.com/google-gemini/gemini-cli/pull/19455)
|
|
59
|
+
- fix(cli): support legacy onConfirm callback in ToolActionsContext by
|
|
66
60
|
@SandyTao520 in
|
|
67
|
-
[#
|
|
68
|
-
-
|
|
69
|
-
[#
|
|
70
|
-
-
|
|
71
|
-
in
|
|
72
|
-
-
|
|
73
|
-
|
|
74
|
-
-
|
|
75
|
-
|
|
76
|
-
-
|
|
61
|
+
[#19369](https://github.com/google-gemini/gemini-cli/pull/19369)
|
|
62
|
+
- chore(deps): bump tar from 7.5.7 to 7.5.8 by dependabot[bot] in
|
|
63
|
+
[#19367](https://github.com/google-gemini/gemini-cli/pull/19367)
|
|
64
|
+
- fix(plan): allow safe fallback when experiment setting for plan is not enabled
|
|
65
|
+
but approval mode at startup is plan by @Adib234 in
|
|
66
|
+
[#19439](https://github.com/google-gemini/gemini-cli/pull/19439)
|
|
67
|
+
- Add explicit color-convert dependency by @chrstnb in
|
|
68
|
+
[#19460](https://github.com/google-gemini/gemini-cli/pull/19460)
|
|
69
|
+
- feat(devtools): migrate devtools package into monorepo by @SandyTao520 in
|
|
70
|
+
[#18936](https://github.com/google-gemini/gemini-cli/pull/18936)
|
|
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
|
|
77
74
|
@LyalinDotCom in
|
|
78
|
-
[#
|
|
79
|
-
-
|
|
80
|
-
|
|
81
|
-
- fix(
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
-
|
|
85
|
-
|
|
86
|
-
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
[#
|
|
95
|
-
-
|
|
96
|
-
[#
|
|
97
|
-
-
|
|
98
|
-
[#
|
|
99
|
-
-
|
|
100
|
-
[#
|
|
101
|
-
-
|
|
102
|
-
[#18840](https://github.com/google-gemini/gemini-cli/pull/18840)
|
|
103
|
-
- feat(core): update internal utility models to Gemini 3 by @SandyTao520 in
|
|
104
|
-
[#18773](https://github.com/google-gemini/gemini-cli/pull/18773)
|
|
105
|
-
- feat(a2a): add value-resolver for auth credential resolution by @adamfweidman
|
|
106
|
-
in [#18653](https://github.com/google-gemini/gemini-cli/pull/18653)
|
|
107
|
-
- Removed getPlainTextLength by @devr0306 in
|
|
108
|
-
[#18848](https://github.com/google-gemini/gemini-cli/pull/18848)
|
|
109
|
-
- More grep prompt tweaks by @gundermanc in
|
|
110
|
-
[#18846](https://github.com/google-gemini/gemini-cli/pull/18846)
|
|
111
|
-
- refactor(cli): Reactive useSettingsStore hook by @psinha40898 in
|
|
112
|
-
[#14915](https://github.com/google-gemini/gemini-cli/pull/14915)
|
|
113
|
-
- fix(mcp): Ensure that stdio MCP server execution has the `GEMINI_CLI=1` env
|
|
114
|
-
variable populated. by @richieforeman in
|
|
115
|
-
[#18832](https://github.com/google-gemini/gemini-cli/pull/18832)
|
|
116
|
-
- fix(core): improve headless mode detection for flags and query args by @galz10
|
|
117
|
-
in [#18855](https://github.com/google-gemini/gemini-cli/pull/18855)
|
|
118
|
-
- refactor(cli): simplify UI and remove legacy inline tool confirmation logic by
|
|
119
|
-
@abhipatel12 in
|
|
120
|
-
[#18566](https://github.com/google-gemini/gemini-cli/pull/18566)
|
|
121
|
-
- feat(cli): deprecate --allowed-tools and excludeTools in favor of policy
|
|
122
|
-
engine by @Abhijit-2592 in
|
|
123
|
-
[#18508](https://github.com/google-gemini/gemini-cli/pull/18508)
|
|
124
|
-
- fix(workflows): improve maintainer detection for automated PR actions by
|
|
125
|
-
@bdmorgan in [#18869](https://github.com/google-gemini/gemini-cli/pull/18869)
|
|
126
|
-
- refactor(cli): consolidate useToolScheduler and delete legacy implementation
|
|
127
|
-
by @abhipatel12 in
|
|
128
|
-
[#18567](https://github.com/google-gemini/gemini-cli/pull/18567)
|
|
129
|
-
- Update changelog for v0.28.0 and v0.29.0-preview0 by @g-samroberts in
|
|
130
|
-
[#18819](https://github.com/google-gemini/gemini-cli/pull/18819)
|
|
131
|
-
- fix(core): ensure sub-agents are registered regardless of tools.allowed by
|
|
132
|
-
@mattKorwel in
|
|
133
|
-
[#18870](https://github.com/google-gemini/gemini-cli/pull/18870)
|
|
134
|
-
- Show notification when there's a conflict with an extensions command by
|
|
135
|
-
@chrstnb in [#17890](https://github.com/google-gemini/gemini-cli/pull/17890)
|
|
136
|
-
- fix(cli): dismiss '?' shortcuts help on hotkeys and active states by
|
|
137
|
-
@LyalinDotCom in
|
|
138
|
-
[#18583](https://github.com/google-gemini/gemini-cli/pull/18583)
|
|
139
|
-
- fix(core): prioritize conditional policy rules and harden Plan Mode by
|
|
140
|
-
@Abhijit-2592 in
|
|
141
|
-
[#18882](https://github.com/google-gemini/gemini-cli/pull/18882)
|
|
142
|
-
- feat(core): refine Plan Mode system prompt for agentic execution by
|
|
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
|
|
143
99
|
@NTaylorMullen in
|
|
144
|
-
[#
|
|
145
|
-
-
|
|
146
|
-
|
|
147
|
-
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
-
|
|
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
|
|
151
|
+
@Abhijit-2592 in
|
|
152
|
+
[#19487](https://github.com/google-gemini/gemini-cli/pull/19487)
|
|
153
|
+
- fix(core): resolve crash in ClearcutLogger when os.cpus() is empty by @Adib234
|
|
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
|
|
153
178
|
@SandyTao520 in
|
|
154
|
-
[#
|
|
155
|
-
-
|
|
179
|
+
[#19476](https://github.com/google-gemini/gemini-cli/pull/19476)
|
|
180
|
+
- Changelog for v0.30.0-preview.3 by @gemini-cli-robot in
|
|
181
|
+
[#19585](https://github.com/google-gemini/gemini-cli/pull/19585)
|
|
182
|
+
- fix(plan): exclude EnterPlanMode tool from YOLO mode by @Adib234 in
|
|
183
|
+
[#19570](https://github.com/google-gemini/gemini-cli/pull/19570)
|
|
184
|
+
- chore: resolve build warnings and update dependencies by @mattKorwel in
|
|
185
|
+
[#18880](https://github.com/google-gemini/gemini-cli/pull/18880)
|
|
186
|
+
- feat(ui): add source indicators to slash commands by @ehedlund in
|
|
187
|
+
[#18839](https://github.com/google-gemini/gemini-cli/pull/18839)
|
|
188
|
+
- docs: refine Plan Mode documentation structure and workflow by @jerop in
|
|
189
|
+
[#19644](https://github.com/google-gemini/gemini-cli/pull/19644)
|
|
190
|
+
- Docs: Update release information regarding Gemini 3.1 by @jkcinouye in
|
|
191
|
+
[#19568](https://github.com/google-gemini/gemini-cli/pull/19568)
|
|
192
|
+
- fix(security): rate limit web_fetch tool to mitigate DDoS via prompt injection
|
|
193
|
+
by @mattKorwel in
|
|
194
|
+
[#19567](https://github.com/google-gemini/gemini-cli/pull/19567)
|
|
195
|
+
- Add initial implementation of /extensions explore command by @chrstnb in
|
|
196
|
+
[#19029](https://github.com/google-gemini/gemini-cli/pull/19029)
|
|
197
|
+
- fix: use discoverOAuthFromWWWAuthenticate for reactive OAuth flow (#18760) by
|
|
198
|
+
@maximus12793 in
|
|
199
|
+
[#19038](https://github.com/google-gemini/gemini-cli/pull/19038)
|
|
200
|
+
- Search updates by @alisa-alisa in
|
|
201
|
+
[#19482](https://github.com/google-gemini/gemini-cli/pull/19482)
|
|
202
|
+
- feat(cli): add support for numpad SS3 sequences by @scidomino in
|
|
203
|
+
[#19659](https://github.com/google-gemini/gemini-cli/pull/19659)
|
|
204
|
+
- feat(cli): enhance folder trust with configuration discovery and security
|
|
205
|
+
warnings by @galz10 in
|
|
206
|
+
[#19492](https://github.com/google-gemini/gemini-cli/pull/19492)
|
|
207
|
+
- feat(ui): improve startup warnings UX with dismissal and show-count limits by
|
|
208
|
+
@spencer426 in
|
|
209
|
+
[#19584](https://github.com/google-gemini/gemini-cli/pull/19584)
|
|
210
|
+
- feat(a2a): Add API key authentication provider by @adamfweidman in
|
|
211
|
+
[#19548](https://github.com/google-gemini/gemini-cli/pull/19548)
|
|
212
|
+
- Send accepted/removed lines with ACCEPT_FILE telemetry. by @gundermanc in
|
|
213
|
+
[#19670](https://github.com/google-gemini/gemini-cli/pull/19670)
|
|
214
|
+
- feat(models): support Gemini 3.1 Pro Preview and fixes by @sehoon38 in
|
|
215
|
+
[#19676](https://github.com/google-gemini/gemini-cli/pull/19676)
|
|
216
|
+
- feat(plan): enforce read-only constraints in Plan Mode by @mattKorwel in
|
|
217
|
+
[#19433](https://github.com/google-gemini/gemini-cli/pull/19433)
|
|
218
|
+
- fix(cli): allow perfect match @scripts/test-windows-paths.js completions to
|
|
219
|
+
submit on Enter by @spencer426 in
|
|
220
|
+
[#19562](https://github.com/google-gemini/gemini-cli/pull/19562)
|
|
221
|
+
- fix(core): treat 503 Service Unavailable as retryable quota error by @sehoon38
|
|
222
|
+
in [#19642](https://github.com/google-gemini/gemini-cli/pull/19642)
|
|
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
|
|
156
252
|
@adamfweidman in
|
|
157
|
-
[#
|
|
158
|
-
-
|
|
159
|
-
|
|
160
|
-
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
[#
|
|
167
|
-
-
|
|
168
|
-
[#
|
|
169
|
-
-
|
|
170
|
-
[#
|
|
171
|
-
-
|
|
172
|
-
[#
|
|
173
|
-
-
|
|
174
|
-
@
|
|
175
|
-
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
- fix(
|
|
180
|
-
[#
|
|
181
|
-
-
|
|
182
|
-
in [#
|
|
183
|
-
-
|
|
184
|
-
[#
|
|
185
|
-
- refactor(
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
-
|
|
189
|
-
|
|
190
|
-
[#
|
|
191
|
-
-
|
|
192
|
-
[#
|
|
193
|
-
- feat(
|
|
194
|
-
[#
|
|
195
|
-
-
|
|
196
|
-
[#
|
|
197
|
-
-
|
|
198
|
-
[#
|
|
199
|
-
- fix(
|
|
200
|
-
[#
|
|
201
|
-
-
|
|
202
|
-
[#
|
|
203
|
-
-
|
|
204
|
-
[#
|
|
205
|
-
-
|
|
206
|
-
[#
|
|
207
|
-
-
|
|
208
|
-
[#
|
|
209
|
-
-
|
|
210
|
-
[#
|
|
211
|
-
- fix(
|
|
212
|
-
prefixes by @SandyTao520 in
|
|
213
|
-
[#18975](https://github.com/google-gemini/gemini-cli/pull/18975)
|
|
214
|
-
- feat(core): fallback to chat-base when using unrecognized models for chat by
|
|
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
|
|
215
308
|
@SandyTao520 in
|
|
216
|
-
[#
|
|
217
|
-
-
|
|
218
|
-
|
|
219
|
-
-
|
|
220
|
-
|
|
221
|
-
- feat(
|
|
222
|
-
[#18863](https://github.com/google-gemini/gemini-cli/pull/18863)
|
|
223
|
-
- Docs: Refresh docs to organize and standardize reference materials. by
|
|
224
|
-
@jkcinouye in [#18403](https://github.com/google-gemini/gemini-cli/pull/18403)
|
|
225
|
-
- fix windows escaping (and broken tests) by @scidomino in
|
|
226
|
-
[#19011](https://github.com/google-gemini/gemini-cli/pull/19011)
|
|
227
|
-
- refactor: use `CoreToolCallStatus` in the the history data model by @jerop in
|
|
228
|
-
[#19033](https://github.com/google-gemini/gemini-cli/pull/19033)
|
|
229
|
-
- feat(cleanup): enable 30-day session retention by default by @skeshive in
|
|
230
|
-
[#18854](https://github.com/google-gemini/gemini-cli/pull/18854)
|
|
231
|
-
- feat(plan): hide plan write and edit operations on plans in Plan Mode by
|
|
232
|
-
@jerop in [#19012](https://github.com/google-gemini/gemini-cli/pull/19012)
|
|
233
|
-
- bug(ui) fix flicker refreshing background color by @jacob314 in
|
|
234
|
-
[#19041](https://github.com/google-gemini/gemini-cli/pull/19041)
|
|
235
|
-
- chore: fix dep vulnerabilities by @scidomino in
|
|
236
|
-
[#19036](https://github.com/google-gemini/gemini-cli/pull/19036)
|
|
237
|
-
- Revamp automated changelog skill by @g-samroberts in
|
|
238
|
-
[#18974](https://github.com/google-gemini/gemini-cli/pull/18974)
|
|
239
|
-
- feat(sdk): implement support for custom skills by @mbleigh in
|
|
240
|
-
[#19031](https://github.com/google-gemini/gemini-cli/pull/19031)
|
|
241
|
-
- refactor(core): complete centralization of core tool definitions by
|
|
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
|
|
242
315
|
@aishaneeshah in
|
|
243
|
-
[#
|
|
244
|
-
- feat:
|
|
245
|
-
|
|
246
|
-
-
|
|
247
|
-
in
|
|
248
|
-
-
|
|
249
|
-
|
|
250
|
-
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
-
|
|
261
|
-
[#
|
|
262
|
-
- Add
|
|
263
|
-
[#
|
|
264
|
-
-
|
|
265
|
-
[#
|
|
266
|
-
-
|
|
267
|
-
|
|
268
|
-
-
|
|
269
|
-
|
|
270
|
-
[#
|
|
271
|
-
-
|
|
272
|
-
|
|
273
|
-
-
|
|
274
|
-
[#
|
|
275
|
-
-
|
|
276
|
-
[#
|
|
277
|
-
-
|
|
278
|
-
[#
|
|
279
|
-
- feat
|
|
280
|
-
[#
|
|
281
|
-
-
|
|
282
|
-
[#
|
|
283
|
-
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
[#
|
|
289
|
-
-
|
|
290
|
-
[#
|
|
291
|
-
-
|
|
292
|
-
|
|
293
|
-
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
-
|
|
302
|
-
|
|
303
|
-
[#
|
|
304
|
-
-
|
|
305
|
-
|
|
306
|
-
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
-
|
|
311
|
-
|
|
312
|
-
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
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)
|
|
316
414
|
|
|
317
|
-
**Full
|
|
318
|
-
https://github.com/google-gemini/gemini-cli/compare/v0.
|
|
415
|
+
**Full Changelog**:
|
|
416
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.30.0-preview.6...v0.31.0-preview.1
|