@machina.ai/cell-cli-core 1.45.1-rc3 → 1.47.0-rc1
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/AFTER_MERGE_PROMPT.md +1 -1
- package/dist/docs/changelogs/index.md +32 -0
- package/dist/docs/changelogs/latest.md +49 -202
- package/dist/docs/changelogs/preview.md +28 -202
- package/dist/docs/cli/settings.md +0 -18
- package/dist/docs/cli/skills.md +10 -11
- package/dist/docs/core/local-model-routing.md +10 -0
- package/dist/docs/core/subagents.md +1 -5
- package/dist/docs/issue-and-pr-automation.md +29 -1
- package/dist/package.json +1 -1
- package/dist/src/code_assist/codeAssist.js +12 -3
- package/dist/src/code_assist/codeAssist.js.map +1 -1
- package/dist/src/code_assist/codeAssist.test.js +29 -0
- package/dist/src/code_assist/codeAssist.test.js.map +1 -1
- package/dist/src/config/config.js +1 -3
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/defaultModelConfigs.js +5 -5
- package/dist/src/config/defaultModelConfigs.js.map +1 -1
- package/dist/src/config/models.d.ts +1 -0
- package/dist/src/config/models.js +3 -0
- package/dist/src/config/models.js.map +1 -1
- package/dist/src/core/contentGenerator.js +3 -1
- package/dist/src/core/contentGenerator.js.map +1 -1
- package/dist/src/core/contentGenerator.test.js +101 -0
- package/dist/src/core/contentGenerator.test.js.map +1 -1
- package/dist/src/core/modelMappingContentGenerator.d.ts +23 -0
- package/dist/src/core/modelMappingContentGenerator.js +55 -0
- package/dist/src/core/modelMappingContentGenerator.js.map +1 -0
- package/dist/src/core/modelMappingContentGenerator.test.d.ts +6 -0
- package/dist/src/core/modelMappingContentGenerator.test.js +71 -0
- package/dist/src/core/modelMappingContentGenerator.test.js.map +1 -0
- package/dist/src/generated/git-commit.d.ts +2 -2
- package/dist/src/generated/git-commit.js +2 -2
- package/dist/src/policy/config.js +42 -6
- package/dist/src/policy/config.js.map +1 -1
- package/dist/src/policy/persistence.test.js +136 -2
- package/dist/src/policy/persistence.test.js.map +1 -1
- package/dist/src/policy/policy-updater.test.js +15 -10
- package/dist/src/policy/policy-updater.test.js.map +1 -1
- package/dist/src/services/chatRecordingService.d.ts +14 -2
- package/dist/src/services/chatRecordingService.js +63 -16
- package/dist/src/services/chatRecordingService.js.map +1 -1
- package/dist/src/services/chatRecordingService.test.js +97 -1
- package/dist/src/services/chatRecordingService.test.js.map +1 -1
- package/dist/src/skills/builtin/antigravity-support/SKILL.md +58 -0
- package/dist/src/skills/skillLoader.test.js +10 -0
- package/dist/src/skills/skillLoader.test.js.map +1 -1
- package/dist/src/tools/mcp-client.js +1 -0
- package/dist/src/tools/mcp-client.js.map +1 -1
- package/dist/src/tools/mcp-client.test.js +5 -5
- package/dist/src/tools/mcp-client.test.js.map +1 -1
- package/dist/src/utils/fetch.js +3 -3
- package/dist/src/utils/fetch.js.map +1 -1
- package/dist/src/utils/sessionUtils.d.ts +1 -0
- package/dist/src/utils/sessionUtils.js +8 -4
- package/dist/src/utils/sessionUtils.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -18,6 +18,38 @@ 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.45.0 - 2026-06-03
|
|
22
|
+
|
|
23
|
+
- **Context Simplification:** Completed major architectural work to simplify the
|
|
24
|
+
`ContextManager`, improving system robustness and performance
|
|
25
|
+
([#27345](https://github.com/google-gemini/gemini-cli/pull/27345) by
|
|
26
|
+
@joshualitt).
|
|
27
|
+
- **A2A Usage Metadata:** Exposed critical usage metadata in the Agent-to-Agent
|
|
28
|
+
(A2A) protocol for better resource tracking
|
|
29
|
+
([#27288](https://github.com/google-gemini/gemini-cli/pull/27288) by
|
|
30
|
+
@jvargassanchez-dot).
|
|
31
|
+
- **Reliability Fixes:** Addressed Termux relaunch loops, PTY resize errors, and
|
|
32
|
+
forced sequential execution for topic updates
|
|
33
|
+
([#27110](https://github.com/google-gemini/gemini-cli/pull/27110) by @saymanq,
|
|
34
|
+
[#27357](https://github.com/google-gemini/gemini-cli/pull/27357) by
|
|
35
|
+
@jvargassanchez-dot,
|
|
36
|
+
[#27461](https://github.com/google-gemini/gemini-cli/pull/27461) by
|
|
37
|
+
@scidomino).
|
|
38
|
+
|
|
39
|
+
## Announcements: v0.44.0 - 2026-05-27
|
|
40
|
+
|
|
41
|
+
- **Unified Auto Mode:** Streamlined the automation experience by merging
|
|
42
|
+
specialized Auto modes into a single, unified mode
|
|
43
|
+
([#26714](https://github.com/google-gemini/gemini-cli/pull/26714) by
|
|
44
|
+
@DavidAPierce).
|
|
45
|
+
- **New Editor Integrations:** Added native support for Sublime Text and Emacs
|
|
46
|
+
Client ([#21090](https://github.com/google-gemini/gemini-cli/pull/21090) by
|
|
47
|
+
@alberti42).
|
|
48
|
+
- **Enhanced TUI Testing:** Introduced `agent-tui` and `tui-tester` skills for
|
|
49
|
+
programmatic testing and automation of terminal UI applications
|
|
50
|
+
([#27121](https://github.com/google-gemini/gemini-cli/pull/27121) by
|
|
51
|
+
@adamfweidman).
|
|
52
|
+
|
|
21
53
|
## Announcements: v0.43.0 - 2026-05-22
|
|
22
54
|
|
|
23
55
|
- **Surgical Code Edits:** Steered Gemini models to prefer the `edit` tool for
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Latest stable release: v0.
|
|
1
|
+
# Latest stable release: v0.45.0
|
|
2
2
|
|
|
3
|
-
Released:
|
|
3
|
+
Released: June 03, 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,208 +11,55 @@ npm install -g @google/gemini-cli
|
|
|
11
11
|
|
|
12
12
|
## Highlights
|
|
13
13
|
|
|
14
|
-
- **
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
- **
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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.
|
|
14
|
+
- **Context Manager Simplification:** Completed a significant refactoring of the
|
|
15
|
+
context management system to improve reliability and architectural clarity.
|
|
16
|
+
- **A2A Usage Metadata:** Enhanced the Agent-to-Agent protocol to expose usage
|
|
17
|
+
metadata, enabling more transparent resource monitoring.
|
|
18
|
+
- **Terminal & PTY Robustness:** Resolved several critical issues related to
|
|
19
|
+
terminal interactions, including Termux relaunch loops and PTY resize errors.
|
|
20
|
+
- **Routing Optimizations:** Updated default auto-routing and bypassed
|
|
21
|
+
classifiers for specific tool responses to prevent orphaned function errors.
|
|
22
|
+
- **Tool Execution Control:** Forced the `update_topic` tool to execute
|
|
23
|
+
sequentially, ensuring consistent narrative flow in agent interactions.
|
|
29
24
|
|
|
30
25
|
## What's Changed
|
|
31
26
|
|
|
32
|
-
-
|
|
33
|
-
@
|
|
34
|
-
[#
|
|
35
|
-
-
|
|
36
|
-
|
|
37
|
-
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
-
|
|
44
|
-
|
|
45
|
-
-
|
|
46
|
-
|
|
47
|
-
-
|
|
48
|
-
|
|
49
|
-
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
-
|
|
53
|
-
|
|
54
|
-
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
- fix(
|
|
59
|
-
|
|
60
|
-
- fix(
|
|
61
|
-
[#
|
|
62
|
-
- fix(
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
-
|
|
66
|
-
|
|
67
|
-
-
|
|
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
|
|
86
|
-
@cocosheng-g in
|
|
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
|
|
182
|
-
@cocosheng-g in
|
|
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
|
|
209
|
-
@cocosheng-g in
|
|
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)
|
|
27
|
+
- chore(release): bump version to 0.45.0-nightly.20260521.g854f811be by
|
|
28
|
+
@gemini-cli-robot in
|
|
29
|
+
[#27362](https://github.com/google-gemini/gemini-cli/pull/27362)
|
|
30
|
+
- fix(cli): prevent Termux relaunch and resize remount loops by @saymanq in
|
|
31
|
+
[#27110](https://github.com/google-gemini/gemini-cli/pull/27110)
|
|
32
|
+
- Feat/a2a expose usage metadata by @jvargassanchez-dot in
|
|
33
|
+
[#27288](https://github.com/google-gemini/gemini-cli/pull/27288)
|
|
34
|
+
- feat(context): Complete simplification work. by @joshualitt in
|
|
35
|
+
[#27345](https://github.com/google-gemini/gemini-cli/pull/27345)
|
|
36
|
+
- fix(core): force update_topic tool to execute sequentially by
|
|
37
|
+
@jvargassanchez-dot in
|
|
38
|
+
[#27357](https://github.com/google-gemini/gemini-cli/pull/27357)
|
|
39
|
+
- Changelog for v0.44.0-preview.0 by @gemini-cli-robot in
|
|
40
|
+
[#27360](https://github.com/google-gemini/gemini-cli/pull/27360)
|
|
41
|
+
- Changelog for v0.43.0 by @gemini-cli-robot in
|
|
42
|
+
[#27361](https://github.com/google-gemini/gemini-cli/pull/27361)
|
|
43
|
+
- Revert "fix(core): prevent SIGHUP kills in PTY environments" by @bbiggs in
|
|
44
|
+
[#27401](https://github.com/google-gemini/gemini-cli/pull/27401)
|
|
45
|
+
- fix(cli): filter internal session context from history during resumption by
|
|
46
|
+
@rmedranollamas in
|
|
47
|
+
[#27391](https://github.com/google-gemini/gemini-cli/pull/27391)
|
|
48
|
+
- Update default auto routing by @DavidAPierce in
|
|
49
|
+
[#27071](https://github.com/google-gemini/gemini-cli/pull/27071)
|
|
50
|
+
- fix(core): bypass routing classifiers to prevent orphaned function response
|
|
51
|
+
errors by @danielweis in
|
|
52
|
+
[#27389](https://github.com/google-gemini/gemini-cli/pull/27389)
|
|
53
|
+
- fix(core): suppress PTY resize EBADF errors by @scidomino in
|
|
54
|
+
[#27461](https://github.com/google-gemini/gemini-cli/pull/27461)
|
|
55
|
+
- fix(core): prevent blacklist bypass in mcp list by @ompatel-aiml in
|
|
56
|
+
[#27377](https://github.com/google-gemini/gemini-cli/pull/27377)
|
|
57
|
+
- fix(cli): ignore unmapped vim normal keys by @MukundaKatta in
|
|
58
|
+
[#27102](https://github.com/google-gemini/gemini-cli/pull/27102)
|
|
59
|
+
- fix(patch): cherry-pick bd53951 to release/v0.45.0-preview.0-pr-27496 to patch
|
|
60
|
+
version v0.45.0-preview.0 and create version 0.45.0-preview.1 by
|
|
61
|
+
@gemini-cli-robot in
|
|
62
|
+
[#27535](https://github.com/google-gemini/gemini-cli/pull/27535)
|
|
216
63
|
|
|
217
64
|
**Full Changelog**:
|
|
218
|
-
https://github.com/google-gemini/gemini-cli/compare/v0.
|
|
65
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.44.1...v0.45.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Preview release: v0.
|
|
1
|
+
# Preview release: v0.46.0-preview.0
|
|
2
2
|
|
|
3
|
-
Released:
|
|
3
|
+
Released: June 3, 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,208 +13,34 @@ npm install -g @google/gemini-cli@preview
|
|
|
13
13
|
|
|
14
14
|
## Highlights
|
|
15
15
|
|
|
16
|
-
- **
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
- **
|
|
24
|
-
|
|
25
|
-
- **Session Management:** Added new session invocation types
|
|
26
|
-
(`LocalSessionInvocation`, `RemoteSessionInvocation`) and improved context
|
|
27
|
-
recovery across sessions.
|
|
16
|
+
- **Model Update:** Added support for transitioning to the Flash GA model when
|
|
17
|
+
the experimental flag is enabled, providing access to the latest model
|
|
18
|
+
improvements.
|
|
19
|
+
- **Improved Stability:** Hardened PTY resize logic to prevent native crashes,
|
|
20
|
+
ensuring a more robust terminal experience.
|
|
21
|
+
- **Bug Fix:** Resolved an issue where an invalid `preferredEditor`
|
|
22
|
+
configuration could lead to a notification spam loop.
|
|
23
|
+
- **CI Enhancements:** Optimized Pull Request labeling and introduced batch
|
|
24
|
+
workflows to improve development efficiency.
|
|
28
25
|
|
|
29
26
|
## What's Changed
|
|
30
27
|
|
|
31
|
-
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
-
|
|
35
|
-
|
|
36
|
-
-
|
|
37
|
-
|
|
38
|
-
[#
|
|
39
|
-
-
|
|
40
|
-
[#
|
|
41
|
-
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
@cocosheng-g in
|
|
48
|
-
[#26924](https://github.com/google-gemini/gemini-cli/pull/26924)
|
|
49
|
-
- fix(cli): allow keychain auth for --list-sessions and non-interactive mode by
|
|
50
|
-
@cocosheng-g in
|
|
51
|
-
[#26921](https://github.com/google-gemini/gemini-cli/pull/26921)
|
|
52
|
-
- fix(core): handle EISDIR on virtual drives in memory discovery by @cocosheng-g
|
|
53
|
-
in [#26985](https://github.com/google-gemini/gemini-cli/pull/26985)
|
|
54
|
-
- fix(cli): auto-approve shell redirections in AUTO_EDIT mode by @cocosheng-g in
|
|
55
|
-
[#27003](https://github.com/google-gemini/gemini-cli/pull/27003)
|
|
56
|
-
- ci: suppress bot comments during standard triage maintenance by @cocosheng-g
|
|
57
|
-
in [#27006](https://github.com/google-gemini/gemini-cli/pull/27006)
|
|
58
|
-
- fix(core): refresh MCP OAuth token usage after re-auth by @sahilkirad in
|
|
59
|
-
[#26312](https://github.com/google-gemini/gemini-cli/pull/26312)
|
|
60
|
-
- fix(ui): clamped table column widths by @devr0306 in
|
|
61
|
-
[#26991](https://github.com/google-gemini/gemini-cli/pull/26991)
|
|
62
|
-
- fix(core): isolate subagent thread context by @akh64bit in
|
|
63
|
-
[#26449](https://github.com/google-gemini/gemini-cli/pull/26449)
|
|
64
|
-
- chore: add execution permission to scripts/review.sh by @scidomino in
|
|
65
|
-
[#27009](https://github.com/google-gemini/gemini-cli/pull/27009)
|
|
66
|
-
- fix(core): made context files append instead of replace by @devr0306 in
|
|
67
|
-
[#26950](https://github.com/google-gemini/gemini-cli/pull/26950)
|
|
68
|
-
- fix: add system PATH fallback for ripgrep resolution (#26777) by @cocosheng-g
|
|
69
|
-
in [#26868](https://github.com/google-gemini/gemini-cli/pull/26868)
|
|
70
|
-
- chore: clean up launched memory features by @SandyTao520 in
|
|
71
|
-
[#26941](https://github.com/google-gemini/gemini-cli/pull/26941)
|
|
72
|
-
- fix(core): throttle shell text output and bound live UI buffer by
|
|
73
|
-
@emersonbusson in
|
|
74
|
-
[#26955](https://github.com/google-gemini/gemini-cli/pull/26955)
|
|
75
|
-
- fix(cli): don't crash when an @-mention captures a non-path blob by @ifitisit
|
|
76
|
-
in [#25980](https://github.com/google-gemini/gemini-cli/pull/25980)
|
|
77
|
-
- fix(core): ensure stable fallback for restricted preview models by @galz10 in
|
|
78
|
-
[#26999](https://github.com/google-gemini/gemini-cli/pull/26999)
|
|
79
|
-
- feat(core): expose RAG snippets to local log file for debugging by @spencer426
|
|
80
|
-
in [#27016](https://github.com/google-gemini/gemini-cli/pull/27016)
|
|
81
|
-
- fix(acp/auth): prevent conflicting credentials on enterprise gateways and
|
|
82
|
-
support optional API keys natively by @sripasg in
|
|
83
|
-
[#27021](https://github.com/google-gemini/gemini-cli/pull/27021)
|
|
84
|
-
- fix(core): respect NO_PROXY for network-based MCP servers by @cocosheng-g in
|
|
85
|
-
[#27012](https://github.com/google-gemini/gemini-cli/pull/27012)
|
|
86
|
-
- fix(cli): resolve permission denied in sandbox on NixOS and other distros by
|
|
87
|
-
@cocosheng-g in
|
|
88
|
-
[#27004](https://github.com/google-gemini/gemini-cli/pull/27004)
|
|
89
|
-
- fix(ui): preserve new line at the end of edit window by @devr0306 in
|
|
90
|
-
[#27057](https://github.com/google-gemini/gemini-cli/pull/27057)
|
|
91
|
-
- fix(core): ensure Vertex AI sets hasAccessToPreviewModels and remove
|
|
92
|
-
aggressive 404 fallback revocation by @galz10 in
|
|
93
|
-
[#27067](https://github.com/google-gemini/gemini-cli/pull/27067)
|
|
94
|
-
- fix(core): ensure stable admin settings comparison across IPC to prevent
|
|
95
|
-
restart loop by @DavidAPierce in
|
|
96
|
-
[#27066](https://github.com/google-gemini/gemini-cli/pull/27066)
|
|
97
|
-
- fix(deps): update vulnerable dependencies by @scidomino in
|
|
98
|
-
[#27062](https://github.com/google-gemini/gemini-cli/pull/27062)
|
|
99
|
-
- fix(core): resolve EISDIR errors during file processing (#21527) by @ProthamD
|
|
100
|
-
in [#27041](https://github.com/google-gemini/gemini-cli/pull/27041)
|
|
101
|
-
- docs(extensions): clarify env var sanitization policy for MCP and ext… by
|
|
102
|
-
@galz10 in [#22854](https://github.com/google-gemini/gemini-cli/pull/22854)
|
|
103
|
-
- fix(ui): add ENAMETOOLONG and ENOTDIR to exceptions for file parsing errors by
|
|
104
|
-
@devr0306 in [#27069](https://github.com/google-gemini/gemini-cli/pull/27069)
|
|
105
|
-
- fix(cli): explicitly clear entrypoint when spawning sandbox container by
|
|
106
|
-
@cocosheng-g in
|
|
107
|
-
[#27059](https://github.com/google-gemini/gemini-cli/pull/27059)
|
|
108
|
-
- docs: update sandbox image command by @sjhddh in
|
|
109
|
-
[#26774](https://github.com/google-gemini/gemini-cli/pull/26774)
|
|
110
|
-
- fix(core): externalize https-proxy-agent to fix proxy support by @sotokisehiro
|
|
111
|
-
in [#26361](https://github.com/google-gemini/gemini-cli/pull/26361)
|
|
112
|
-
- security: update dependencies to fix critical and high vulnerabilities by
|
|
113
|
-
@scidomino in [#27077](https://github.com/google-gemini/gemini-cli/pull/27077)
|
|
114
|
-
- Fix/web fetch ctrl c abort by @ProthamD in
|
|
115
|
-
[#24320](https://github.com/google-gemini/gemini-cli/pull/24320)
|
|
116
|
-
- fix(core): add aliases and thinking config for gemini-3.1 models by
|
|
117
|
-
@anishs1207 in
|
|
118
|
-
[#27007](https://github.com/google-gemini/gemini-cli/pull/27007)
|
|
119
|
-
- fix(core): use hasAccessToPreview for auto model resolution and fix
|
|
120
|
-
disappearing models by @DavidAPierce in
|
|
121
|
-
[#27112](https://github.com/google-gemini/gemini-cli/pull/27112)
|
|
122
|
-
- feat(core): add adk.agentSessionSubagentEnabled flag by @adamfweidman in
|
|
123
|
-
[#26947](https://github.com/google-gemini/gemini-cli/pull/26947)
|
|
124
|
-
- fix(core): enforce compile-time exhaustiveness in content-utils by
|
|
125
|
-
@adamfweidman in
|
|
126
|
-
[#27207](https://github.com/google-gemini/gemini-cli/pull/27207)
|
|
127
|
-
- feat(skills): add agent-tui and tui-tester skills by @adamfweidman in
|
|
128
|
-
[#27121](https://github.com/google-gemini/gemini-cli/pull/27121)
|
|
129
|
-
- fix(context): Fix snapshot recovery across sessions. by @joshualitt in
|
|
130
|
-
[#26939](https://github.com/google-gemini/gemini-cli/pull/26939)
|
|
131
|
-
- fix(core): add unit tests for stableStringify by @devr0306 in
|
|
132
|
-
[#27212](https://github.com/google-gemini/gemini-cli/pull/27212)
|
|
133
|
-
- fix(core): prefer pwsh.exe over Windows PowerShell 5.1 (#25859) by @kaluchi in
|
|
134
|
-
[#25900](https://github.com/google-gemini/gemini-cli/pull/25900)
|
|
135
|
-
- feat(core): add LocalSessionInvocation by @adamfweidman in
|
|
136
|
-
[#26665](https://github.com/google-gemini/gemini-cli/pull/26665)
|
|
137
|
-
- refactor: decouple auto model description and configuration from
|
|
138
|
-
releaseChannel by @danielweis in
|
|
139
|
-
[#27227](https://github.com/google-gemini/gemini-cli/pull/27227)
|
|
140
|
-
- fix(core): prevent isBinary false-positive on Windows PTY streams by
|
|
141
|
-
@TirthNaik-99 in
|
|
142
|
-
[#26565](https://github.com/google-gemini/gemini-cli/pull/26565)
|
|
143
|
-
- fix(cli): Prevent unmapped keys in Vim Normal mode from inserting text into
|
|
144
|
-
prompt Input. by @Rajeshpatel07 in
|
|
145
|
-
[#25139](https://github.com/google-gemini/gemini-cli/pull/25139)
|
|
146
|
-
- fix(a2a-server): Implement default policy loading for parity with CLI by
|
|
147
|
-
@kschaab in [#27073](https://github.com/google-gemini/gemini-cli/pull/27073)
|
|
148
|
-
- feat(core): add RemoteSessionInvocation by @adamfweidman in
|
|
149
|
-
[#26937](https://github.com/google-gemini/gemini-cli/pull/26937)
|
|
150
|
-
- fix: allow configured MCP servers in non-interactive mode by @cocosheng-g in
|
|
151
|
-
[#27215](https://github.com/google-gemini/gemini-cli/pull/27215)
|
|
152
|
-
- fix(core): add exception handling to migrateFromFileStorage by @devr0306 in
|
|
153
|
-
[#27229](https://github.com/google-gemini/gemini-cli/pull/27229)
|
|
154
|
-
- fix(cli): bundle ink worker-entry.js by @rmedranollamas in
|
|
155
|
-
[#27249](https://github.com/google-gemini/gemini-cli/pull/27249)
|
|
156
|
-
- feat(core): wire AgentSession invocations into agent-tool by @adamfweidman in
|
|
157
|
-
[#26948](https://github.com/google-gemini/gemini-cli/pull/26948)
|
|
158
|
-
- fix(core): prevent path traversal in custome command file injection by
|
|
159
|
-
@ompatel-aiml in
|
|
160
|
-
[#27234](https://github.com/google-gemini/gemini-cli/pull/27234)
|
|
161
|
-
- fix(core): respect NO_PROXY in global fetch dispatcher by @cocosheng-g in
|
|
162
|
-
[#27216](https://github.com/google-gemini/gemini-cli/pull/27216)
|
|
163
|
-
- fix(core): correctly handle nullable array types in MCP tools by @devr0306 in
|
|
164
|
-
[#27228](https://github.com/google-gemini/gemini-cli/pull/27228)
|
|
165
|
-
- fix(cli): preserve proxy-agent named exports in ESM bundle by @ashishch432 in
|
|
166
|
-
[#27145](https://github.com/google-gemini/gemini-cli/pull/27145)
|
|
167
|
-
- Proposal: deterministic encoding for child-process I/O by @kaluchi in
|
|
168
|
-
[#27247](https://github.com/google-gemini/gemini-cli/pull/27247)
|
|
169
|
-
- feat(cli): add Sublime Text and Emacs Client editors, improve error messages
|
|
170
|
-
and documentation by @alberti42 in
|
|
171
|
-
[#21090](https://github.com/google-gemini/gemini-cli/pull/21090)
|
|
172
|
-
- Changelog for v0.43.0-preview.1 by @gemini-cli-robot in
|
|
173
|
-
[#27297](https://github.com/google-gemini/gemini-cli/pull/27297)
|
|
174
|
-
- fix(devtools): bundle devtools package to avoid resolution errors by
|
|
175
|
-
@rmedranollamas in
|
|
176
|
-
[#27250](https://github.com/google-gemini/gemini-cli/pull/27250)
|
|
177
|
-
- fix(cli): integrate PolicyEngine into ACP session to prevent deadlocks
|
|
178
|
-
(#23507) by @cocosheng-g in
|
|
179
|
-
[#27252](https://github.com/google-gemini/gemini-cli/pull/27252)
|
|
180
|
-
- fix: robust ripgrep path resolution and 1p hermetic execution support by
|
|
181
|
-
@cocosheng-g in
|
|
182
|
-
[#27253](https://github.com/google-gemini/gemini-cli/pull/27253)
|
|
183
|
-
- refactor: decouple stored session deletion from ChatRecordingService (#22920)
|
|
184
|
-
by @yuvrajangadsingh in
|
|
185
|
-
[#27039](https://github.com/google-gemini/gemini-cli/pull/27039)
|
|
186
|
-
- fix(core): improve Alpine shell compatibility by @dibyx in
|
|
187
|
-
[#26770](https://github.com/google-gemini/gemini-cli/pull/26770)
|
|
188
|
-
- fix(core): generalize MCP compliance fix for tool results by @cocosheng-g in
|
|
189
|
-
[#27045](https://github.com/google-gemini/gemini-cli/pull/27045)
|
|
190
|
-
- fix(scripts): scrub CI env vars in dev to keep interactive mode by @Hashaam101
|
|
191
|
-
in [#27159](https://github.com/google-gemini/gemini-cli/pull/27159)
|
|
192
|
-
- fix(core): Added date field for the GCal MCP by @devr0306 in
|
|
193
|
-
[#27251](https://github.com/google-gemini/gemini-cli/pull/27251)
|
|
194
|
-
- fix(core): centralize path validation to prevent crashes from malformed
|
|
195
|
-
prompts by @cocosheng-g in
|
|
196
|
-
[#27211](https://github.com/google-gemini/gemini-cli/pull/27211)
|
|
197
|
-
- fix(core): prevent SIGHUP kills in PTY environments (WSL2/Kitty/Alacritty) by
|
|
198
|
-
@ProthamD in [#27267](https://github.com/google-gemini/gemini-cli/pull/27267)
|
|
199
|
-
- fix(core): dynamic fallback routing for exhausted quota models by @cocosheng-g
|
|
200
|
-
in [#27315](https://github.com/google-gemini/gemini-cli/pull/27315)
|
|
201
|
-
- Auto detect pnpm global installation path for macOS and Windows by @tisonkun
|
|
202
|
-
in [#22748](https://github.com/google-gemini/gemini-cli/pull/22748)
|
|
203
|
-
- fix(windows): resolve interactive shell arrow-key navigation on Windows by
|
|
204
|
-
@KumarADITHYA123 in
|
|
205
|
-
[#23505](https://github.com/google-gemini/gemini-cli/pull/23505)
|
|
206
|
-
- ci: robust stale issue lifecycle and consolidated triage labels by
|
|
207
|
-
@cocosheng-g in
|
|
208
|
-
[#27015](https://github.com/google-gemini/gemini-cli/pull/27015)
|
|
209
|
-
- fix(context): Ensure last message is processed. by @joshualitt in
|
|
210
|
-
[#27232](https://github.com/google-gemini/gemini-cli/pull/27232)
|
|
211
|
-
- chore/release: bump version to 0.44.0-nightly.20260521.g57c42a5c4 by
|
|
212
|
-
@gemini-cli-robot in
|
|
213
|
-
[#27324](https://github.com/google-gemini/gemini-cli/pull/27324)
|
|
214
|
-
- fix(ui): added volta to auto update check by @devr0306 in
|
|
215
|
-
[#27353](https://github.com/google-gemini/gemini-cli/pull/27353)
|
|
216
|
-
- perf: optimize issue triage and lifecycle management by @cocosheng-g in
|
|
217
|
-
[#27346](https://github.com/google-gemini/gemini-cli/pull/27346)
|
|
28
|
+
- fix(core): harden PTY resize against native crashes by @scidomino in
|
|
29
|
+
[#27496](https://github.com/google-gemini/gemini-cli/pull/27496)
|
|
30
|
+
- Changelog for v0.45.0-preview.0 by @gemini-cli-robot in
|
|
31
|
+
[#27495](https://github.com/google-gemini/gemini-cli/pull/27495)
|
|
32
|
+
- Changelog for v0.44.0 by @gemini-cli-robot in
|
|
33
|
+
[#27569](https://github.com/google-gemini/gemini-cli/pull/27569)
|
|
34
|
+
- fix(cli): prevent spam loop when preferredEditor is invalid by @Niralisj in
|
|
35
|
+
[#25324](https://github.com/google-gemini/gemini-cli/pull/25324)
|
|
36
|
+
- Adding quote by @scidomino in
|
|
37
|
+
[#27571](https://github.com/google-gemini/gemini-cli/pull/27571)
|
|
38
|
+
- Transition to flash GA model when experiment flag is present. by @DavidAPierce
|
|
39
|
+
in [#27570](https://github.com/google-gemini/gemini-cli/pull/27570)
|
|
40
|
+
- chore(ci): add optimized PR size labeler and batch workflows by @sripasg in
|
|
41
|
+
[#27616](https://github.com/google-gemini/gemini-cli/pull/27616)
|
|
42
|
+
- fix(ci): use pull_request_target trigger to grant write access on fork PRs by
|
|
43
|
+
@sripasg in [#27637](https://github.com/google-gemini/gemini-cli/pull/27637)
|
|
218
44
|
|
|
219
45
|
**Full Changelog**:
|
|
220
|
-
https://github.com/google-gemini/gemini-cli/compare/v0.
|
|
46
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.45.0-preview.1...v0.46.0-preview.0
|
|
@@ -161,24 +161,6 @@ they appear in the UI.
|
|
|
161
161
|
| Auto Configure Max Old Space Size | `advanced.autoConfigureMemory` | Automatically configure Node.js memory limits. Note: Because memory is allocated during the initial process boot, this setting is only read from the global user settings file and ignores workspace-level overrides. | `true` |
|
|
162
162
|
| Ignore Local .env | `advanced.ignoreLocalEnv` | Whether to ignore generic .env files in the project directory. | `false` |
|
|
163
163
|
|
|
164
|
-
### LoadMemoryFromIncludeDirectories
|
|
165
|
-
|
|
166
|
-
| UI Label | Setting | Description | Default |
|
|
167
|
-
| ------------------------------------ | ---------------------------------- | ------------------------------------------------------ | ------- |
|
|
168
|
-
| Load Memory From Include Directories | `loadMemoryFromIncludeDirectories` | Whether to load memory files from include directories. | `false` |
|
|
169
|
-
|
|
170
|
-
### FolderTrustFeature
|
|
171
|
-
|
|
172
|
-
| UI Label | Setting | Description | Default |
|
|
173
|
-
| -------------------- | -------------------- | -------------------------------------------------- | ------- |
|
|
174
|
-
| Folder Trust Feature | `folderTrustFeature` | Enable folder trust feature for enhanced security. | `false` |
|
|
175
|
-
|
|
176
|
-
### FolderTrust
|
|
177
|
-
|
|
178
|
-
| UI Label | Setting | Description | Default |
|
|
179
|
-
| ------------ | ------------- | ------------------------------------------------- | ------- |
|
|
180
|
-
| Folder Trust | `folderTrust` | Setting to track whether Folder trust is enabled. | `false` |
|
|
181
|
-
|
|
182
164
|
### Experimental
|
|
183
165
|
|
|
184
166
|
| UI Label | Setting | Description | Default |
|