@google/gemini-cli-core 0.34.0-preview.2 → 0.35.0-nightly.20260313.bb060d7a9
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 +19 -0
- package/dist/docs/changelogs/latest.md +214 -191
- package/dist/docs/changelogs/preview.md +447 -184
- package/dist/docs/cli/model-routing.md +18 -1
- package/dist/docs/cli/model-steering.md +79 -0
- package/dist/docs/cli/plan-mode.md +99 -14
- package/dist/docs/cli/settings.md +14 -12
- package/dist/docs/cli/telemetry.md +45 -0
- package/dist/docs/cli/tutorials/plan-mode-steering.md +89 -0
- package/dist/docs/core/index.md +2 -0
- package/dist/docs/core/local-model-routing.md +193 -0
- package/dist/docs/reference/configuration.md +27 -3
- package/dist/docs/reference/keyboard-shortcuts.md +168 -90
- package/dist/docs/reference/policy-engine.md +30 -6
- package/dist/docs/resources/troubleshooting.md +15 -0
- package/dist/docs/sidebar.json +10 -0
- package/dist/docs/tools/shell.md +8 -0
- package/dist/google-gemini-cli-core-0.35.0-nightly.20260311.657f19c1f.tgz +0 -0
- package/dist/src/agents/a2a-client-manager.d.ts +11 -4
- package/dist/src/agents/a2a-client-manager.js +61 -34
- package/dist/src/agents/a2a-client-manager.js.map +1 -1
- package/dist/src/agents/a2a-client-manager.test.js +178 -115
- package/dist/src/agents/a2a-client-manager.test.js.map +1 -1
- package/dist/src/agents/a2aUtils.d.ts +4 -28
- package/dist/src/agents/a2aUtils.js +20 -181
- package/dist/src/agents/a2aUtils.js.map +1 -1
- package/dist/src/agents/a2aUtils.test.js +19 -106
- package/dist/src/agents/a2aUtils.test.js.map +1 -1
- package/dist/src/agents/agent-scheduler.d.ts +2 -0
- package/dist/src/agents/agent-scheduler.js +3 -2
- package/dist/src/agents/agent-scheduler.js.map +1 -1
- package/dist/src/agents/agent-scheduler.test.js +12 -3
- package/dist/src/agents/agent-scheduler.test.js.map +1 -1
- package/dist/src/agents/agentLoader.d.ts +2 -2
- package/dist/src/agents/agentLoader.js +15 -0
- package/dist/src/agents/agentLoader.js.map +1 -1
- package/dist/src/agents/auth-provider/factory.d.ts +2 -0
- 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/google-credentials-provider.d.ts +26 -0
- package/dist/src/agents/auth-provider/google-credentials-provider.js +117 -0
- package/dist/src/agents/auth-provider/google-credentials-provider.js.map +1 -0
- package/dist/src/agents/auth-provider/google-credentials-provider.test.d.ts +6 -0
- package/dist/src/agents/auth-provider/google-credentials-provider.test.js +126 -0
- package/dist/src/agents/auth-provider/google-credentials-provider.test.js.map +1 -0
- package/dist/src/agents/browser/browserAgentFactory.js +11 -2
- package/dist/src/agents/browser/browserAgentFactory.js.map +1 -1
- package/dist/src/agents/browser/browserAgentInvocation.d.ts +4 -3
- package/dist/src/agents/browser/browserAgentInvocation.js +10 -4
- package/dist/src/agents/browser/browserAgentInvocation.js.map +1 -1
- package/dist/src/agents/browser/browserAgentInvocation.test.js +1 -0
- package/dist/src/agents/browser/browserAgentInvocation.test.js.map +1 -1
- package/dist/src/agents/browser/browserManager.d.ts +10 -0
- package/dist/src/agents/browser/browserManager.js +53 -8
- package/dist/src/agents/browser/browserManager.js.map +1 -1
- package/dist/src/agents/browser/inputBlocker.d.ts +51 -0
- package/dist/src/agents/browser/inputBlocker.js +234 -0
- package/dist/src/agents/browser/inputBlocker.js.map +1 -0
- package/dist/src/agents/browser/inputBlocker.test.d.ts +6 -0
- package/dist/src/agents/browser/inputBlocker.test.js +82 -0
- package/dist/src/agents/browser/inputBlocker.test.js.map +1 -0
- package/dist/src/agents/browser/mcpToolWrapper.d.ts +3 -2
- package/dist/src/agents/browser/mcpToolWrapper.js +49 -8
- package/dist/src/agents/browser/mcpToolWrapper.js.map +1 -1
- package/dist/src/agents/browser/mcpToolWrapper.test.js +51 -0
- package/dist/src/agents/browser/mcpToolWrapper.test.js.map +1 -1
- package/dist/src/agents/local-executor.d.ts +5 -4
- package/dist/src/agents/local-executor.js +30 -25
- package/dist/src/agents/local-executor.js.map +1 -1
- package/dist/src/agents/local-executor.test.js +269 -3
- package/dist/src/agents/local-executor.test.js.map +1 -1
- package/dist/src/agents/local-invocation.d.ts +4 -4
- package/dist/src/agents/local-invocation.js +12 -9
- package/dist/src/agents/local-invocation.js.map +1 -1
- package/dist/src/agents/local-invocation.test.js +19 -3
- package/dist/src/agents/local-invocation.test.js.map +1 -1
- package/dist/src/agents/registry.js +3 -2
- package/dist/src/agents/registry.js.map +1 -1
- package/dist/src/agents/registry.test.js +1 -0
- package/dist/src/agents/registry.test.js.map +1 -1
- package/dist/src/agents/remote-invocation.d.ts +0 -9
- package/dist/src/agents/remote-invocation.js +1 -28
- package/dist/src/agents/remote-invocation.js.map +1 -1
- package/dist/src/agents/remote-invocation.test.js +1 -0
- package/dist/src/agents/remote-invocation.test.js.map +1 -1
- package/dist/src/agents/subagent-tool-wrapper.d.ts +5 -4
- package/dist/src/agents/subagent-tool-wrapper.js +9 -5
- package/dist/src/agents/subagent-tool-wrapper.js.map +1 -1
- package/dist/src/agents/subagent-tool-wrapper.test.js +15 -1
- package/dist/src/agents/subagent-tool-wrapper.test.js.map +1 -1
- package/dist/src/agents/subagent-tool.d.ts +3 -3
- package/dist/src/agents/subagent-tool.js +16 -12
- package/dist/src/agents/subagent-tool.js.map +1 -1
- package/dist/src/agents/subagent-tool.test.js +13 -3
- package/dist/src/agents/subagent-tool.test.js.map +1 -1
- package/dist/src/code_assist/oauth2.js +0 -1
- package/dist/src/code_assist/oauth2.js.map +1 -1
- package/dist/src/code_assist/server.js +2 -2
- package/dist/src/code_assist/server.js.map +1 -1
- package/dist/src/code_assist/server.test.js +5 -1
- package/dist/src/code_assist/server.test.js.map +1 -1
- package/dist/src/code_assist/telemetry.d.ts +2 -2
- package/dist/src/code_assist/telemetry.js +5 -3
- package/dist/src/code_assist/telemetry.js.map +1 -1
- package/dist/src/code_assist/telemetry.test.js +14 -12
- package/dist/src/code_assist/telemetry.test.js.map +1 -1
- package/dist/src/code_assist/types.d.ts +14 -12
- package/dist/src/code_assist/types.js.map +1 -1
- package/dist/src/config/agent-loop-context.d.ts +3 -0
- package/dist/src/config/config.d.ts +75 -2
- package/dist/src/config/config.js +78 -11
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/config.test.js +170 -10
- package/dist/src/config/config.test.js.map +1 -1
- package/dist/src/config/models.d.ts +14 -0
- package/dist/src/config/models.js +37 -0
- package/dist/src/config/models.js.map +1 -1
- package/dist/src/config/models.test.js +51 -1
- package/dist/src/config/models.test.js.map +1 -1
- package/dist/src/config/storage.d.ts +1 -0
- package/dist/src/config/storage.js +3 -0
- package/dist/src/config/storage.js.map +1 -1
- package/dist/src/core/baseLlmClient.js +19 -3
- package/dist/src/core/baseLlmClient.js.map +1 -1
- package/dist/src/core/baseLlmClient.test.js +2 -0
- package/dist/src/core/baseLlmClient.test.js.map +1 -1
- package/dist/src/core/client.d.ts +4 -3
- package/dist/src/core/client.js +42 -17
- package/dist/src/core/client.js.map +1 -1
- package/dist/src/core/client.test.js +8 -0
- package/dist/src/core/client.test.js.map +1 -1
- package/dist/src/core/contentGenerator.d.ts +1 -0
- package/dist/src/core/contentGenerator.js +35 -3
- package/dist/src/core/contentGenerator.js.map +1 -1
- package/dist/src/core/contentGenerator.test.js +137 -2
- package/dist/src/core/contentGenerator.test.js.map +1 -1
- package/dist/src/core/coreToolHookTriggers.d.ts +2 -3
- package/dist/src/core/coreToolHookTriggers.js +5 -11
- package/dist/src/core/coreToolHookTriggers.js.map +1 -1
- package/dist/src/core/coreToolHookTriggers.test.js +24 -0
- package/dist/src/core/coreToolHookTriggers.test.js.map +1 -1
- package/dist/src/core/coreToolScheduler.js +1 -1
- package/dist/src/core/coreToolScheduler.js.map +1 -1
- package/dist/src/core/geminiChat.js +31 -21
- package/dist/src/core/geminiChat.js.map +1 -1
- package/dist/src/core/geminiChat.test.js +6 -4
- package/dist/src/core/geminiChat.test.js.map +1 -1
- package/dist/src/core/geminiChat_network_retry.test.js +21 -11
- package/dist/src/core/geminiChat_network_retry.test.js.map +1 -1
- package/dist/src/fallback/handler.js +0 -4
- package/dist/src/fallback/handler.js.map +1 -1
- package/dist/src/fallback/handler.test.js +0 -6
- package/dist/src/fallback/handler.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/generated/git-commit.js.map +1 -1
- package/dist/src/ide/detect-ide.d.ts +8 -0
- package/dist/src/ide/detect-ide.js +12 -1
- package/dist/src/ide/detect-ide.js.map +1 -1
- package/dist/src/ide/detect-ide.test.js +12 -0
- package/dist/src/ide/detect-ide.test.js.map +1 -1
- package/dist/src/ide/ide-installer.js +20 -8
- package/dist/src/ide/ide-installer.js.map +1 -1
- package/dist/src/ide/ide-installer.test.js +60 -4
- package/dist/src/ide/ide-installer.test.js.map +1 -1
- package/dist/src/mcp/oauth-provider.js +0 -2
- package/dist/src/mcp/oauth-provider.js.map +1 -1
- package/dist/src/mcp/oauth-utils.js +0 -2
- package/dist/src/mcp/oauth-utils.js.map +1 -1
- package/dist/src/policy/config.d.ts +14 -2
- package/dist/src/policy/config.js +94 -49
- package/dist/src/policy/config.js.map +1 -1
- package/dist/src/policy/config.test.js +208 -488
- package/dist/src/policy/config.test.js.map +1 -1
- package/dist/src/policy/policies/plan.toml +1 -1
- package/dist/src/policy/stable-stringify.js +15 -5
- package/dist/src/policy/stable-stringify.js.map +1 -1
- package/dist/src/policy/types.d.ts +1 -0
- package/dist/src/policy/types.js.map +1 -1
- package/dist/src/policy/utils.d.ts +17 -0
- package/dist/src/policy/utils.js +27 -7
- package/dist/src/policy/utils.js.map +1 -1
- package/dist/src/prompts/snippets.js +2 -1
- package/dist/src/prompts/snippets.js.map +1 -1
- package/dist/src/prompts/utils.test.d.ts +6 -0
- package/dist/src/prompts/utils.test.js +225 -0
- package/dist/src/prompts/utils.test.js.map +1 -0
- package/dist/src/routing/modelRouterService.js +2 -2
- package/dist/src/routing/modelRouterService.js.map +1 -1
- package/dist/src/routing/modelRouterService.test.js +4 -3
- package/dist/src/routing/modelRouterService.test.js.map +1 -1
- package/dist/src/routing/strategies/numericalClassifierStrategy.js +6 -40
- package/dist/src/routing/strategies/numericalClassifierStrategy.js.map +1 -1
- package/dist/src/routing/strategies/numericalClassifierStrategy.test.js +29 -64
- package/dist/src/routing/strategies/numericalClassifierStrategy.test.js.map +1 -1
- package/dist/src/scheduler/policy.d.ts +3 -7
- package/dist/src/scheduler/policy.js +4 -3
- package/dist/src/scheduler/policy.js.map +1 -1
- package/dist/src/scheduler/policy.test.js +51 -31
- package/dist/src/scheduler/policy.test.js.map +1 -1
- package/dist/src/scheduler/scheduler.d.ts +4 -2
- package/dist/src/scheduler/scheduler.js +19 -16
- package/dist/src/scheduler/scheduler.js.map +1 -1
- package/dist/src/scheduler/scheduler.test.js +33 -10
- package/dist/src/scheduler/scheduler.test.js.map +1 -1
- package/dist/src/scheduler/scheduler_parallel.test.js +40 -2
- package/dist/src/scheduler/scheduler_parallel.test.js.map +1 -1
- package/dist/src/scheduler/scheduler_waiting_callback.test.js +1 -1
- package/dist/src/scheduler/scheduler_waiting_callback.test.js.map +1 -1
- package/dist/src/scheduler/tool-executor.d.ts +3 -3
- package/dist/src/scheduler/tool-executor.js +15 -21
- package/dist/src/scheduler/tool-executor.js.map +1 -1
- package/dist/src/scheduler/tool-executor.test.js +43 -8
- package/dist/src/scheduler/tool-executor.test.js.map +1 -1
- package/dist/src/services/chatRecordingService.js +2 -1
- package/dist/src/services/chatRecordingService.js.map +1 -1
- package/dist/src/services/chatRecordingService.test.js +21 -0
- package/dist/src/services/chatRecordingService.test.js.map +1 -1
- package/dist/src/services/executionLifecycleService.d.ts +83 -0
- package/dist/src/services/executionLifecycleService.js +271 -0
- package/dist/src/services/executionLifecycleService.js.map +1 -0
- package/dist/src/services/executionLifecycleService.test.d.ts +6 -0
- package/dist/src/services/executionLifecycleService.test.js +227 -0
- package/dist/src/services/executionLifecycleService.test.js.map +1 -0
- package/dist/src/services/sandboxManager.d.ts +54 -0
- package/dist/src/services/sandboxManager.js +30 -0
- package/dist/src/services/sandboxManager.js.map +1 -0
- package/dist/src/services/sandboxManager.test.d.ts +6 -0
- package/dist/src/services/sandboxManager.test.js +95 -0
- package/dist/src/services/sandboxManager.test.js.map +1 -0
- package/dist/src/services/shellExecutionService.d.ts +4 -52
- package/dist/src/services/shellExecutionService.js +437 -498
- package/dist/src/services/shellExecutionService.js.map +1 -1
- package/dist/src/services/shellExecutionService.test.js +10 -21
- package/dist/src/services/shellExecutionService.test.js.map +1 -1
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.d.ts +13 -2
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.js +91 -1
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.js.map +1 -1
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.test.js +77 -0
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.test.js.map +1 -1
- package/dist/src/telemetry/clearcut-logger/event-metadata-key.d.ts +10 -1
- package/dist/src/telemetry/clearcut-logger/event-metadata-key.js +25 -1
- package/dist/src/telemetry/clearcut-logger/event-metadata-key.js.map +1 -1
- package/dist/src/telemetry/index.d.ts +3 -3
- package/dist/src/telemetry/index.js +3 -3
- package/dist/src/telemetry/index.js.map +1 -1
- package/dist/src/telemetry/loggers.d.ts +2 -1
- package/dist/src/telemetry/loggers.js +32 -1
- package/dist/src/telemetry/loggers.js.map +1 -1
- package/dist/src/telemetry/loggers.test.js +37 -2
- package/dist/src/telemetry/loggers.test.js.map +1 -1
- package/dist/src/telemetry/metrics.d.ts +13 -0
- package/dist/src/telemetry/metrics.js +17 -0
- package/dist/src/telemetry/metrics.js.map +1 -1
- package/dist/src/telemetry/startupProfiler.js +4 -4
- package/dist/src/telemetry/startupProfiler.js.map +1 -1
- package/dist/src/telemetry/startupProfiler.test.js +19 -0
- package/dist/src/telemetry/startupProfiler.test.js.map +1 -1
- package/dist/src/telemetry/telemetry-utils.test.js +3 -3
- package/dist/src/telemetry/types.d.ts +16 -2
- package/dist/src/telemetry/types.js +34 -0
- package/dist/src/telemetry/types.js.map +1 -1
- package/dist/src/telemetry/uiTelemetry.d.ts +7 -0
- package/dist/src/telemetry/uiTelemetry.js +78 -0
- package/dist/src/telemetry/uiTelemetry.js.map +1 -1
- package/dist/src/telemetry/uiTelemetry.test.js +101 -0
- package/dist/src/telemetry/uiTelemetry.test.js.map +1 -1
- package/dist/src/tools/exit-plan-mode.js +10 -2
- package/dist/src/tools/exit-plan-mode.js.map +1 -1
- package/dist/src/tools/exit-plan-mode.test.js +15 -0
- package/dist/src/tools/exit-plan-mode.test.js.map +1 -1
- package/dist/src/tools/ls.js +2 -2
- package/dist/src/tools/ls.js.map +1 -1
- package/dist/src/tools/mcp-client.js +0 -1
- package/dist/src/tools/mcp-client.js.map +1 -1
- package/dist/src/tools/mcp-client.test.js +4 -0
- package/dist/src/tools/mcp-client.test.js.map +1 -1
- package/dist/src/tools/mcp-tool.test.js +10 -1
- package/dist/src/tools/mcp-tool.test.js.map +1 -1
- package/dist/src/tools/read-many-files.js +2 -4
- package/dist/src/tools/read-many-files.js.map +1 -1
- package/dist/src/tools/shell.d.ts +1 -1
- package/dist/src/tools/shell.js +3 -3
- package/dist/src/tools/shell.js.map +1 -1
- package/dist/src/tools/tool-registry.test.js +4 -0
- package/dist/src/tools/tool-registry.test.js.map +1 -1
- package/dist/src/tools/tools.d.ts +34 -1
- package/dist/src/tools/tools.js +47 -1
- package/dist/src/tools/tools.js.map +1 -1
- package/dist/src/tools/web-fetch.d.ts +5 -0
- package/dist/src/tools/web-fetch.js +177 -100
- package/dist/src/tools/web-fetch.js.map +1 -1
- package/dist/src/tools/web-fetch.test.js +130 -26
- package/dist/src/tools/web-fetch.test.js.map +1 -1
- package/dist/src/tools/web-search.test.js +2 -0
- package/dist/src/tools/web-search.test.js.map +1 -1
- package/dist/src/utils/fetch.d.ts +0 -29
- package/dist/src/utils/fetch.js +10 -123
- package/dist/src/utils/fetch.js.map +1 -1
- package/dist/src/utils/fetch.test.js +1 -103
- package/dist/src/utils/fetch.test.js.map +1 -1
- package/dist/src/utils/language-detection.js +96 -89
- package/dist/src/utils/language-detection.js.map +1 -1
- package/dist/src/utils/language-detection.test.d.ts +6 -0
- package/dist/src/utils/language-detection.test.js +39 -0
- package/dist/src/utils/language-detection.test.js.map +1 -0
- package/dist/src/utils/oauth-flow.js +0 -2
- package/dist/src/utils/oauth-flow.js.map +1 -1
- package/dist/src/utils/paths.js +5 -2
- package/dist/src/utils/paths.js.map +1 -1
- package/dist/src/utils/paths.test.js +11 -0
- package/dist/src/utils/paths.test.js.map +1 -1
- package/dist/src/utils/process-utils.js +18 -4
- package/dist/src/utils/process-utils.js.map +1 -1
- package/dist/src/utils/process-utils.test.js +32 -10
- package/dist/src/utils/process-utils.test.js.map +1 -1
- package/dist/src/utils/retry.d.ts +7 -0
- package/dist/src/utils/retry.js +40 -3
- package/dist/src/utils/retry.js.map +1 -1
- package/dist/src/utils/retry.test.js +13 -0
- package/dist/src/utils/retry.test.js.map +1 -1
- package/dist/src/utils/summarizer.test.js +5 -0
- package/dist/src/utils/summarizer.test.js.map +1 -1
- package/dist/src/utils/surface.d.ts +18 -0
- package/dist/src/utils/surface.js +46 -0
- package/dist/src/utils/surface.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/google-gemini-cli-core-0.34.0-preview.1.tgz +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Preview release: v0.
|
|
1
|
+
# Preview release: v0.34.0-preview.1
|
|
2
2
|
|
|
3
|
-
Released: March
|
|
3
|
+
Released: March 12, 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,196 +13,459 @@ npm install -g @google/gemini-cli@preview
|
|
|
13
13
|
|
|
14
14
|
## Highlights
|
|
15
15
|
|
|
16
|
-
- **Plan Mode
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
- **
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
- **
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
MCP tool output.
|
|
16
|
+
- **Plan Mode Enabled by Default:** Plan Mode is now enabled out-of-the-box,
|
|
17
|
+
providing a structured planning workflow and keeping approved plans during
|
|
18
|
+
chat compression.
|
|
19
|
+
- **Sandboxing Enhancements:** Added experimental LXC container sandbox support
|
|
20
|
+
and native gVisor (`runsc`) sandboxing for improved security and isolation.
|
|
21
|
+
- **Tracker Visualization and Tools:** Introduced CRUD tools and visualization
|
|
22
|
+
for trackers, along with task tracker strategy improvements.
|
|
23
|
+
- **Browser Agent Improvements:** Enhanced the browser agent with progress
|
|
24
|
+
emission, a new automation overlay, and additional integration tests.
|
|
25
|
+
- **CLI and UI Updates:** Standardized semantic focus colors, polished shell
|
|
26
|
+
autocomplete rendering, unified keybinding infrastructure, and added custom
|
|
27
|
+
footer configuration options.
|
|
29
28
|
|
|
30
29
|
## What's Changed
|
|
31
30
|
|
|
32
|
-
- fix(patch): cherry-pick
|
|
31
|
+
- fix(patch): cherry-pick 45faf4d to release/v0.34.0-preview.0-pr-22148
|
|
33
32
|
[CONFLICTS] by @gemini-cli-robot in
|
|
34
|
-
[#
|
|
35
|
-
-
|
|
36
|
-
|
|
33
|
+
[#22174](https://github.com/google-gemini/gemini-cli/pull/22174)
|
|
34
|
+
- feat(cli): add chat resume footer on session quit by @lordshashank in
|
|
35
|
+
[#20667](https://github.com/google-gemini/gemini-cli/pull/20667)
|
|
36
|
+
- Support bold and other styles in svg snapshots by @jacob314 in
|
|
37
|
+
[#20937](https://github.com/google-gemini/gemini-cli/pull/20937)
|
|
38
|
+
- fix(core): increase A2A agent timeout to 30 minutes by @adamfweidman in
|
|
39
|
+
[#21028](https://github.com/google-gemini/gemini-cli/pull/21028)
|
|
40
|
+
- Cleanup old branches. by @jacob314 in
|
|
41
|
+
[#19354](https://github.com/google-gemini/gemini-cli/pull/19354)
|
|
42
|
+
- chore(release): bump version to 0.34.0-nightly.20260303.34f0c1538 by
|
|
37
43
|
@gemini-cli-robot in
|
|
38
|
-
[#
|
|
39
|
-
-
|
|
40
|
-
|
|
44
|
+
[#21034](https://github.com/google-gemini/gemini-cli/pull/21034)
|
|
45
|
+
- feat(ui): standardize semantic focus colors and enhance history visibility by
|
|
46
|
+
@keithguerin in
|
|
47
|
+
[#20745](https://github.com/google-gemini/gemini-cli/pull/20745)
|
|
48
|
+
- fix: merge duplicate imports in packages/core (3/4) by @Nixxx19 in
|
|
49
|
+
[#20928](https://github.com/google-gemini/gemini-cli/pull/20928)
|
|
50
|
+
- Add extra safety checks for proto pollution by @jacob314 in
|
|
51
|
+
[#20396](https://github.com/google-gemini/gemini-cli/pull/20396)
|
|
52
|
+
- feat(core): Add tracker CRUD tools & visualization by @anj-s in
|
|
53
|
+
[#19489](https://github.com/google-gemini/gemini-cli/pull/19489)
|
|
54
|
+
- Revert "fix(ui): persist expansion in AskUser dialog when navigating options"
|
|
55
|
+
by @jacob314 in
|
|
56
|
+
[#21042](https://github.com/google-gemini/gemini-cli/pull/21042)
|
|
57
|
+
- Changelog for v0.33.0-preview.0 by @gemini-cli-robot in
|
|
58
|
+
[#21030](https://github.com/google-gemini/gemini-cli/pull/21030)
|
|
59
|
+
- fix: model persistence for all scenarios by @sripasg in
|
|
60
|
+
[#21051](https://github.com/google-gemini/gemini-cli/pull/21051)
|
|
61
|
+
- chore/release: bump version to 0.34.0-nightly.20260304.28af4e127 by
|
|
41
62
|
@gemini-cli-robot in
|
|
42
|
-
[#
|
|
43
|
-
-
|
|
44
|
-
[
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
@
|
|
49
|
-
[#
|
|
50
|
-
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
[#
|
|
54
|
-
- fix(
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
-
|
|
59
|
-
|
|
60
|
-
-
|
|
61
|
-
|
|
62
|
-
-
|
|
63
|
-
|
|
64
|
-
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
-
|
|
69
|
-
[#
|
|
70
|
-
-
|
|
71
|
-
@
|
|
72
|
-
[#
|
|
73
|
-
-
|
|
74
|
-
|
|
75
|
-
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
-
|
|
63
|
+
[#21054](https://github.com/google-gemini/gemini-cli/pull/21054)
|
|
64
|
+
- Consistently guard restarts against concurrent auto updates by @scidomino in
|
|
65
|
+
[#21016](https://github.com/google-gemini/gemini-cli/pull/21016)
|
|
66
|
+
- Defensive coding to reduce the risk of Maximum update depth errors by
|
|
67
|
+
@jacob314 in [#20940](https://github.com/google-gemini/gemini-cli/pull/20940)
|
|
68
|
+
- fix(cli): Polish shell autocomplete rendering to be a little more shell native
|
|
69
|
+
feeling. by @jacob314 in
|
|
70
|
+
[#20931](https://github.com/google-gemini/gemini-cli/pull/20931)
|
|
71
|
+
- Docs: Update plan mode docs by @jkcinouye in
|
|
72
|
+
[#19682](https://github.com/google-gemini/gemini-cli/pull/19682)
|
|
73
|
+
- fix(mcp): Notifications/tools/list_changed support not working by @jacob314 in
|
|
74
|
+
[#21050](https://github.com/google-gemini/gemini-cli/pull/21050)
|
|
75
|
+
- fix(cli): register extension lifecycle events in DebugProfiler by
|
|
76
|
+
@fayerman-source in
|
|
77
|
+
[#20101](https://github.com/google-gemini/gemini-cli/pull/20101)
|
|
78
|
+
- chore(dev): update vscode settings for typescriptreact by @rohit-4321 in
|
|
79
|
+
[#19907](https://github.com/google-gemini/gemini-cli/pull/19907)
|
|
80
|
+
- fix(cli): enable multi-arch docker builds for sandbox by @ru-aish in
|
|
81
|
+
[#19821](https://github.com/google-gemini/gemini-cli/pull/19821)
|
|
82
|
+
- Changelog for v0.32.0 by @gemini-cli-robot in
|
|
83
|
+
[#21033](https://github.com/google-gemini/gemini-cli/pull/21033)
|
|
84
|
+
- Changelog for v0.33.0-preview.1 by @gemini-cli-robot in
|
|
85
|
+
[#21058](https://github.com/google-gemini/gemini-cli/pull/21058)
|
|
86
|
+
- feat(core): improve @scripts/copy_files.js autocomplete to prioritize
|
|
87
|
+
filenames by @sehoon38 in
|
|
88
|
+
[#21064](https://github.com/google-gemini/gemini-cli/pull/21064)
|
|
89
|
+
- feat(sandbox): add experimental LXC container sandbox support by @h30s in
|
|
90
|
+
[#20735](https://github.com/google-gemini/gemini-cli/pull/20735)
|
|
91
|
+
- feat(evals): add overall pass rate row to eval nightly summary table by
|
|
92
|
+
@gundermanc in
|
|
93
|
+
[#20905](https://github.com/google-gemini/gemini-cli/pull/20905)
|
|
94
|
+
- feat(telemetry): include language in telemetry and fix accepted lines
|
|
95
|
+
computation by @gundermanc in
|
|
96
|
+
[#21126](https://github.com/google-gemini/gemini-cli/pull/21126)
|
|
97
|
+
- Changelog for v0.32.1 by @gemini-cli-robot in
|
|
98
|
+
[#21055](https://github.com/google-gemini/gemini-cli/pull/21055)
|
|
99
|
+
- feat(core): add robustness tests, logging, and metrics for CodeAssistServer
|
|
100
|
+
SSE parsing by @yunaseoul in
|
|
101
|
+
[#21013](https://github.com/google-gemini/gemini-cli/pull/21013)
|
|
102
|
+
- feat: add issue assignee workflow by @kartikangiras in
|
|
103
|
+
[#21003](https://github.com/google-gemini/gemini-cli/pull/21003)
|
|
104
|
+
- fix: improve error message when OAuth succeeds but project ID is required by
|
|
105
|
+
@Nixxx19 in [#21070](https://github.com/google-gemini/gemini-cli/pull/21070)
|
|
106
|
+
- feat(loop-reduction): implement iterative loop detection and model feedback by
|
|
107
|
+
@aishaneeshah in
|
|
108
|
+
[#20763](https://github.com/google-gemini/gemini-cli/pull/20763)
|
|
109
|
+
- chore(github): require prompt approvers for agent prompt files by @gundermanc
|
|
110
|
+
in [#20896](https://github.com/google-gemini/gemini-cli/pull/20896)
|
|
111
|
+
- Docs: Create tools reference by @jkcinouye in
|
|
112
|
+
[#19470](https://github.com/google-gemini/gemini-cli/pull/19470)
|
|
113
|
+
- fix(core, a2a-server): prevent hang during OAuth in non-interactive sessions
|
|
114
|
+
by @spencer426 in
|
|
115
|
+
[#21045](https://github.com/google-gemini/gemini-cli/pull/21045)
|
|
116
|
+
- chore(cli): enable deprecated settings removal by default by @yashodipmore in
|
|
117
|
+
[#20682](https://github.com/google-gemini/gemini-cli/pull/20682)
|
|
118
|
+
- feat(core): Disable fast ack helper for hints. by @joshualitt in
|
|
119
|
+
[#21011](https://github.com/google-gemini/gemini-cli/pull/21011)
|
|
120
|
+
- fix(ui): suppress redundant failure note when tool error note is shown by
|
|
83
121
|
@NTaylorMullen in
|
|
84
|
-
[#
|
|
85
|
-
-
|
|
86
|
-
[#
|
|
87
|
-
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
[#
|
|
92
|
-
- fix(cli):
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
[#
|
|
99
|
-
-
|
|
100
|
-
[#
|
|
101
|
-
-
|
|
102
|
-
[#
|
|
103
|
-
-
|
|
122
|
+
[#21078](https://github.com/google-gemini/gemini-cli/pull/21078)
|
|
123
|
+
- docs: document planning workflows with Conductor example by @jerop in
|
|
124
|
+
[#21166](https://github.com/google-gemini/gemini-cli/pull/21166)
|
|
125
|
+
- feat(release): ship esbuild bundle in npm package by @genneth in
|
|
126
|
+
[#19171](https://github.com/google-gemini/gemini-cli/pull/19171)
|
|
127
|
+
- fix(extensions): preserve symlinks in extension source path while enforcing
|
|
128
|
+
folder trust by @galz10 in
|
|
129
|
+
[#20867](https://github.com/google-gemini/gemini-cli/pull/20867)
|
|
130
|
+
- fix(cli): defer tool exclusions to policy engine in non-interactive mode by
|
|
131
|
+
@EricRahm in [#20639](https://github.com/google-gemini/gemini-cli/pull/20639)
|
|
132
|
+
- fix(ui): removed double padding on rendered content by @devr0306 in
|
|
133
|
+
[#21029](https://github.com/google-gemini/gemini-cli/pull/21029)
|
|
134
|
+
- fix(core): truncate excessively long lines in grep search output by
|
|
135
|
+
@gundermanc in
|
|
136
|
+
[#21147](https://github.com/google-gemini/gemini-cli/pull/21147)
|
|
137
|
+
- feat: add custom footer configuration via `/footer` by @jackwotherspoon in
|
|
138
|
+
[#19001](https://github.com/google-gemini/gemini-cli/pull/19001)
|
|
139
|
+
- perf(core): fix OOM crash in long-running sessions by @WizardsForgeGames in
|
|
140
|
+
[#19608](https://github.com/google-gemini/gemini-cli/pull/19608)
|
|
141
|
+
- refactor(cli): categorize built-in themes into dark/ and light/ directories by
|
|
142
|
+
@JayadityaGit in
|
|
143
|
+
[#18634](https://github.com/google-gemini/gemini-cli/pull/18634)
|
|
144
|
+
- fix(core): explicitly allow codebase_investigator and cli_help in read-only
|
|
145
|
+
mode by @Adib234 in
|
|
146
|
+
[#21157](https://github.com/google-gemini/gemini-cli/pull/21157)
|
|
147
|
+
- test: add browser agent integration tests by @kunal-10-cloud in
|
|
148
|
+
[#21151](https://github.com/google-gemini/gemini-cli/pull/21151)
|
|
149
|
+
- fix(cli): fix enabling kitty codes on Windows Terminal by @scidomino in
|
|
150
|
+
[#21136](https://github.com/google-gemini/gemini-cli/pull/21136)
|
|
151
|
+
- refactor(core): extract shared OAuth flow primitives from MCPOAuthProvider by
|
|
104
152
|
@SandyTao520 in
|
|
105
|
-
[#
|
|
106
|
-
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
-
|
|
118
|
-
|
|
119
|
-
-
|
|
120
|
-
|
|
121
|
-
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
-
|
|
126
|
-
|
|
127
|
-
- feat(core): support authenticated A2A agent card discovery by @SandyTao520 in
|
|
128
|
-
[#20622](https://github.com/google-gemini/gemini-cli/pull/20622)
|
|
129
|
-
- refactor(cli): fully remove React anti patterns, improve type safety and fix
|
|
130
|
-
UX oversights in SettingsDialog.tsx by @psinha40898 in
|
|
131
|
-
[#18963](https://github.com/google-gemini/gemini-cli/pull/18963)
|
|
132
|
-
- Adding MCPOAuthProvider implementing the MCPSDK OAuthClientProvider by
|
|
133
|
-
@Nayana-Parameswarappa in
|
|
134
|
-
[#20121](https://github.com/google-gemini/gemini-cli/pull/20121)
|
|
135
|
-
- feat(core): add tool name validation in TOML policy files by @allenhutchison
|
|
136
|
-
in [#19281](https://github.com/google-gemini/gemini-cli/pull/19281)
|
|
137
|
-
- docs: fix broken markdown links in main README.md by @Hamdanbinhashim in
|
|
138
|
-
[#20300](https://github.com/google-gemini/gemini-cli/pull/20300)
|
|
139
|
-
- refactor(core): replace manual syncPlanModeTools with declarative policy rules
|
|
140
|
-
by @jerop in [#20596](https://github.com/google-gemini/gemini-cli/pull/20596)
|
|
141
|
-
- fix(core): increase default headers timeout to 5 minutes by @gundermanc in
|
|
142
|
-
[#20890](https://github.com/google-gemini/gemini-cli/pull/20890)
|
|
143
|
-
- feat(admin): enable 30 day default retention for chat history & remove warning
|
|
153
|
+
[#20895](https://github.com/google-gemini/gemini-cli/pull/20895)
|
|
154
|
+
- fix(ui): add partial output to cancelled shell UI by @devr0306 in
|
|
155
|
+
[#21178](https://github.com/google-gemini/gemini-cli/pull/21178)
|
|
156
|
+
- fix(cli): replace hardcoded keybinding strings with dynamic formatters by
|
|
157
|
+
@scidomino in [#21159](https://github.com/google-gemini/gemini-cli/pull/21159)
|
|
158
|
+
- DOCS: Update quota and pricing page by @g-samroberts in
|
|
159
|
+
[#21194](https://github.com/google-gemini/gemini-cli/pull/21194)
|
|
160
|
+
- feat(telemetry): implement Clearcut logging for startup statistics by
|
|
161
|
+
@yunaseoul in [#21172](https://github.com/google-gemini/gemini-cli/pull/21172)
|
|
162
|
+
- feat(triage): add area/documentation to issue triage by @g-samroberts in
|
|
163
|
+
[#21222](https://github.com/google-gemini/gemini-cli/pull/21222)
|
|
164
|
+
- Fix so shell calls are formatted by @jacob314 in
|
|
165
|
+
[#21237](https://github.com/google-gemini/gemini-cli/pull/21237)
|
|
166
|
+
- feat(cli): add native gVisor (runsc) sandboxing support by @Zheyuan-Lin in
|
|
167
|
+
[#21062](https://github.com/google-gemini/gemini-cli/pull/21062)
|
|
168
|
+
- docs: use absolute paths for internal links in plan-mode.md by @jerop in
|
|
169
|
+
[#21299](https://github.com/google-gemini/gemini-cli/pull/21299)
|
|
170
|
+
- fix(core): prevent unhandled AbortError crash during stream loop detection by
|
|
171
|
+
@7hokerz in [#21123](https://github.com/google-gemini/gemini-cli/pull/21123)
|
|
172
|
+
- fix:reorder env var redaction checks to scan values first by @kartikangiras in
|
|
173
|
+
[#21059](https://github.com/google-gemini/gemini-cli/pull/21059)
|
|
174
|
+
- fix(acp): rename --experimental-acp to --acp & remove Zed-specific refrences
|
|
144
175
|
by @skeshive in
|
|
145
|
-
[#
|
|
146
|
-
- feat(
|
|
147
|
-
in [#
|
|
148
|
-
-
|
|
149
|
-
[#
|
|
150
|
-
-
|
|
151
|
-
[#
|
|
152
|
-
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
-
|
|
156
|
-
|
|
157
|
-
-
|
|
158
|
-
|
|
159
|
-
-
|
|
160
|
-
|
|
161
|
-
-
|
|
162
|
-
|
|
163
|
-
-
|
|
164
|
-
|
|
165
|
-
-
|
|
166
|
-
|
|
167
|
-
-
|
|
168
|
-
|
|
169
|
-
-
|
|
170
|
-
|
|
171
|
-
[#
|
|
172
|
-
-
|
|
173
|
-
[#
|
|
174
|
-
-
|
|
175
|
-
[#
|
|
176
|
-
-
|
|
177
|
-
|
|
178
|
-
-
|
|
179
|
-
|
|
180
|
-
[#
|
|
181
|
-
-
|
|
182
|
-
[#
|
|
183
|
-
-
|
|
184
|
-
[#
|
|
185
|
-
-
|
|
186
|
-
[#
|
|
187
|
-
- fix(
|
|
188
|
-
|
|
189
|
-
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
-
|
|
193
|
-
|
|
194
|
-
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
-
|
|
199
|
-
|
|
200
|
-
-
|
|
201
|
-
|
|
202
|
-
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
176
|
+
[#21171](https://github.com/google-gemini/gemini-cli/pull/21171)
|
|
177
|
+
- feat(core): fallback to 2.5 models with no access for toolcalls by @sehoon38
|
|
178
|
+
in [#21283](https://github.com/google-gemini/gemini-cli/pull/21283)
|
|
179
|
+
- test(core): improve testing for API request/response parsing by @sehoon38 in
|
|
180
|
+
[#21227](https://github.com/google-gemini/gemini-cli/pull/21227)
|
|
181
|
+
- docs(links): update docs-writer skill and fix broken link by @g-samroberts in
|
|
182
|
+
[#21314](https://github.com/google-gemini/gemini-cli/pull/21314)
|
|
183
|
+
- Fix code colorizer ansi escape bug. by @jacob314 in
|
|
184
|
+
[#21321](https://github.com/google-gemini/gemini-cli/pull/21321)
|
|
185
|
+
- remove wildcard behavior on keybindings by @scidomino in
|
|
186
|
+
[#21315](https://github.com/google-gemini/gemini-cli/pull/21315)
|
|
187
|
+
- feat(acp): Add support for AI Gateway auth by @skeshive in
|
|
188
|
+
[#21305](https://github.com/google-gemini/gemini-cli/pull/21305)
|
|
189
|
+
- fix(theme): improve theme color contrast for macOS Terminal.app by @clocky in
|
|
190
|
+
[#21175](https://github.com/google-gemini/gemini-cli/pull/21175)
|
|
191
|
+
- feat (core): Implement tracker related SI changes by @anj-s in
|
|
192
|
+
[#19964](https://github.com/google-gemini/gemini-cli/pull/19964)
|
|
193
|
+
- Changelog for v0.33.0-preview.2 by @gemini-cli-robot in
|
|
194
|
+
[#21333](https://github.com/google-gemini/gemini-cli/pull/21333)
|
|
195
|
+
- Changelog for v0.33.0-preview.3 by @gemini-cli-robot in
|
|
196
|
+
[#21347](https://github.com/google-gemini/gemini-cli/pull/21347)
|
|
197
|
+
- docs: format release times as HH:MM UTC by @pavan-sh in
|
|
198
|
+
[#20726](https://github.com/google-gemini/gemini-cli/pull/20726)
|
|
199
|
+
- fix(cli): implement --all flag for extensions uninstall by @sehoon38 in
|
|
200
|
+
[#21319](https://github.com/google-gemini/gemini-cli/pull/21319)
|
|
201
|
+
- docs: fix incorrect relative links to command reference by @kanywst in
|
|
202
|
+
[#20964](https://github.com/google-gemini/gemini-cli/pull/20964)
|
|
203
|
+
- documentiong ensures ripgrep by @Jatin24062005 in
|
|
204
|
+
[#21298](https://github.com/google-gemini/gemini-cli/pull/21298)
|
|
205
|
+
- fix(core): handle AbortError thrown during processTurn by @MumuTW in
|
|
206
|
+
[#21296](https://github.com/google-gemini/gemini-cli/pull/21296)
|
|
207
|
+
- docs(cli): clarify ! command output visibility in shell commands tutorial by
|
|
208
|
+
@MohammedADev in
|
|
209
|
+
[#21041](https://github.com/google-gemini/gemini-cli/pull/21041)
|
|
210
|
+
- fix: logic for task tracker strategy and remove tracker tools by @anj-s in
|
|
211
|
+
[#21355](https://github.com/google-gemini/gemini-cli/pull/21355)
|
|
212
|
+
- fix(partUtils): display media type and size for inline data parts by @Aboudjem
|
|
213
|
+
in [#21358](https://github.com/google-gemini/gemini-cli/pull/21358)
|
|
214
|
+
- Fix(accessibility): add screen reader support to RewindViewer by @Famous077 in
|
|
215
|
+
[#20750](https://github.com/google-gemini/gemini-cli/pull/20750)
|
|
216
|
+
- fix(hooks): propagate stopHookActive in AfterAgent retry path (#20426) by
|
|
217
|
+
@Aarchi-07 in [#20439](https://github.com/google-gemini/gemini-cli/pull/20439)
|
|
218
|
+
- fix(core): deduplicate GEMINI.md files by device/inode on case-insensitive
|
|
219
|
+
filesystems (#19904) by @Nixxx19 in
|
|
220
|
+
[#19915](https://github.com/google-gemini/gemini-cli/pull/19915)
|
|
221
|
+
- feat(core): add concurrency safety guidance for subagent delegation (#17753)
|
|
222
|
+
by @abhipatel12 in
|
|
223
|
+
[#21278](https://github.com/google-gemini/gemini-cli/pull/21278)
|
|
224
|
+
- feat(ui): dynamically generate all keybinding hints by @scidomino in
|
|
225
|
+
[#21346](https://github.com/google-gemini/gemini-cli/pull/21346)
|
|
226
|
+
- feat(core): implement unified KeychainService and migrate token storage by
|
|
227
|
+
@ehedlund in [#21344](https://github.com/google-gemini/gemini-cli/pull/21344)
|
|
228
|
+
- fix(cli): gracefully handle --resume when no sessions exist by @SandyTao520 in
|
|
229
|
+
[#21429](https://github.com/google-gemini/gemini-cli/pull/21429)
|
|
230
|
+
- fix(plan): keep approved plan during chat compression by @ruomengz in
|
|
231
|
+
[#21284](https://github.com/google-gemini/gemini-cli/pull/21284)
|
|
232
|
+
- feat(core): implement generic CacheService and optimize setupUser by @sehoon38
|
|
233
|
+
in [#21374](https://github.com/google-gemini/gemini-cli/pull/21374)
|
|
234
|
+
- Update quota and pricing documentation with subscription tiers by @srithreepo
|
|
235
|
+
in [#21351](https://github.com/google-gemini/gemini-cli/pull/21351)
|
|
236
|
+
- fix(core): append correct OTLP paths for HTTP exporters by
|
|
237
|
+
@sebastien-prudhomme in
|
|
238
|
+
[#16836](https://github.com/google-gemini/gemini-cli/pull/16836)
|
|
239
|
+
- Changelog for v0.33.0-preview.4 by @gemini-cli-robot in
|
|
240
|
+
[#21354](https://github.com/google-gemini/gemini-cli/pull/21354)
|
|
241
|
+
- feat(cli): implement dot-prefixing for slash command conflicts by @ehedlund in
|
|
242
|
+
[#20979](https://github.com/google-gemini/gemini-cli/pull/20979)
|
|
243
|
+
- refactor(core): standardize MCP tool naming to mcp\_ FQN format by
|
|
244
|
+
@abhipatel12 in
|
|
245
|
+
[#21425](https://github.com/google-gemini/gemini-cli/pull/21425)
|
|
246
|
+
- feat(cli): hide gemma settings from display and mark as experimental by
|
|
247
|
+
@abhipatel12 in
|
|
248
|
+
[#21471](https://github.com/google-gemini/gemini-cli/pull/21471)
|
|
249
|
+
- feat(skills): refine string-reviewer guidelines and description by @clocky in
|
|
250
|
+
[#20368](https://github.com/google-gemini/gemini-cli/pull/20368)
|
|
251
|
+
- fix(core): whitelist TERM and COLORTERM in environment sanitization by
|
|
252
|
+
@deadsmash07 in
|
|
253
|
+
[#20514](https://github.com/google-gemini/gemini-cli/pull/20514)
|
|
254
|
+
- fix(billing): fix overage strategy lifecycle and settings integration by
|
|
255
|
+
@gsquared94 in
|
|
256
|
+
[#21236](https://github.com/google-gemini/gemini-cli/pull/21236)
|
|
257
|
+
- fix: expand paste placeholders in TextInput on submit by @Jefftree in
|
|
258
|
+
[#19946](https://github.com/google-gemini/gemini-cli/pull/19946)
|
|
259
|
+
- fix(core): add in-memory cache to ChatRecordingService to prevent OOM by
|
|
260
|
+
@SandyTao520 in
|
|
261
|
+
[#21502](https://github.com/google-gemini/gemini-cli/pull/21502)
|
|
262
|
+
- feat(cli): overhaul thinking UI by @keithguerin in
|
|
263
|
+
[#18725](https://github.com/google-gemini/gemini-cli/pull/18725)
|
|
264
|
+
- fix(ui): unify Ctrl+O expansion hint experience across buffer modes by
|
|
265
|
+
@jwhelangoog in
|
|
266
|
+
[#21474](https://github.com/google-gemini/gemini-cli/pull/21474)
|
|
267
|
+
- fix(cli): correct shell height reporting by @jacob314 in
|
|
268
|
+
[#21492](https://github.com/google-gemini/gemini-cli/pull/21492)
|
|
269
|
+
- Make test suite pass when the GEMINI_SYSTEM_MD env variable or
|
|
270
|
+
GEMINI_WRITE_SYSTEM_MD variable happens to be set locally/ by @jacob314 in
|
|
271
|
+
[#21480](https://github.com/google-gemini/gemini-cli/pull/21480)
|
|
272
|
+
- Disallow underspecified types by @gundermanc in
|
|
273
|
+
[#21485](https://github.com/google-gemini/gemini-cli/pull/21485)
|
|
274
|
+
- refactor(cli): standardize on 'reload' verb for all components by @keithguerin
|
|
275
|
+
in [#20654](https://github.com/google-gemini/gemini-cli/pull/20654)
|
|
276
|
+
- feat(cli): Invert quota language to 'percent used' by @keithguerin in
|
|
277
|
+
[#20100](https://github.com/google-gemini/gemini-cli/pull/20100)
|
|
278
|
+
- Docs: Add documentation for notifications (experimental)(macOS) by @jkcinouye
|
|
279
|
+
in [#21163](https://github.com/google-gemini/gemini-cli/pull/21163)
|
|
280
|
+
- Code review comments as a pr by @jacob314 in
|
|
281
|
+
[#21209](https://github.com/google-gemini/gemini-cli/pull/21209)
|
|
282
|
+
- feat(cli): unify /chat and /resume command UX by @LyalinDotCom in
|
|
283
|
+
[#20256](https://github.com/google-gemini/gemini-cli/pull/20256)
|
|
284
|
+
- docs: fix typo 'allowslisted' -> 'allowlisted' in mcp-server.md by
|
|
285
|
+
@Gyanranjan-Priyam in
|
|
286
|
+
[#21665](https://github.com/google-gemini/gemini-cli/pull/21665)
|
|
287
|
+
- fix(core): display actual graph output in tracker_visualize tool by @anj-s in
|
|
288
|
+
[#21455](https://github.com/google-gemini/gemini-cli/pull/21455)
|
|
289
|
+
- fix(core): sanitize SSE-corrupted JSON and domain strings in error
|
|
290
|
+
classification by @gsquared94 in
|
|
291
|
+
[#21702](https://github.com/google-gemini/gemini-cli/pull/21702)
|
|
292
|
+
- Docs: Make documentation links relative by @diodesign in
|
|
293
|
+
[#21490](https://github.com/google-gemini/gemini-cli/pull/21490)
|
|
294
|
+
- feat(cli): expose /tools desc as explicit subcommand for discoverability by
|
|
295
|
+
@aworki in [#21241](https://github.com/google-gemini/gemini-cli/pull/21241)
|
|
296
|
+
- feat(cli): add /compact alias for /compress command by @jackwotherspoon in
|
|
297
|
+
[#21711](https://github.com/google-gemini/gemini-cli/pull/21711)
|
|
298
|
+
- feat(plan): enable Plan Mode by default by @jerop in
|
|
299
|
+
[#21713](https://github.com/google-gemini/gemini-cli/pull/21713)
|
|
300
|
+
- feat(core): Introduce `AgentLoopContext`. by @joshualitt in
|
|
301
|
+
[#21198](https://github.com/google-gemini/gemini-cli/pull/21198)
|
|
302
|
+
- fix(core): resolve symlinks for non-existent paths during validation by
|
|
303
|
+
@Adib234 in [#21487](https://github.com/google-gemini/gemini-cli/pull/21487)
|
|
304
|
+
- docs: document tool exclusion from memory via deny policy by @Abhijit-2592 in
|
|
305
|
+
[#21428](https://github.com/google-gemini/gemini-cli/pull/21428)
|
|
306
|
+
- perf(core): cache loadApiKey to reduce redundant keychain access by @sehoon38
|
|
307
|
+
in [#21520](https://github.com/google-gemini/gemini-cli/pull/21520)
|
|
308
|
+
- feat(cli): implement /upgrade command by @sehoon38 in
|
|
309
|
+
[#21511](https://github.com/google-gemini/gemini-cli/pull/21511)
|
|
310
|
+
- Feat/browser agent progress emission by @kunal-10-cloud in
|
|
311
|
+
[#21218](https://github.com/google-gemini/gemini-cli/pull/21218)
|
|
312
|
+
- fix(settings): display objects as JSON instead of [object Object] by
|
|
313
|
+
@Zheyuan-Lin in
|
|
314
|
+
[#21458](https://github.com/google-gemini/gemini-cli/pull/21458)
|
|
315
|
+
- Unmarshall update by @DavidAPierce in
|
|
316
|
+
[#21721](https://github.com/google-gemini/gemini-cli/pull/21721)
|
|
317
|
+
- Update mcp's list function to check for disablement. by @DavidAPierce in
|
|
318
|
+
[#21148](https://github.com/google-gemini/gemini-cli/pull/21148)
|
|
319
|
+
- robustness(core): static checks to validate history is immutable by @jacob314
|
|
320
|
+
in [#21228](https://github.com/google-gemini/gemini-cli/pull/21228)
|
|
321
|
+
- refactor(cli): better react patterns for BaseSettingsDialog by @psinha40898 in
|
|
322
|
+
[#21206](https://github.com/google-gemini/gemini-cli/pull/21206)
|
|
323
|
+
- feat(security): implement robust IP validation and safeFetch foundation by
|
|
324
|
+
@alisa-alisa in
|
|
325
|
+
[#21401](https://github.com/google-gemini/gemini-cli/pull/21401)
|
|
326
|
+
- feat(core): improve subagent result display by @joshualitt in
|
|
327
|
+
[#20378](https://github.com/google-gemini/gemini-cli/pull/20378)
|
|
328
|
+
- docs: fix broken markdown syntax and anchor links in /tools by @campox747 in
|
|
329
|
+
[#20902](https://github.com/google-gemini/gemini-cli/pull/20902)
|
|
330
|
+
- feat(policy): support subagent-specific policies in TOML by @akh64bit in
|
|
331
|
+
[#21431](https://github.com/google-gemini/gemini-cli/pull/21431)
|
|
332
|
+
- Add script to speed up reviewing PRs adding a worktree. by @jacob314 in
|
|
333
|
+
[#21748](https://github.com/google-gemini/gemini-cli/pull/21748)
|
|
334
|
+
- fix(core): prevent infinite recursion in symlink resolution by @Adib234 in
|
|
335
|
+
[#21750](https://github.com/google-gemini/gemini-cli/pull/21750)
|
|
336
|
+
- fix(docs): fix headless mode docs by @ame2en in
|
|
337
|
+
[#21287](https://github.com/google-gemini/gemini-cli/pull/21287)
|
|
338
|
+
- feat/redesign header compact by @jacob314 in
|
|
339
|
+
[#20922](https://github.com/google-gemini/gemini-cli/pull/20922)
|
|
340
|
+
- refactor: migrate to useKeyMatchers hook by @scidomino in
|
|
341
|
+
[#21753](https://github.com/google-gemini/gemini-cli/pull/21753)
|
|
342
|
+
- perf(cli): cache loadSettings to reduce redundant disk I/O at startup by
|
|
343
|
+
@sehoon38 in [#21521](https://github.com/google-gemini/gemini-cli/pull/21521)
|
|
344
|
+
- fix(core): resolve Windows line ending and path separation bugs across CLI by
|
|
345
|
+
@muhammadusman586 in
|
|
346
|
+
[#21068](https://github.com/google-gemini/gemini-cli/pull/21068)
|
|
347
|
+
- docs: fix heading formatting in commands.md and phrasing in tools-api.md by
|
|
348
|
+
@campox747 in [#20679](https://github.com/google-gemini/gemini-cli/pull/20679)
|
|
349
|
+
- refactor(ui): unify keybinding infrastructure and support string
|
|
350
|
+
initialization by @scidomino in
|
|
351
|
+
[#21776](https://github.com/google-gemini/gemini-cli/pull/21776)
|
|
352
|
+
- Add support for updating extension sources and names by @chrstnb in
|
|
353
|
+
[#21715](https://github.com/google-gemini/gemini-cli/pull/21715)
|
|
354
|
+
- fix(core): handle GUI editor non-zero exit codes gracefully by @reyyanxahmed
|
|
355
|
+
in [#20376](https://github.com/google-gemini/gemini-cli/pull/20376)
|
|
356
|
+
- fix(core): destroy PTY on kill() and exception to prevent fd leak by @nbardy
|
|
357
|
+
in [#21693](https://github.com/google-gemini/gemini-cli/pull/21693)
|
|
358
|
+
- fix(docs): update theme screenshots and add missing themes by @ashmod in
|
|
359
|
+
[#20689](https://github.com/google-gemini/gemini-cli/pull/20689)
|
|
360
|
+
- refactor(cli): rename 'return' key to 'enter' internally by @scidomino in
|
|
361
|
+
[#21796](https://github.com/google-gemini/gemini-cli/pull/21796)
|
|
362
|
+
- build(release): restrict npm bundling to non-stable tags by @sehoon38 in
|
|
363
|
+
[#21821](https://github.com/google-gemini/gemini-cli/pull/21821)
|
|
364
|
+
- fix(core): override toolRegistry property for sub-agent schedulers by
|
|
365
|
+
@gsquared94 in
|
|
366
|
+
[#21766](https://github.com/google-gemini/gemini-cli/pull/21766)
|
|
367
|
+
- fix(cli): make footer items equally spaced by @jacob314 in
|
|
368
|
+
[#21843](https://github.com/google-gemini/gemini-cli/pull/21843)
|
|
369
|
+
- docs: clarify global policy rules application in plan mode by @jerop in
|
|
370
|
+
[#21864](https://github.com/google-gemini/gemini-cli/pull/21864)
|
|
371
|
+
- fix(core): ensure correct flash model steering in plan mode implementation
|
|
372
|
+
phase by @jerop in
|
|
373
|
+
[#21871](https://github.com/google-gemini/gemini-cli/pull/21871)
|
|
374
|
+
- fix(core): update @a2a-js/sdk to 0.3.11 by @adamfweidman in
|
|
375
|
+
[#21875](https://github.com/google-gemini/gemini-cli/pull/21875)
|
|
376
|
+
- refactor(core): improve API response error logging when retry by @yunaseoul in
|
|
377
|
+
[#21784](https://github.com/google-gemini/gemini-cli/pull/21784)
|
|
378
|
+
- fix(ui): handle headless execution in credits and upgrade dialogs by
|
|
379
|
+
@gsquared94 in
|
|
380
|
+
[#21850](https://github.com/google-gemini/gemini-cli/pull/21850)
|
|
381
|
+
- fix(core): treat retryable errors with >5 min delay as terminal quota errors
|
|
382
|
+
by @gsquared94 in
|
|
383
|
+
[#21881](https://github.com/google-gemini/gemini-cli/pull/21881)
|
|
384
|
+
- feat(telemetry): add specific PR, issue, and custom tracking IDs for GitHub
|
|
385
|
+
Actions by @cocosheng-g in
|
|
386
|
+
[#21129](https://github.com/google-gemini/gemini-cli/pull/21129)
|
|
387
|
+
- feat(core): add OAuth2 Authorization Code auth provider for A2A agents by
|
|
388
|
+
@SandyTao520 in
|
|
389
|
+
[#21496](https://github.com/google-gemini/gemini-cli/pull/21496)
|
|
390
|
+
- feat(cli): give visibility to /tools list command in the TUI and follow the
|
|
391
|
+
subcommand pattern of other commands by @JayadityaGit in
|
|
392
|
+
[#21213](https://github.com/google-gemini/gemini-cli/pull/21213)
|
|
393
|
+
- Handle dirty worktrees better and warn about running scripts/review.sh on
|
|
394
|
+
untrusted code. by @jacob314 in
|
|
395
|
+
[#21791](https://github.com/google-gemini/gemini-cli/pull/21791)
|
|
396
|
+
- feat(policy): support auto-add to policy by default and scoped persistence by
|
|
397
|
+
@spencer426 in
|
|
398
|
+
[#20361](https://github.com/google-gemini/gemini-cli/pull/20361)
|
|
399
|
+
- fix(core): handle AbortError when ESC cancels tool execution by @PrasannaPal21
|
|
400
|
+
in [#20863](https://github.com/google-gemini/gemini-cli/pull/20863)
|
|
401
|
+
- fix(release): Improve Patch Release Workflow Comments: Clearer Approval
|
|
402
|
+
Guidance by @jerop in
|
|
403
|
+
[#21894](https://github.com/google-gemini/gemini-cli/pull/21894)
|
|
404
|
+
- docs: clarify telemetry setup and comprehensive data map by @jerop in
|
|
405
|
+
[#21879](https://github.com/google-gemini/gemini-cli/pull/21879)
|
|
406
|
+
- feat(core): add per-model token usage to stream-json output by @yongruilin in
|
|
407
|
+
[#21839](https://github.com/google-gemini/gemini-cli/pull/21839)
|
|
408
|
+
- docs: remove experimental badge from plan mode in sidebar by @jerop in
|
|
409
|
+
[#21906](https://github.com/google-gemini/gemini-cli/pull/21906)
|
|
410
|
+
- fix(cli): prevent race condition in loop detection retry by @skyvanguard in
|
|
411
|
+
[#17916](https://github.com/google-gemini/gemini-cli/pull/17916)
|
|
412
|
+
- Add behavioral evals for tracker by @anj-s in
|
|
413
|
+
[#20069](https://github.com/google-gemini/gemini-cli/pull/20069)
|
|
414
|
+
- fix(auth): update terminology to 'sign in' and 'sign out' by @clocky in
|
|
415
|
+
[#20892](https://github.com/google-gemini/gemini-cli/pull/20892)
|
|
416
|
+
- docs(mcp): standardize mcp tool fqn documentation by @abhipatel12 in
|
|
417
|
+
[#21664](https://github.com/google-gemini/gemini-cli/pull/21664)
|
|
418
|
+
- fix(ui): prevent empty tool-group border stubs after filtering by @Aaxhirrr in
|
|
419
|
+
[#21852](https://github.com/google-gemini/gemini-cli/pull/21852)
|
|
420
|
+
- make command names consistent by @scidomino in
|
|
421
|
+
[#21907](https://github.com/google-gemini/gemini-cli/pull/21907)
|
|
422
|
+
- refactor: remove agent_card_requires_auth config flag by @adamfweidman in
|
|
423
|
+
[#21914](https://github.com/google-gemini/gemini-cli/pull/21914)
|
|
424
|
+
- feat(a2a): implement standardized normalization and streaming reassembly by
|
|
425
|
+
@alisa-alisa in
|
|
426
|
+
[#21402](https://github.com/google-gemini/gemini-cli/pull/21402)
|
|
427
|
+
- feat(cli): enable skill activation via slash commands by @NTaylorMullen in
|
|
428
|
+
[#21758](https://github.com/google-gemini/gemini-cli/pull/21758)
|
|
429
|
+
- docs(cli): mention per-model token usage in stream-json result event by
|
|
430
|
+
@yongruilin in
|
|
431
|
+
[#21908](https://github.com/google-gemini/gemini-cli/pull/21908)
|
|
432
|
+
- fix(plan): prevent plan truncation in approval dialog by supporting
|
|
433
|
+
unconstrained heights by @Adib234 in
|
|
434
|
+
[#21037](https://github.com/google-gemini/gemini-cli/pull/21037)
|
|
435
|
+
- feat(a2a): switch from callback-based to event-driven tool scheduler by
|
|
436
|
+
@cocosheng-g in
|
|
437
|
+
[#21467](https://github.com/google-gemini/gemini-cli/pull/21467)
|
|
438
|
+
- feat(voice): implement speech-friendly response formatter by @Solventerritory
|
|
439
|
+
in [#20989](https://github.com/google-gemini/gemini-cli/pull/20989)
|
|
440
|
+
- feat: add pulsating blue border automation overlay to browser agent by
|
|
441
|
+
@kunal-10-cloud in
|
|
442
|
+
[#21173](https://github.com/google-gemini/gemini-cli/pull/21173)
|
|
443
|
+
- Add extensionRegistryURI setting to change where the registry is read from by
|
|
444
|
+
@kevinjwang1 in
|
|
445
|
+
[#20463](https://github.com/google-gemini/gemini-cli/pull/20463)
|
|
446
|
+
- fix: patch gaxios v7 Array.toString() stream corruption by @gsquared94 in
|
|
447
|
+
[#21884](https://github.com/google-gemini/gemini-cli/pull/21884)
|
|
448
|
+
- fix: prevent hangs in non-interactive mode and improve agent guidance by
|
|
449
|
+
@cocosheng-g in
|
|
450
|
+
[#20893](https://github.com/google-gemini/gemini-cli/pull/20893)
|
|
451
|
+
- Add ExtensionDetails dialog and support install by @chrstnb in
|
|
452
|
+
[#20845](https://github.com/google-gemini/gemini-cli/pull/20845)
|
|
453
|
+
- chore/release: bump version to 0.34.0-nightly.20260310.4653b126f by
|
|
454
|
+
@gemini-cli-robot in
|
|
455
|
+
[#21816](https://github.com/google-gemini/gemini-cli/pull/21816)
|
|
456
|
+
- Changelog for v0.33.0-preview.13 by @gemini-cli-robot in
|
|
457
|
+
[#21927](https://github.com/google-gemini/gemini-cli/pull/21927)
|
|
458
|
+
- fix(cli): stabilize prompt layout to prevent jumping when typing by
|
|
459
|
+
@NTaylorMullen in
|
|
460
|
+
[#21081](https://github.com/google-gemini/gemini-cli/pull/21081)
|
|
461
|
+
- fix: preserve prompt text when cancelling streaming by @Nixxx19 in
|
|
462
|
+
[#21103](https://github.com/google-gemini/gemini-cli/pull/21103)
|
|
463
|
+
- fix: robust UX for remote agent errors by @Shyam-Raghuwanshi in
|
|
464
|
+
[#20307](https://github.com/google-gemini/gemini-cli/pull/20307)
|
|
465
|
+
- feat: implement background process logging and cleanup by @galz10 in
|
|
466
|
+
[#21189](https://github.com/google-gemini/gemini-cli/pull/21189)
|
|
467
|
+
- Changelog for v0.33.0-preview.14 by @gemini-cli-robot in
|
|
468
|
+
[#21938](https://github.com/google-gemini/gemini-cli/pull/21938)
|
|
206
469
|
|
|
207
470
|
**Full Changelog**:
|
|
208
|
-
https://github.com/google-gemini/gemini-cli/compare/v0.
|
|
471
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.33.0-preview.15...v0.34.0-preview.1
|