@google/gemini-cli-core 0.44.0 → 0.45.0-nightly.20260528.g5cac7c10f
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 +15 -0
- package/dist/docs/changelogs/latest.md +198 -262
- package/dist/docs/changelogs/preview.md +202 -181
- package/dist/docs/reference/configuration.md +24 -29
- package/dist/google-gemini-cli-core-0.45.0-nightly.20260521.g854f811be.tgz +0 -0
- package/dist/src/availability/policyCatalog.js +1 -1
- package/dist/src/availability/policyCatalog.js.map +1 -1
- package/dist/src/availability/policyCatalog.test.js +0 -2
- package/dist/src/availability/policyCatalog.test.js.map +1 -1
- package/dist/src/availability/policyHelpers.js +1 -5
- package/dist/src/availability/policyHelpers.js.map +1 -1
- package/dist/src/availability/policyHelpers.test.js +2 -4
- package/dist/src/availability/policyHelpers.test.js.map +1 -1
- package/dist/src/code_assist/experiments/flagNames.d.ts +0 -1
- package/dist/src/code_assist/experiments/flagNames.js +0 -1
- package/dist/src/code_assist/experiments/flagNames.js.map +1 -1
- package/dist/src/config/config.d.ts +0 -13
- package/dist/src/config/config.js +4 -27
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/config.test.js +0 -10
- package/dist/src/config/config.test.js.map +1 -1
- package/dist/src/config/defaultModelConfigs.js +19 -25
- package/dist/src/config/defaultModelConfigs.js.map +1 -1
- package/dist/src/config/models.d.ts +6 -6
- package/dist/src/config/models.js +30 -27
- package/dist/src/config/models.js.map +1 -1
- package/dist/src/config/models.test.js +81 -54
- package/dist/src/config/models.test.js.map +1 -1
- package/dist/src/context/chatCompressionService.js +6 -4
- package/dist/src/context/chatCompressionService.js.map +1 -1
- package/dist/src/context/config/configLoader.js +4 -1
- package/dist/src/context/config/configLoader.js.map +1 -1
- package/dist/src/context/config/profiles.d.ts +5 -0
- package/dist/src/context/config/profiles.js +84 -0
- package/dist/src/context/config/profiles.js.map +1 -1
- package/dist/src/context/config/types.d.ts +8 -1
- package/dist/src/context/contextManager.d.ts +9 -25
- package/dist/src/context/contextManager.incremental.test.d.ts +6 -0
- package/dist/src/context/contextManager.incremental.test.js +101 -0
- package/dist/src/context/contextManager.incremental.test.js.map +1 -0
- package/dist/src/context/contextManager.js +190 -145
- package/dist/src/context/contextManager.js.map +1 -1
- package/dist/src/context/contextManager.test.js +41 -3
- package/dist/src/context/contextManager.test.js.map +1 -1
- package/dist/src/context/eventBus.d.ts +7 -0
- package/dist/src/context/eventBus.js +6 -0
- package/dist/src/context/eventBus.js.map +1 -1
- package/dist/src/context/graph/render.js +19 -2
- package/dist/src/context/graph/render.js.map +1 -1
- package/dist/src/context/graph/render.test.js +10 -3
- package/dist/src/context/graph/render.test.js.map +1 -1
- package/dist/src/context/graph/toGraph.js +5 -4
- package/dist/src/context/graph/toGraph.js.map +1 -1
- package/dist/src/context/pipeline/orchestrator.d.ts +2 -1
- package/dist/src/context/pipeline/orchestrator.js +4 -4
- package/dist/src/context/pipeline/orchestrator.js.map +1 -1
- package/dist/src/context/pipeline/orchestrator.test.js +8 -4
- package/dist/src/context/pipeline/orchestrator.test.js.map +1 -1
- package/dist/src/context/system-tests/powerUserLifecycle.test.d.ts +6 -0
- package/dist/src/context/system-tests/powerUserLifecycle.test.js +91 -0
- package/dist/src/context/system-tests/powerUserLifecycle.test.js.map +1 -0
- package/dist/src/core/client.js +1 -1
- package/dist/src/core/client.js.map +1 -1
- package/dist/src/core/contentGenerator.js +1 -3
- package/dist/src/core/contentGenerator.js.map +1 -1
- package/dist/src/core/geminiChat.js +3 -4
- package/dist/src/core/geminiChat.js.map +1 -1
- package/dist/src/core/prompts.test.js +5 -5
- package/dist/src/core/prompts.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/prompts/promptProvider.js +2 -2
- package/dist/src/prompts/promptProvider.js.map +1 -1
- package/dist/src/routing/strategies/approvalModeStrategy.js +3 -4
- package/dist/src/routing/strategies/approvalModeStrategy.js.map +1 -1
- package/dist/src/routing/strategies/approvalModeStrategy.test.js +0 -1
- package/dist/src/routing/strategies/approvalModeStrategy.test.js.map +1 -1
- package/dist/src/routing/strategies/classifierStrategy.js +10 -4
- package/dist/src/routing/strategies/classifierStrategy.js.map +1 -1
- package/dist/src/routing/strategies/classifierStrategy.test.js +62 -1
- package/dist/src/routing/strategies/classifierStrategy.test.js.map +1 -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/fallbackStrategy.js +1 -1
- package/dist/src/routing/strategies/fallbackStrategy.js.map +1 -1
- package/dist/src/routing/strategies/gemmaClassifierStrategy.js +3 -4
- package/dist/src/routing/strategies/gemmaClassifierStrategy.js.map +1 -1
- package/dist/src/routing/strategies/gemmaClassifierStrategy.test.js +0 -1
- package/dist/src/routing/strategies/gemmaClassifierStrategy.test.js.map +1 -1
- package/dist/src/routing/strategies/numericalClassifierStrategy.js +10 -3
- package/dist/src/routing/strategies/numericalClassifierStrategy.js.map +1 -1
- package/dist/src/routing/strategies/numericalClassifierStrategy.test.js +67 -1
- package/dist/src/routing/strategies/numericalClassifierStrategy.test.js.map +1 -1
- package/dist/src/routing/strategies/overrideStrategy.js +1 -1
- package/dist/src/routing/strategies/overrideStrategy.js.map +1 -1
- package/dist/src/sandbox/utils/commandUtils.js +1 -5
- package/dist/src/sandbox/utils/commandUtils.js.map +1 -1
- package/dist/src/scheduler/scheduler.js +4 -0
- package/dist/src/scheduler/scheduler.js.map +1 -1
- package/dist/src/scheduler/scheduler_parallel.test.js +37 -0
- package/dist/src/scheduler/scheduler_parallel.test.js.map +1 -1
- package/dist/src/services/modelConfigService.js +1 -5
- package/dist/src/services/modelConfigService.js.map +1 -1
- package/dist/src/services/shellExecutionService.js +6 -37
- package/dist/src/services/shellExecutionService.js.map +1 -1
- package/dist/src/services/shellExecutionService.test.js +4 -4
- package/dist/src/services/shellExecutionService.test.js.map +1 -1
- package/dist/src/services/test-data/resolved-aliases-retry.golden.json +19 -7
- package/dist/src/services/test-data/resolved-aliases.golden.json +19 -7
- package/dist/src/utils/sessionUtils.js +5 -2
- package/dist/src/utils/sessionUtils.js.map +1 -1
- package/dist/src/utils/sessionUtils.test.js +26 -0
- package/dist/src/utils/sessionUtils.test.js.map +1 -1
- package/dist/src/utils/shell-utils.d.ts +1 -19
- package/dist/src/utils/shell-utils.js +4 -42
- package/dist/src/utils/shell-utils.js.map +1 -1
- package/dist/src/utils/shell-utils.test.js +1 -44
- package/dist/src/utils/shell-utils.test.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -18,6 +18,21 @@ on GitHub.
|
|
|
18
18
|
| [Preview](preview.md) | Experimental features ready for early feedback. |
|
|
19
19
|
| [Stable](latest.md) | Stable, recommended for general use. |
|
|
20
20
|
|
|
21
|
+
## Announcements: v0.43.0 - 2026-05-22
|
|
22
|
+
|
|
23
|
+
- **Surgical Code Edits:** Steered Gemini models to prefer the `edit` tool for
|
|
24
|
+
surgical modifications, improving speed and precision
|
|
25
|
+
([#26480](https://github.com/google-gemini/gemini-cli/pull/26480) by
|
|
26
|
+
@aishaneeshah).
|
|
27
|
+
- **Session Export and Import:** Added the ability to export sessions to files
|
|
28
|
+
and import them via a new flag, facilitating session portability
|
|
29
|
+
([#26514](https://github.com/google-gemini/gemini-cli/pull/26514) by
|
|
30
|
+
@cocosheng-g).
|
|
31
|
+
- **Adaptive Token Estimation:** Introduced an adaptive token calculator for
|
|
32
|
+
more accurate content size estimation, enhancing context management efficiency
|
|
33
|
+
([#26888](https://github.com/google-gemini/gemini-cli/pull/26888) by
|
|
34
|
+
@joshualitt).
|
|
35
|
+
|
|
21
36
|
## Announcements: v0.42.0 - 2026-05-12
|
|
22
37
|
|
|
23
38
|
- **Auto Memory Inbox:** Introduced a new inbox flow for Auto Memory with a
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Latest stable release: v0.
|
|
1
|
+
# Latest stable release: v0.43.0
|
|
2
2
|
|
|
3
|
-
Released: May
|
|
3
|
+
Released: May 22, 2026
|
|
4
4
|
|
|
5
5
|
For most users, our latest stable release is the recommended release. Install
|
|
6
6
|
the latest stable version with:
|
|
@@ -11,272 +11,208 @@ npm install -g @google/gemini-cli
|
|
|
11
11
|
|
|
12
12
|
## Highlights
|
|
13
13
|
|
|
14
|
-
- **
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
- **
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
14
|
+
- **Surgical Code Edits:** Gemini models are now steered to prefer the `edit`
|
|
15
|
+
tool for surgical modifications, leading to faster and more precise code
|
|
16
|
+
updates.
|
|
17
|
+
- **Session Portability:** Introduced features to export active sessions to
|
|
18
|
+
files and import them later via a CLI flag, allowing for easier session
|
|
19
|
+
sharing and resumption.
|
|
20
|
+
- **Adaptive Token Estimation:** A new adaptive token calculator provides more
|
|
21
|
+
accurate content size measurements, optimizing context window usage and
|
|
22
|
+
reducing API overhead.
|
|
23
|
+
- **Improved UI Rendering:** Core tools now utilize native `ToolDisplay`
|
|
24
|
+
properties, fixing various UI rendering issues and improving the experience in
|
|
25
|
+
ACP-compliant IDEs.
|
|
26
|
+
- **Enhanced Agent Architecture:** Introduced `LocalSubagentProtocol` and
|
|
27
|
+
`RemoteSubagentProtocol` behind a unified `AgentProtocol`, laying the
|
|
28
|
+
groundwork for more complex multi-agent interactions.
|
|
26
29
|
|
|
27
30
|
## What's Changed
|
|
28
31
|
|
|
29
|
-
-
|
|
30
|
-
@
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
[#
|
|
34
|
-
- fix(
|
|
35
|
-
by @cocosheng-g in
|
|
36
|
-
[#26130](https://github.com/google-gemini/gemini-cli/pull/26130)
|
|
37
|
-
- fix(cli): handle DECKPAM keypad Enter sequences in terminal by @Gitanaskhan26
|
|
38
|
-
in [#26092](https://github.com/google-gemini/gemini-cli/pull/26092)
|
|
39
|
-
- docs(cli): point plan-mode session retention to actual /settings labels by
|
|
40
|
-
@ifitisit in [#25978](https://github.com/google-gemini/gemini-cli/pull/25978)
|
|
41
|
-
- fix(core): add missing oauth fields support in subagent parsing by
|
|
42
|
-
@abhipatel12 in
|
|
43
|
-
[#26141](https://github.com/google-gemini/gemini-cli/pull/26141)
|
|
44
|
-
- fix(core): disconnect extension-backed MCP clients in stopExtension by
|
|
45
|
-
@cocosheng-g in
|
|
46
|
-
[#26136](https://github.com/google-gemini/gemini-cli/pull/26136)
|
|
47
|
-
- Update documentation workflows with workspace trust by @g-samroberts in
|
|
48
|
-
[#26150](https://github.com/google-gemini/gemini-cli/pull/26150)
|
|
49
|
-
- refactor(acp): modularize monolithic acpClient into specialized files by
|
|
50
|
-
@sripasg in [#26143](https://github.com/google-gemini/gemini-cli/pull/26143)
|
|
51
|
-
- test: fix failures due to antigravity environment leakage by @adamfweidman in
|
|
52
|
-
[#26162](https://github.com/google-gemini/gemini-cli/pull/26162)
|
|
53
|
-
- fix(core): add explicit empty log guard in A2A pushMessage by @adamfweidman in
|
|
54
|
-
[#26198](https://github.com/google-gemini/gemini-cli/pull/26198)
|
|
55
|
-
- feat(cli): add --delete flag to /exit command for session deletion by
|
|
56
|
-
@AbdulTawabJuly in
|
|
57
|
-
[#19332](https://github.com/google-gemini/gemini-cli/pull/19332)
|
|
58
|
-
- test(core): add regression test for issue for ToolConfirmationResponse by
|
|
59
|
-
@Adib234 in [#26194](https://github.com/google-gemini/gemini-cli/pull/26194)
|
|
60
|
-
- Add the ability to @ mention the gemini robot. by @gundermanc in
|
|
61
|
-
[#26207](https://github.com/google-gemini/gemini-cli/pull/26207)
|
|
62
|
-
- test(evals): add EvalMetadata JSDoc annotations to older tests by @akh64bit in
|
|
63
|
-
[#26147](https://github.com/google-gemini/gemini-cli/pull/26147)
|
|
64
|
-
- fix(core): reduce default API timeout to 60s and enable retries for undici
|
|
65
|
-
timeouts by @Adib234 in
|
|
66
|
-
[#26191](https://github.com/google-gemini/gemini-cli/pull/26191)
|
|
67
|
-
- fix(core): distinguish fallback chains and fix maxAttempts for auto vs
|
|
68
|
-
explicit model selection by @adamfweidman in
|
|
69
|
-
[#26163](https://github.com/google-gemini/gemini-cli/pull/26163)
|
|
70
|
-
- fix(cli): handle InvalidStream event gracefully without throwing by
|
|
71
|
-
@adamfweidman in
|
|
72
|
-
[#26218](https://github.com/google-gemini/gemini-cli/pull/26218)
|
|
73
|
-
- ci(github-actions): switch to github app token and fix bot self-trigger by
|
|
74
|
-
@gundermanc in
|
|
75
|
-
[#26223](https://github.com/google-gemini/gemini-cli/pull/26223)
|
|
76
|
-
- Respect logPrompts flag for logging sensitive fields by @lp-peg in
|
|
77
|
-
[#26153](https://github.com/google-gemini/gemini-cli/pull/26153)
|
|
78
|
-
- fix: correct API key validation logic in handleApiKeySubmit by
|
|
79
|
-
@martin-hsu-test in
|
|
80
|
-
[#25453](https://github.com/google-gemini/gemini-cli/pull/25453)
|
|
81
|
-
- fix(agent): prevent exit_plan_mode from being called via shell by
|
|
32
|
+
- feat(core): steer model to use edit tool for surgical edits, fix a typo by
|
|
33
|
+
@aishaneeshah in
|
|
34
|
+
[#26480](https://github.com/google-gemini/gemini-cli/pull/26480)
|
|
35
|
+
- docs: clarify Auto Memory proposes memory updates and skills by @SandyTao520
|
|
36
|
+
in [#26527](https://github.com/google-gemini/gemini-cli/pull/26527)
|
|
37
|
+
- fix(core): reject numeric project IDs in GOOGLE_CLOUD_PROJECT (#24695) by
|
|
82
38
|
@Abhijit-2592 in
|
|
83
|
-
[#
|
|
84
|
-
-
|
|
85
|
-
|
|
86
|
-
[#
|
|
87
|
-
-
|
|
88
|
-
in [#
|
|
89
|
-
-
|
|
90
|
-
[#
|
|
91
|
-
-
|
|
92
|
-
|
|
93
|
-
- fix(cli):
|
|
94
|
-
@
|
|
95
|
-
[#
|
|
96
|
-
-
|
|
97
|
-
[#
|
|
98
|
-
- fix(
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
-
|
|
115
|
-
|
|
116
|
-
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
-
|
|
120
|
-
|
|
121
|
-
-
|
|
122
|
-
|
|
123
|
-
-
|
|
39
|
+
[#26532](https://github.com/google-gemini/gemini-cli/pull/26532)
|
|
40
|
+
- fix(core): remove unsafe type assertion suppressions in error utils by
|
|
41
|
+
@himanshu748 in
|
|
42
|
+
[#19881](https://github.com/google-gemini/gemini-cli/pull/19881)
|
|
43
|
+
- fix(core): allow redirection in YOLO and AUTO_EDIT modes without sandboxing by
|
|
44
|
+
@galz10 in [#26542](https://github.com/google-gemini/gemini-cli/pull/26542)
|
|
45
|
+
- ci(release): build and attach unsigned macOS binaries to releases by @ruomengz
|
|
46
|
+
in [#26462](https://github.com/google-gemini/gemini-cli/pull/26462)
|
|
47
|
+
- fix(core): Fix chat corruption bug in context manager. by @joshualitt in
|
|
48
|
+
[#26534](https://github.com/google-gemini/gemini-cli/pull/26534)
|
|
49
|
+
- fix(cli): provide JSON output for AgentExecutionStopped in non-interactive
|
|
50
|
+
mode by @cynthialong0-0 in
|
|
51
|
+
[#26504](https://github.com/google-gemini/gemini-cli/pull/26504)
|
|
52
|
+
- feat(evals): add shell command safety evals by @akh64bit in
|
|
53
|
+
[#26528](https://github.com/google-gemini/gemini-cli/pull/26528)
|
|
54
|
+
- fix(core): handle invalid custom plans directory gracefully by @cynthialong0-0
|
|
55
|
+
in [#26560](https://github.com/google-gemini/gemini-cli/pull/26560)
|
|
56
|
+
- fix(acp): move tool explanation from thought stream to tool call content by
|
|
57
|
+
@sripasg in [#26554](https://github.com/google-gemini/gemini-cli/pull/26554)
|
|
58
|
+
- fix(a2a-server): Resolve race condition in tool completion waiting by @kschaab
|
|
59
|
+
in [#26568](https://github.com/google-gemini/gemini-cli/pull/26568)
|
|
60
|
+
- fix(cli): randomize sandbox container names by @Kkartik14 in
|
|
61
|
+
[#26014](https://github.com/google-gemini/gemini-cli/pull/26014)
|
|
62
|
+
- fix(core): Fix hysteresis in async context management pipelines. by
|
|
63
|
+
@joshualitt in
|
|
64
|
+
[#26452](https://github.com/google-gemini/gemini-cli/pull/26452)
|
|
65
|
+
- Tighten private Auto Memory patch allowlist by @SandyTao520 in
|
|
66
|
+
[#26535](https://github.com/google-gemini/gemini-cli/pull/26535)
|
|
67
|
+
- fix(cli): hide read-only settings scopes by @cvan20191 in
|
|
68
|
+
[#26249](https://github.com/google-gemini/gemini-cli/pull/26249)
|
|
69
|
+
- fix(ci): preserve executable bit for mac binaries by @ruomengz in
|
|
70
|
+
[#26600](https://github.com/google-gemini/gemini-cli/pull/26600)
|
|
71
|
+
- fix(cli): improve mcp list UX in untrusted folders by @Adib234 in
|
|
72
|
+
[#26457](https://github.com/google-gemini/gemini-cli/pull/26457)
|
|
73
|
+
- fix(core): prevent silent hang during OAuth auth on headless Linux by
|
|
74
|
+
@RhysSullivan in
|
|
75
|
+
[#26571](https://github.com/google-gemini/gemini-cli/pull/26571)
|
|
76
|
+
- Changelog for v0.42.0-preview.0 by @gemini-cli-robot in
|
|
77
|
+
[#26537](https://github.com/google-gemini/gemini-cli/pull/26537)
|
|
78
|
+
- ci: fix Argument list too long in triage workflows by @cocosheng-g in
|
|
79
|
+
[#26603](https://github.com/google-gemini/gemini-cli/pull/26603)
|
|
80
|
+
- refactor(cli): migrate core tools to native ToolDisplay property and fix UI
|
|
81
|
+
rendering by @mbleigh in
|
|
82
|
+
[#25186](https://github.com/google-gemini/gemini-cli/pull/25186)
|
|
83
|
+
- don't wrap args unnecessarily by @scidomino in
|
|
84
|
+
[#26599](https://github.com/google-gemini/gemini-cli/pull/26599)
|
|
85
|
+
- fix(core): preserve system PATH in Git environment to fix ENOENT (#25034) by
|
|
124
86
|
@cocosheng-g in
|
|
125
|
-
[#
|
|
126
|
-
-
|
|
127
|
-
|
|
128
|
-
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
-
|
|
137
|
-
|
|
138
|
-
[#
|
|
139
|
-
- fix
|
|
140
|
-
@
|
|
141
|
-
|
|
142
|
-
-
|
|
143
|
-
|
|
144
|
-
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
-
|
|
148
|
-
[#
|
|
149
|
-
- Add
|
|
150
|
-
[#
|
|
151
|
-
-
|
|
152
|
-
[#
|
|
153
|
-
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
-
|
|
157
|
-
|
|
158
|
-
-
|
|
159
|
-
|
|
160
|
-
[#
|
|
161
|
-
- fix(
|
|
162
|
-
[#
|
|
163
|
-
- fix(
|
|
164
|
-
[#
|
|
165
|
-
- fix
|
|
166
|
-
|
|
167
|
-
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
[#
|
|
179
|
-
- fix(
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
[#
|
|
185
|
-
- fix(
|
|
186
|
-
|
|
187
|
-
- fix(
|
|
188
|
-
[#
|
|
189
|
-
-
|
|
190
|
-
[#
|
|
191
|
-
- fix(
|
|
192
|
-
|
|
193
|
-
-
|
|
194
|
-
|
|
195
|
-
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
[#
|
|
200
|
-
-
|
|
201
|
-
[#
|
|
202
|
-
-
|
|
203
|
-
@
|
|
204
|
-
-
|
|
205
|
-
@
|
|
206
|
-
-
|
|
207
|
-
|
|
208
|
-
-
|
|
209
|
-
|
|
210
|
-
-
|
|
211
|
-
|
|
212
|
-
-
|
|
87
|
+
[#26587](https://github.com/google-gemini/gemini-cli/pull/26587)
|
|
88
|
+
- fix(routing): fix resolveClassifierModel argument mismatch in
|
|
89
|
+
ApprovalModeStrategy by @danielweis in
|
|
90
|
+
[#26658](https://github.com/google-gemini/gemini-cli/pull/26658)
|
|
91
|
+
- docs: add vi mode shortcuts and clarify MCP/custom sandbox setup by
|
|
92
|
+
@chrisjcthomas in
|
|
93
|
+
[#23853](https://github.com/google-gemini/gemini-cli/pull/23853)
|
|
94
|
+
- fix(ux): fixed issue with transcribed text not showing after releasing space
|
|
95
|
+
by @devr0306 in
|
|
96
|
+
[#26609](https://github.com/google-gemini/gemini-cli/pull/26609)
|
|
97
|
+
- ci: fix json parsing in scheduled triage workflow by @cocosheng-g in
|
|
98
|
+
[#26656](https://github.com/google-gemini/gemini-cli/pull/26656)
|
|
99
|
+
- fix(cli): hide /memory add subcommand when memoryV2 is enabled by @SandyTao520
|
|
100
|
+
in [#26605](https://github.com/google-gemini/gemini-cli/pull/26605)
|
|
101
|
+
- fix: prevent false command conflicts when launching from home directory by
|
|
102
|
+
@Br1an67 in [#23069](https://github.com/google-gemini/gemini-cli/pull/23069)
|
|
103
|
+
- fix(core): cache model routing decision in LocalAgentExecutor by @akh64bit in
|
|
104
|
+
[#26548](https://github.com/google-gemini/gemini-cli/pull/26548)
|
|
105
|
+
- Changelog for v0.42.0-preview.2 by @gemini-cli-robot in
|
|
106
|
+
[#26597](https://github.com/google-gemini/gemini-cli/pull/26597)
|
|
107
|
+
- skip broken test by @scidomino in
|
|
108
|
+
[#26705](https://github.com/google-gemini/gemini-cli/pull/26705)
|
|
109
|
+
- feat: export session to file and import via flag by @cocosheng-g in
|
|
110
|
+
[#26514](https://github.com/google-gemini/gemini-cli/pull/26514)
|
|
111
|
+
- Feat: Add Machine Hostname to CLI interface by @M-DEV-1 in
|
|
112
|
+
[#25637](https://github.com/google-gemini/gemini-cli/pull/25637)
|
|
113
|
+
- docs(extensions): refactor releasing guide and add update mechanisms by
|
|
114
|
+
@ruomengz in [#26595](https://github.com/google-gemini/gemini-cli/pull/26595)
|
|
115
|
+
- fix(ci): fix maintainer identification in lifecycle manager by @gundermanc in
|
|
116
|
+
[#26706](https://github.com/google-gemini/gemini-cli/pull/26706)
|
|
117
|
+
- fix(ui): added quotes around session id in resume tip by @devr0306 in
|
|
118
|
+
[#26669](https://github.com/google-gemini/gemini-cli/pull/26669)
|
|
119
|
+
- Changelog for v0.41.0 by @gemini-cli-robot in
|
|
120
|
+
[#26670](https://github.com/google-gemini/gemini-cli/pull/26670)
|
|
121
|
+
- refactor(core): agent session protocol changes by @adamfweidman in
|
|
122
|
+
[#26661](https://github.com/google-gemini/gemini-cli/pull/26661)
|
|
123
|
+
- fix(context): implement loose boundary policy for gc backstop. by @joshualitt
|
|
124
|
+
in [#26594](https://github.com/google-gemini/gemini-cli/pull/26594)
|
|
125
|
+
- fix(core): throw explicit error on dropped tool responses by @aishaneeshah in
|
|
126
|
+
[#26668](https://github.com/google-gemini/gemini-cli/pull/26668)
|
|
127
|
+
- fix: resolve "function response turn must come immediately after function
|
|
128
|
+
call" error by @danielweis in
|
|
129
|
+
[#26691](https://github.com/google-gemini/gemini-cli/pull/26691)
|
|
130
|
+
- fix(core): resolve parallel tool call streaming ID collision by @aishaneeshah
|
|
131
|
+
in [#26646](https://github.com/google-gemini/gemini-cli/pull/26646)
|
|
132
|
+
- feat(core): add LocalSubagentProtocol behind AgentProtocol by @adamfweidman in
|
|
133
|
+
[#25302](https://github.com/google-gemini/gemini-cli/pull/25302)
|
|
134
|
+
- fix(cli): remove noisy theme registration logs from terminal by @JayadityaGit
|
|
135
|
+
in [#25858](https://github.com/google-gemini/gemini-cli/pull/25858)
|
|
136
|
+
- ci: implement codebase-aware effort level triage by @cocosheng-g in
|
|
137
|
+
[#26666](https://github.com/google-gemini/gemini-cli/pull/26666)
|
|
138
|
+
- feat(acp/core): prefix tool call IDs with tool names to support tool rendering
|
|
139
|
+
in ACP compliant IDEs. by @sripasg in
|
|
140
|
+
[#26676](https://github.com/google-gemini/gemini-cli/pull/26676)
|
|
141
|
+
- fix(mcp): treat GET 404 as 405 in StreamableHTTPClientTransport by @krishdef7
|
|
142
|
+
in [#24847](https://github.com/google-gemini/gemini-cli/pull/24847)
|
|
143
|
+
- feat(core): add RemoteSubagentProtocol behind AgentProtocol by @adamfweidman
|
|
144
|
+
in [#25303](https://github.com/google-gemini/gemini-cli/pull/25303)
|
|
145
|
+
- feat(context): Improvements to the snapshotter. by @joshualitt in
|
|
146
|
+
[#26655](https://github.com/google-gemini/gemini-cli/pull/26655)
|
|
147
|
+
- fix(context): Change snapshotter model config. by @joshualitt in
|
|
148
|
+
[#26745](https://github.com/google-gemini/gemini-cli/pull/26745)
|
|
149
|
+
- fix(cli): allow installing extensions from ssh repo by @danielmundi in
|
|
150
|
+
[#26274](https://github.com/google-gemini/gemini-cli/pull/26274)
|
|
151
|
+
- fix(cli): prevent duplicate SessionStart systemMessage render by @dimssu in
|
|
152
|
+
[#25827](https://github.com/google-gemini/gemini-cli/pull/25827)
|
|
153
|
+
- fix(cli/acp): prevent infinite thought loop in ACP mode by disablig
|
|
154
|
+
nextSpeakerCheck by @sripasg in
|
|
155
|
+
[#26874](https://github.com/google-gemini/gemini-cli/pull/26874)
|
|
156
|
+
- fix(cli): use static tool name in confirmation prompt to avoid parsing errors
|
|
157
|
+
by @cocosheng-g in
|
|
158
|
+
[#26866](https://github.com/google-gemini/gemini-cli/pull/26866)
|
|
159
|
+
- fix(routing): Refactor tool turn handling for the conversation history in
|
|
160
|
+
NumericalClassifierStrategy to prevent 400 Bad Request by @danielweis in
|
|
161
|
+
[#26761](https://github.com/google-gemini/gemini-cli/pull/26761)
|
|
162
|
+
- fix(core): handle malformed projects.json in ProjectRegistry by @cocosheng-g
|
|
163
|
+
in [#26885](https://github.com/google-gemini/gemini-cli/pull/26885)
|
|
164
|
+
- fix(ui): added a gutter width to the input prompt width calculation by
|
|
165
|
+
@devr0306 in [#26882](https://github.com/google-gemini/gemini-cli/pull/26882)
|
|
166
|
+
- fix: prevent EISDIR crash when customIgnoreFilePaths contains directories
|
|
167
|
+
(#19868) by @suhaan-24 in
|
|
168
|
+
[#19898](https://github.com/google-gemini/gemini-cli/pull/19898)
|
|
169
|
+
- revert 6b9b778d821728427eea07b1b97ba07378137d0b by @danielweis in
|
|
170
|
+
[#26893](https://github.com/google-gemini/gemini-cli/pull/26893)
|
|
171
|
+
- Fix/vscode run current file ts by @Neil-N4 in
|
|
172
|
+
[#22894](https://github.com/google-gemini/gemini-cli/pull/22894)
|
|
173
|
+
- Allow Enter to select session while in search mode in /resume by @f-pieri in
|
|
174
|
+
[#21523](https://github.com/google-gemini/gemini-cli/pull/21523)
|
|
175
|
+
- fix(core): ignore .pak and .rpa game archive formats by default by @Eswar809
|
|
176
|
+
in [#26884](https://github.com/google-gemini/gemini-cli/pull/26884)
|
|
177
|
+
- fix(cli): enable adk non-interactive session by @adamfweidman in
|
|
178
|
+
[#26895](https://github.com/google-gemini/gemini-cli/pull/26895)
|
|
179
|
+
- fix(cli): restore resume for legacy sessions by @KurodaKayn in
|
|
180
|
+
[#26577](https://github.com/google-gemini/gemini-cli/pull/26577)
|
|
181
|
+
- fix: respect explicit model selection after Flash quota exhaustion (#26759) by
|
|
213
182
|
@cocosheng-g in
|
|
214
|
-
[#
|
|
215
|
-
-
|
|
216
|
-
|
|
217
|
-
-
|
|
218
|
-
|
|
219
|
-
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
[#
|
|
223
|
-
-
|
|
224
|
-
|
|
225
|
-
-
|
|
183
|
+
[#26872](https://github.com/google-gemini/gemini-cli/pull/26872)
|
|
184
|
+
- feat(context): Introduce adaptive token calculator to more accurately
|
|
185
|
+
calculate content sizes. by @joshualitt in
|
|
186
|
+
[#26888](https://github.com/google-gemini/gemini-cli/pull/26888)
|
|
187
|
+
- chore: update checkout action configuration in workflows by @galz10 in
|
|
188
|
+
[#26897](https://github.com/google-gemini/gemini-cli/pull/26897)
|
|
189
|
+
- fix (telemetry): inject quota_project_id to prevent fallback to default oauth
|
|
190
|
+
client by @TNTCompany in
|
|
191
|
+
[#26698](https://github.com/google-gemini/gemini-cli/pull/26698)
|
|
192
|
+
- Exclude extension context from skill extraction agent by @SandyTao520 in
|
|
193
|
+
[#26879](https://github.com/google-gemini/gemini-cli/pull/26879)
|
|
194
|
+
- Enable NumericalRouter when using dynamic model configs by @kevinjwang1 in
|
|
195
|
+
[#26929](https://github.com/google-gemini/gemini-cli/pull/26929)
|
|
196
|
+
- ci: actively triage missing priority labels and intelligently clean up
|
|
197
|
+
conflicting labels by @cocosheng-g in
|
|
198
|
+
[#26865](https://github.com/google-gemini/gemini-cli/pull/26865)
|
|
199
|
+
- refactor(core): introduce SubagentState enum for progress by @adamfweidman in
|
|
200
|
+
[#26934](https://github.com/google-gemini/gemini-cli/pull/26934)
|
|
201
|
+
- fix(ci): replace brittle --no-tag with explicit staging-tmp tag by @scidomino
|
|
202
|
+
in [#26940](https://github.com/google-gemini/gemini-cli/pull/26940)
|
|
203
|
+
- Incremental refactor repo agent towards skills-based composition by
|
|
204
|
+
@gundermanc in
|
|
205
|
+
[#26717](https://github.com/google-gemini/gemini-cli/pull/26717)
|
|
206
|
+
- fix(ui): fixed line wrap padding for selection lists by @devr0306 in
|
|
207
|
+
[#26944](https://github.com/google-gemini/gemini-cli/pull/26944)
|
|
208
|
+
- fix(core): update read_file schema for v1 compatibility (#22183) by
|
|
226
209
|
@cocosheng-g in
|
|
227
|
-
[#
|
|
228
|
-
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
[#
|
|
233
|
-
- feat: add ignoreLocalEnv setting and --ignore-env flag (#2493) by @cocosheng-g
|
|
234
|
-
in [#26445](https://github.com/google-gemini/gemini-cli/pull/26445)
|
|
235
|
-
- docs(sdk): add JSDoc to all exported interfaces and types by @fauzan171 in
|
|
236
|
-
[#26277](https://github.com/google-gemini/gemini-cli/pull/26277)
|
|
237
|
-
- feat(cli): improve /agents refresh logging by @cocosheng-g in
|
|
238
|
-
[#26442](https://github.com/google-gemini/gemini-cli/pull/26442)
|
|
239
|
-
- Fix: make Dockerfile self-contained with multi-stage build by @Famous077 in
|
|
240
|
-
[#24277](https://github.com/google-gemini/gemini-cli/pull/24277)
|
|
241
|
-
- fix(core): filter unsupported multimodal types from tool responses by
|
|
242
|
-
@aishaneeshah in
|
|
243
|
-
[#26352](https://github.com/google-gemini/gemini-cli/pull/26352)
|
|
244
|
-
- fix(core): properly format markdown in AskUser tool by unescaping newlines by
|
|
245
|
-
@Adib234 in [#26349](https://github.com/google-gemini/gemini-cli/pull/26349)
|
|
246
|
-
- feat(bot): add actions spend metric script by @gundermanc in
|
|
247
|
-
[#26463](https://github.com/google-gemini/gemini-cli/pull/26463)
|
|
248
|
-
- feat(cli): add /bug-memory command and auto-capture heap snapshot in /bug by
|
|
249
|
-
@Anjaligarhwal in
|
|
250
|
-
[#25639](https://github.com/google-gemini/gemini-cli/pull/25639)
|
|
251
|
-
- fix(cli): make SkillInboxDialog fit and scroll in alternate buffer by
|
|
252
|
-
@SandyTao520 in
|
|
253
|
-
[#26455](https://github.com/google-gemini/gemini-cli/pull/26455)
|
|
254
|
-
- Robust Scale-Safe Lifecycle Consolidation by @gemini-cli-robot in
|
|
255
|
-
[#26355](https://github.com/google-gemini/gemini-cli/pull/26355)
|
|
256
|
-
- fix(ci): respect exempt labels when closing stale items by @gundermanc in
|
|
257
|
-
[#26475](https://github.com/google-gemini/gemini-cli/pull/26475)
|
|
258
|
-
- fix(cli): use os.homedir() for home directory warning check by @TirthNaik-99
|
|
259
|
-
in [#25890](https://github.com/google-gemini/gemini-cli/pull/25890)
|
|
260
|
-
- fix(a2a-server): resolve tool approval race condition and improve status
|
|
261
|
-
reporting by @kschaab in
|
|
262
|
-
[#26479](https://github.com/google-gemini/gemini-cli/pull/26479)
|
|
263
|
-
- fix(cli): prevent settings dialog border clipping using maxHeight by
|
|
264
|
-
@jackwotherspoon in
|
|
265
|
-
[#26507](https://github.com/google-gemini/gemini-cli/pull/26507)
|
|
266
|
-
- feat: allow queuing messages during compression (#24071) by @cocosheng-g in
|
|
267
|
-
[#26506](https://github.com/google-gemini/gemini-cli/pull/26506)
|
|
268
|
-
- fix(core): retry on ERR_STREAM_PREMATURE_CLOSE errors by @cocosheng-g in
|
|
269
|
-
[#26519](https://github.com/google-gemini/gemini-cli/pull/26519)
|
|
270
|
-
- fix(core): Minor fixes for generalist profile. by @joshualitt in
|
|
271
|
-
[#26357](https://github.com/google-gemini/gemini-cli/pull/26357)
|
|
272
|
-
- fix(patch): cherry-pick 3627f47 to release/v0.42.0-preview.0-pr-26542 to patch
|
|
273
|
-
version v0.42.0-preview.0 and create version 0.42.0-preview.1 by
|
|
274
|
-
@gemini-cli-robot in
|
|
275
|
-
[#26544](https://github.com/google-gemini/gemini-cli/pull/26544)
|
|
276
|
-
- fix(patch): cherry-pick 02995ba to release/v0.42.0-preview.1-pr-26568 to patch
|
|
277
|
-
version v0.42.0-preview.1 and create version 0.42.0-preview.2 by
|
|
278
|
-
@gemini-cli-robot in
|
|
279
|
-
[#26590](https://github.com/google-gemini/gemini-cli/pull/26590)
|
|
210
|
+
[#26922](https://github.com/google-gemini/gemini-cli/pull/26922)
|
|
211
|
+
- fix(ci): configure git remote with token for authentication by @scidomino in
|
|
212
|
+
[#26949](https://github.com/google-gemini/gemini-cli/pull/26949)
|
|
213
|
+
- fix(patch): cherry-pick 85566a7 to release/v0.43.0-preview.0-pr-27073
|
|
214
|
+
[CONFLICTS] by @gemini-cli-robot in
|
|
215
|
+
[#27256](https://github.com/google-gemini/gemini-cli/pull/27256)
|
|
280
216
|
|
|
281
217
|
**Full Changelog**:
|
|
282
|
-
https://github.com/google-gemini/gemini-cli/compare/v0.
|
|
218
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.42.0...v0.43.0
|