@google/gemini-cli-core 0.44.0 → 0.45.0-preview.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (120) hide show
  1. package/dist/docs/changelogs/index.md +15 -0
  2. package/dist/docs/changelogs/latest.md +198 -262
  3. package/dist/docs/changelogs/preview.md +202 -181
  4. package/dist/docs/reference/configuration.md +24 -29
  5. package/dist/src/availability/policyCatalog.js +1 -1
  6. package/dist/src/availability/policyCatalog.js.map +1 -1
  7. package/dist/src/availability/policyCatalog.test.js +0 -2
  8. package/dist/src/availability/policyCatalog.test.js.map +1 -1
  9. package/dist/src/availability/policyHelpers.js +1 -5
  10. package/dist/src/availability/policyHelpers.js.map +1 -1
  11. package/dist/src/availability/policyHelpers.test.js +2 -4
  12. package/dist/src/availability/policyHelpers.test.js.map +1 -1
  13. package/dist/src/code_assist/experiments/flagNames.d.ts +0 -1
  14. package/dist/src/code_assist/experiments/flagNames.js +0 -1
  15. package/dist/src/code_assist/experiments/flagNames.js.map +1 -1
  16. package/dist/src/config/config.d.ts +0 -13
  17. package/dist/src/config/config.js +4 -27
  18. package/dist/src/config/config.js.map +1 -1
  19. package/dist/src/config/config.test.js +0 -10
  20. package/dist/src/config/config.test.js.map +1 -1
  21. package/dist/src/config/defaultModelConfigs.js +19 -25
  22. package/dist/src/config/defaultModelConfigs.js.map +1 -1
  23. package/dist/src/config/models.d.ts +6 -6
  24. package/dist/src/config/models.js +30 -27
  25. package/dist/src/config/models.js.map +1 -1
  26. package/dist/src/config/models.test.js +81 -54
  27. package/dist/src/config/models.test.js.map +1 -1
  28. package/dist/src/context/chatCompressionService.js +6 -4
  29. package/dist/src/context/chatCompressionService.js.map +1 -1
  30. package/dist/src/context/config/configLoader.js +4 -1
  31. package/dist/src/context/config/configLoader.js.map +1 -1
  32. package/dist/src/context/config/profiles.d.ts +5 -0
  33. package/dist/src/context/config/profiles.js +84 -0
  34. package/dist/src/context/config/profiles.js.map +1 -1
  35. package/dist/src/context/config/types.d.ts +8 -1
  36. package/dist/src/context/contextManager.d.ts +9 -25
  37. package/dist/src/context/contextManager.incremental.test.d.ts +6 -0
  38. package/dist/src/context/contextManager.incremental.test.js +101 -0
  39. package/dist/src/context/contextManager.incremental.test.js.map +1 -0
  40. package/dist/src/context/contextManager.js +190 -145
  41. package/dist/src/context/contextManager.js.map +1 -1
  42. package/dist/src/context/contextManager.test.js +41 -3
  43. package/dist/src/context/contextManager.test.js.map +1 -1
  44. package/dist/src/context/eventBus.d.ts +7 -0
  45. package/dist/src/context/eventBus.js +6 -0
  46. package/dist/src/context/eventBus.js.map +1 -1
  47. package/dist/src/context/graph/render.js +19 -2
  48. package/dist/src/context/graph/render.js.map +1 -1
  49. package/dist/src/context/graph/render.test.js +10 -3
  50. package/dist/src/context/graph/render.test.js.map +1 -1
  51. package/dist/src/context/graph/toGraph.js +5 -4
  52. package/dist/src/context/graph/toGraph.js.map +1 -1
  53. package/dist/src/context/pipeline/orchestrator.d.ts +2 -1
  54. package/dist/src/context/pipeline/orchestrator.js +4 -4
  55. package/dist/src/context/pipeline/orchestrator.js.map +1 -1
  56. package/dist/src/context/pipeline/orchestrator.test.js +8 -4
  57. package/dist/src/context/pipeline/orchestrator.test.js.map +1 -1
  58. package/dist/src/context/system-tests/powerUserLifecycle.test.d.ts +6 -0
  59. package/dist/src/context/system-tests/powerUserLifecycle.test.js +91 -0
  60. package/dist/src/context/system-tests/powerUserLifecycle.test.js.map +1 -0
  61. package/dist/src/core/client.js +1 -1
  62. package/dist/src/core/client.js.map +1 -1
  63. package/dist/src/core/contentGenerator.js +1 -3
  64. package/dist/src/core/contentGenerator.js.map +1 -1
  65. package/dist/src/core/geminiChat.js +3 -4
  66. package/dist/src/core/geminiChat.js.map +1 -1
  67. package/dist/src/core/prompts.test.js +5 -5
  68. package/dist/src/core/prompts.test.js.map +1 -1
  69. package/dist/src/generated/git-commit.d.ts +2 -2
  70. package/dist/src/generated/git-commit.js +2 -2
  71. package/dist/src/generated/git-commit.js.map +1 -1
  72. package/dist/src/prompts/promptProvider.js +2 -2
  73. package/dist/src/prompts/promptProvider.js.map +1 -1
  74. package/dist/src/routing/strategies/approvalModeStrategy.js +3 -4
  75. package/dist/src/routing/strategies/approvalModeStrategy.js.map +1 -1
  76. package/dist/src/routing/strategies/approvalModeStrategy.test.js +0 -1
  77. package/dist/src/routing/strategies/approvalModeStrategy.test.js.map +1 -1
  78. package/dist/src/routing/strategies/classifierStrategy.js +10 -4
  79. package/dist/src/routing/strategies/classifierStrategy.js.map +1 -1
  80. package/dist/src/routing/strategies/classifierStrategy.test.js +62 -1
  81. package/dist/src/routing/strategies/classifierStrategy.test.js.map +1 -1
  82. package/dist/src/routing/strategies/defaultStrategy.js +1 -1
  83. package/dist/src/routing/strategies/defaultStrategy.js.map +1 -1
  84. package/dist/src/routing/strategies/fallbackStrategy.js +1 -1
  85. package/dist/src/routing/strategies/fallbackStrategy.js.map +1 -1
  86. package/dist/src/routing/strategies/gemmaClassifierStrategy.js +3 -4
  87. package/dist/src/routing/strategies/gemmaClassifierStrategy.js.map +1 -1
  88. package/dist/src/routing/strategies/gemmaClassifierStrategy.test.js +0 -1
  89. package/dist/src/routing/strategies/gemmaClassifierStrategy.test.js.map +1 -1
  90. package/dist/src/routing/strategies/numericalClassifierStrategy.js +10 -3
  91. package/dist/src/routing/strategies/numericalClassifierStrategy.js.map +1 -1
  92. package/dist/src/routing/strategies/numericalClassifierStrategy.test.js +67 -1
  93. package/dist/src/routing/strategies/numericalClassifierStrategy.test.js.map +1 -1
  94. package/dist/src/routing/strategies/overrideStrategy.js +1 -1
  95. package/dist/src/routing/strategies/overrideStrategy.js.map +1 -1
  96. package/dist/src/sandbox/utils/commandUtils.js +1 -5
  97. package/dist/src/sandbox/utils/commandUtils.js.map +1 -1
  98. package/dist/src/scheduler/scheduler.js +4 -0
  99. package/dist/src/scheduler/scheduler.js.map +1 -1
  100. package/dist/src/scheduler/scheduler_parallel.test.js +37 -0
  101. package/dist/src/scheduler/scheduler_parallel.test.js.map +1 -1
  102. package/dist/src/services/modelConfigService.js +1 -5
  103. package/dist/src/services/modelConfigService.js.map +1 -1
  104. package/dist/src/services/shellExecutionService.js +6 -37
  105. package/dist/src/services/shellExecutionService.js.map +1 -1
  106. package/dist/src/services/shellExecutionService.test.js +4 -4
  107. package/dist/src/services/shellExecutionService.test.js.map +1 -1
  108. package/dist/src/services/test-data/resolved-aliases-retry.golden.json +19 -7
  109. package/dist/src/services/test-data/resolved-aliases.golden.json +19 -7
  110. package/dist/src/utils/sessionUtils.js +5 -2
  111. package/dist/src/utils/sessionUtils.js.map +1 -1
  112. package/dist/src/utils/sessionUtils.test.js +26 -0
  113. package/dist/src/utils/sessionUtils.test.js.map +1 -1
  114. package/dist/src/utils/shell-utils.d.ts +1 -19
  115. package/dist/src/utils/shell-utils.js +4 -42
  116. package/dist/src/utils/shell-utils.js.map +1 -1
  117. package/dist/src/utils/shell-utils.test.js +1 -44
  118. package/dist/src/utils/shell-utils.test.js.map +1 -1
  119. package/dist/tsconfig.tsbuildinfo +1 -1
  120. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
- # Preview release: v0.43.0-preview.1
1
+ # Preview release: v0.44.0-preview.0
2
2
 
3
- Released: May 19, 2026
3
+ Released: May 22, 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,187 +13,208 @@ npm install -g @google/gemini-cli@preview
13
13
 
14
14
  ## Highlights
15
15
 
16
- - **Surgical Code Edits:** Steer models to use the `edit` tool for precise code
17
- modifications, improving accuracy and reducing context usage.
18
- - **Session Portability:** Added ability to export chat sessions to files and
19
- import them via a new CLI flag, enabling session persistence and sharing.
20
- - **Enhanced Security:** Introduced comprehensive shell command safety
21
- evaluations and strengthened model steering to prevent unauthorized changes.
22
- - **Context Management:** Implemented a new adaptive token calculator for more
23
- accurate content size estimations and optimized context pipelines.
24
- - **UX Improvements:** Enhanced tool call visibility with prefixed IDs and
25
- improved the UI for session resumption and MCP list management.
16
+ - **Simplified Modes:** Merged existing Auto modes into a single, unified Auto
17
+ mode for a more streamlined user experience.
18
+ - **Enhanced Agent Registration:** Improved agent registration logic to
19
+ prioritize project-specific agents using a first-wins strategy.
20
+ - **New Developer Skills:** Introduced `agent-tui` and `tui-tester` skills to
21
+ empower developers with better terminal UI testing and automation
22
+ capabilities.
23
+ - **Expanded Editor Support:** Added support for Sublime Text and Emacs Client,
24
+ providing more flexibility for external editing tasks.
25
+ - **Session Management:** Added new session invocation types
26
+ (`LocalSessionInvocation`, `RemoteSessionInvocation`) and improved context
27
+ recovery across sessions.
26
28
 
27
29
  ## What's Changed
28
30
 
29
- - fix(patch): cherry-pick 85566a7 to release/v0.43.0-preview.0-pr-27073
30
- [CONFLICTS] by @gemini-cli-robot in
31
- [#27256](https://github.com/google-gemini/gemini-cli/pull/27256)
32
- - feat(core): steer model to use edit tool for surgical edits, fix a typo in
33
- [#26480](https://github.com/google-gemini/gemini-cli/pull/26480)
34
- - docs: clarify Auto Memory proposes memory updates and skills in
35
- [#26527](https://github.com/google-gemini/gemini-cli/pull/26527)
36
- - fix(core): reject numeric project IDs in GOOGLE_CLOUD_PROJECT (#24695) in
37
- [#26532](https://github.com/google-gemini/gemini-cli/pull/26532)
38
- - fix(core): remove unsafe type assertion suppressions in error utils in
39
- [#19881](https://github.com/google-gemini/gemini-cli/pull/19881)
40
- - fix(core): allow redirection in YOLO and AUTO_EDIT modes without sandboxing in
41
- [#26542](https://github.com/google-gemini/gemini-cli/pull/26542)
42
- - ci(release): build and attach unsigned macOS binaries to releases in
43
- [#26462](https://github.com/google-gemini/gemini-cli/pull/26462)
44
- - fix(core): Fix chat corruption bug in context manager. in
45
- [#26534](https://github.com/google-gemini/gemini-cli/pull/26534)
46
- - fix(cli): provide JSON output for AgentExecutionStopped in non-interactive
47
- mode in [#26504](https://github.com/google-gemini/gemini-cli/pull/26504)
48
- - feat(evals): add shell command safety evals in
49
- [#26528](https://github.com/google-gemini/gemini-cli/pull/26528)
50
- - fix(core): handle invalid custom plans directory gracefully in
51
- [#26560](https://github.com/google-gemini/gemini-cli/pull/26560)
52
- - fix(acp): move tool explanation from thought stream to tool call content in
53
- [#26554](https://github.com/google-gemini/gemini-cli/pull/26554)
54
- - fix(a2a-server): Resolve race condition in tool completion waiting in
55
- [#26568](https://github.com/google-gemini/gemini-cli/pull/26568)
56
- - fix(cli): randomize sandbox container names in
57
- [#26014](https://github.com/google-gemini/gemini-cli/pull/26014)
58
- - fix(core): Fix hysteresis in async context management pipelines. in
59
- [#26452](https://github.com/google-gemini/gemini-cli/pull/26452)
60
- - Tighten private Auto Memory patch allowlist in
61
- [#26535](https://github.com/google-gemini/gemini-cli/pull/26535)
62
- - fix(cli): hide read-only settings scopes in
63
- [#26249](https://github.com/google-gemini/gemini-cli/pull/26249)
64
- - fix(ci): preserve executable bit for mac binaries in
65
- [#26600](https://github.com/google-gemini/gemini-cli/pull/26600)
66
- - fix(cli): improve mcp list UX in untrusted folders in
67
- [#26457](https://github.com/google-gemini/gemini-cli/pull/26457)
68
- - fix(core): prevent silent hang during OAuth auth on headless Linux in
69
- [#26571](https://github.com/google-gemini/gemini-cli/pull/26571)
70
- - Changelog for v0.42.0-preview.0 in
71
- [#26537](https://github.com/google-gemini/gemini-cli/pull/26537)
72
- - ci: fix Argument list too long in triage workflows in
73
- [#26603](https://github.com/google-gemini/gemini-cli/pull/26603)
74
- - refactor(cli): migrate core tools to native ToolDisplay property and fix UI
75
- rendering in [#25186](https://github.com/google-gemini/gemini-cli/pull/25186)
76
- - don't wrap args unnecessarily in
77
- [#26599](https://github.com/google-gemini/gemini-cli/pull/26599)
78
- - fix(core): preserve system PATH in Git environment to fix ENOENT (#25034) in
79
- [#26587](https://github.com/google-gemini/gemini-cli/pull/26587)
80
- - fix(routing): fix resolveClassifierModel argument mismatch in
81
- ApprovalModeStrategy in
82
- [#26658](https://github.com/google-gemini/gemini-cli/pull/26658)
83
- - docs: add vi mode shortcuts and clarify MCP/custom sandbox setup in
84
- [#23853](https://github.com/google-gemini/gemini-cli/pull/23853)
85
- - fix(ux): fixed issue with transcribed text not showing after releasing space
86
- in [#26609](https://github.com/google-gemini/gemini-cli/pull/26609)
87
- - ci: fix json parsing in scheduled triage workflow in
88
- [#26656](https://github.com/google-gemini/gemini-cli/pull/26656)
89
- - fix(cli): hide /memory add subcommand when memoryV2 is enabled in
90
- [#26605](https://github.com/google-gemini/gemini-cli/pull/26605)
91
- - fix: prevent false command conflicts when launching from home directory in
92
- [#23069](https://github.com/google-gemini/gemini-cli/pull/23069)
93
- - fix(core): cache model routing decision in LocalAgentExecutor in
94
- [#26548](https://github.com/google-gemini/gemini-cli/pull/26548)
95
- - Changelog for v0.42.0-preview.2 in
96
- [#26597](https://github.com/google-gemini/gemini-cli/pull/26597)
97
- - skip broken test in
98
- [#26705](https://github.com/google-gemini/gemini-cli/pull/26705)
99
- - feat: export session to file and import via flag in
100
- [#26514](https://github.com/google-gemini/gemini-cli/pull/26514)
101
- - Feat: Add Machine Hostname to CLI interface in
102
- [#25637](https://github.com/google-gemini/gemini-cli/pull/25637)
103
- - docs(extensions): refactor releasing guide and add update mechanisms in
104
- [#26595](https://github.com/google-gemini/gemini-cli/pull/26595)
105
- - fix(ci): fix maintainer identification in lifecycle manager in
106
- [#26706](https://github.com/google-gemini/gemini-cli/pull/26706)
107
- - fix(ui): added quotes around session id in resume tip in
108
- [#26669](https://github.com/google-gemini/gemini-cli/pull/26669)
109
- - Changelog for v0.41.0 in
110
- [#26670](https://github.com/google-gemini/gemini-cli/pull/26670)
111
- - refactor(core): agent session protocol changes in
112
- [#26661](https://github.com/google-gemini/gemini-cli/pull/26661)
113
- - fix(context): implement loose boundary policy for gc backstop. in
114
- [#26594](https://github.com/google-gemini/gemini-cli/pull/26594)
115
- - fix(core): throw explicit error on dropped tool responses in
116
- [#26668](https://github.com/google-gemini/gemini-cli/pull/26668)
117
- - fix: resolve "function response turn must come immediately after function
118
- call" error in
119
- [#26691](https://github.com/google-gemini/gemini-cli/pull/26691)
120
- - fix(core): resolve parallel tool call streaming ID collision in
121
- [#26646](https://github.com/google-gemini/gemini-cli/pull/26646)
122
- - feat(core): add LocalSubagentProtocol behind AgentProtocol in
123
- [#25302](https://github.com/google-gemini/gemini-cli/pull/25302)
124
- - fix(cli): remove noisy theme registration logs from terminal in
125
- [#25858](https://github.com/google-gemini/gemini-cli/pull/25858)
126
- - ci: implement codebase-aware effort level triage in
127
- [#26666](https://github.com/google-gemini/gemini-cli/pull/26666)
128
- - feat(acp/core): prefix tool call IDs with tool names to support tool rendering
129
- in ACP compliant IDEs. in
130
- [#26676](https://github.com/google-gemini/gemini-cli/pull/26676)
131
- - fix(mcp): treat GET 404 as 405 in StreamableHTTPClientTransport in
132
- [#24847](https://github.com/google-gemini/gemini-cli/pull/24847)
133
- - feat(core): add RemoteSubagentProtocol behind AgentProtocol in
134
- [#25303](https://github.com/google-gemini/gemini-cli/pull/25303)
135
- - feat(context): Improvements to the snapshotter. in
136
- [#26655](https://github.com/google-gemini/gemini-cli/pull/26655)
137
- - fix(context): Change snapshotter model config. in
138
- [#26745](https://github.com/google-gemini/gemini-cli/pull/26745)
139
- - fix(cli): allow installing extensions from ssh repo in
140
- [#26274](https://github.com/google-gemini/gemini-cli/pull/26274)
141
- - fix(cli): prevent duplicate SessionStart systemMessage render in
142
- [#25827](https://github.com/google-gemini/gemini-cli/pull/25827)
143
- - fix(cli/acp): prevent infinite thought loop in ACP mode by disablig
144
- nextSpeakerCheck in
145
- [#26874](https://github.com/google-gemini/gemini-cli/pull/26874)
146
- - fix(cli): use static tool name in confirmation prompt to avoid parsing errors
147
- in [#26866](https://github.com/google-gemini/gemini-cli/pull/26866)
148
- - fix(routing): Refactor tool turn handling for the conversation history in
149
- NumericalClassifierStrategy to prevent 400 Bad Request in
150
- [#26761](https://github.com/google-gemini/gemini-cli/pull/26761)
151
- - fix(core): handle malformed projects.json in ProjectRegistry in
152
- [#26885](https://github.com/google-gemini/gemini-cli/pull/26885)
153
- - fix(ui): added a gutter width to the input prompt width calculation in
154
- [#26882](https://github.com/google-gemini/gemini-cli/pull/26882)
155
- - fix: prevent EISDIR crash when customIgnoreFilePaths contains directories
156
- (#19868) in [#19898](https://github.com/google-gemini/gemini-cli/pull/19898)
157
- - revert 6b9b778d821728427eea07b1b97ba07378137d0b in
158
- [#26893](https://github.com/google-gemini/gemini-cli/pull/26893)
159
- - Fix/vscode run current file ts in
160
- [#22894](https://github.com/google-gemini/gemini-cli/pull/22894)
161
- - Allow Enter to select session while in search mode in /resume in
162
- [#21523](https://github.com/google-gemini/gemini-cli/pull/21523)
163
- - fix(core): ignore .pak and .rpa game archive formats by default in
164
- [#26884](https://github.com/google-gemini/gemini-cli/pull/26884)
165
- - fix(cli): enable adk non-interactive session in
166
- [#26895](https://github.com/google-gemini/gemini-cli/pull/26895)
167
- - fix(cli): restore resume for legacy sessions in
168
- [#26577](https://github.com/google-gemini/gemini-cli/pull/26577)
169
- - fix: respect explicit model selection after Flash quota exhaustion (#26759) in
170
- [#26872](https://github.com/google-gemini/gemini-cli/pull/26872)
171
- - feat(context): Introduce adaptive token calculator to more accurately
172
- calculate content sizes. in
173
- [#26888](https://github.com/google-gemini/gemini-cli/pull/26888)
174
- - chore: update checkout action configuration in workflows in
175
- [#26897](https://github.com/google-gemini/gemini-cli/pull/26897)
176
- - fix (telemetry): inject quota_project_id to prevent fallback to default oauth
177
- client in [#26698](https://github.com/google-gemini/gemini-cli/pull/26698)
178
- - Exclude extension context from skill extraction agent in
179
- [#26879](https://github.com/google-gemini/gemini-cli/pull/26879)
180
- - Enable NumericalRouter when using dynamic model configs in
181
- [#26929](https://github.com/google-gemini/gemini-cli/pull/26929)
182
- - ci: actively triage missing priority labels and intelligently clean up
183
- conflicting labels in
184
- [#26865](https://github.com/google-gemini/gemini-cli/pull/26865)
185
- - refactor(core): introduce SubagentState enum for progress in
186
- [#26934](https://github.com/google-gemini/gemini-cli/pull/26934)
187
- - fix(ci): replace brittle --no-tag with explicit staging-tmp tag in
188
- [#26940](https://github.com/google-gemini/gemini-cli/pull/26940)
189
- - Incremental refactor repo agent towards skills-based composition in
190
- [#26717](https://github.com/google-gemini/gemini-cli/pull/26717)
191
- - fix(ui): fixed line wrap padding for selection lists in
192
- [#26944](https://github.com/google-gemini/gemini-cli/pull/26944)
193
- - fix(core): update read_file schema for v1 compatibility (#22183) in
194
- [#26922](https://github.com/google-gemini/gemini-cli/pull/26922)
195
- - fix(ci): configure git remote with token for authentication in
196
- [#26949](https://github.com/google-gemini/gemini-cli/pull/26949)
31
+ - chore(release): bump version to 0.44.0-nightly.20260512.g022e8baef by
32
+ @gemini-cli-robot in
33
+ [#26957](https://github.com/google-gemini/gemini-cli/pull/26957)
34
+ - Changelog for v0.42.0 by @gemini-cli-robot in
35
+ [#26958](https://github.com/google-gemini/gemini-cli/pull/26958)
36
+ - Refactor: Eliminate `no-unsafe-return` suppressions via strict type validation
37
+ by @M-DEV-1 in
38
+ [#20668](https://github.com/google-gemini/gemini-cli/pull/20668)
39
+ - Changelog for v0.43.0-preview.0 by @gemini-cli-robot in
40
+ [#26959](https://github.com/google-gemini/gemini-cli/pull/26959)
41
+ - feat(core): change agent registration to first-wins and prioritize project by
42
+ @adamfweidman in
43
+ [#26953](https://github.com/google-gemini/gemini-cli/pull/26953)
44
+ - feat(cli): merge Auto modes into a single Auto mode by @DavidAPierce in
45
+ [#26714](https://github.com/google-gemini/gemini-cli/pull/26714)
46
+ - fix(core): preserve OAuth refresh tokens during rotation and retrieval by
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)
197
218
 
198
219
  **Full Changelog**:
199
- https://github.com/google-gemini/gemini-cli/compare/v0.42.0-preview.2...v0.43.0-preview.1
220
+ https://github.com/google-gemini/gemini-cli/compare/v0.43.0-preview.1...v0.44.0-preview.0
@@ -596,6 +596,12 @@ their corresponding top-level category object in your `settings.json` file.
596
596
  "model": "gemini-2.5-flash-lite"
597
597
  }
598
598
  },
599
+ "gemini-3.1-flash-lite": {
600
+ "extends": "chat-base-3",
601
+ "modelConfig": {
602
+ "model": "gemini-3.1-flash-lite"
603
+ }
604
+ },
599
605
  "gemma-4-31b-it": {
600
606
  "extends": "chat-base-3",
601
607
  "modelConfig": {
@@ -623,7 +629,7 @@ their corresponding top-level category object in your `settings.json` file.
623
629
  "classifier": {
624
630
  "extends": "base",
625
631
  "modelConfig": {
626
- "model": "gemini-2.5-flash-lite",
632
+ "model": "flash-lite",
627
633
  "generateContentConfig": {
628
634
  "maxOutputTokens": 1024,
629
635
  "thinkingConfig": {
@@ -635,7 +641,7 @@ their corresponding top-level category object in your `settings.json` file.
635
641
  "prompt-completion": {
636
642
  "extends": "base",
637
643
  "modelConfig": {
638
- "model": "gemini-2.5-flash-lite",
644
+ "model": "flash-lite",
639
645
  "generateContentConfig": {
640
646
  "temperature": 0.3,
641
647
  "maxOutputTokens": 16000,
@@ -648,7 +654,7 @@ their corresponding top-level category object in your `settings.json` file.
648
654
  "fast-ack-helper": {
649
655
  "extends": "base",
650
656
  "modelConfig": {
651
- "model": "gemini-2.5-flash-lite",
657
+ "model": "flash-lite",
652
658
  "generateContentConfig": {
653
659
  "temperature": 0.2,
654
660
  "maxOutputTokens": 120,
@@ -661,7 +667,7 @@ their corresponding top-level category object in your `settings.json` file.
661
667
  "edit-corrector": {
662
668
  "extends": "base",
663
669
  "modelConfig": {
664
- "model": "gemini-2.5-flash-lite",
670
+ "model": "flash-lite",
665
671
  "generateContentConfig": {
666
672
  "thinkingConfig": {
667
673
  "thinkingBudget": 0
@@ -672,7 +678,7 @@ their corresponding top-level category object in your `settings.json` file.
672
678
  "summarizer-default": {
673
679
  "extends": "base",
674
680
  "modelConfig": {
675
- "model": "gemini-2.5-flash-lite",
681
+ "model": "flash-lite",
676
682
  "generateContentConfig": {
677
683
  "maxOutputTokens": 2000
678
684
  }
@@ -681,7 +687,7 @@ their corresponding top-level category object in your `settings.json` file.
681
687
  "summarizer-shell": {
682
688
  "extends": "base",
683
689
  "modelConfig": {
684
- "model": "gemini-2.5-flash-lite",
690
+ "model": "flash-lite",
685
691
  "generateContentConfig": {
686
692
  "maxOutputTokens": 2000
687
693
  }
@@ -758,7 +764,7 @@ their corresponding top-level category object in your `settings.json` file.
758
764
  },
759
765
  "chat-compression-3.1-flash-lite": {
760
766
  "modelConfig": {
761
- "model": "gemini-3.1-flash-lite-preview"
767
+ "model": "gemini-3.1-flash-lite"
762
768
  }
763
769
  },
764
770
  "chat-compression-2.5-pro": {
@@ -812,10 +818,10 @@ their corresponding top-level category object in your `settings.json` file.
812
818
 
813
819
  ```json
814
820
  {
815
- "gemini-3.1-flash-lite-preview": {
821
+ "gemini-3.1-flash-lite": {
816
822
  "tier": "flash-lite",
817
823
  "family": "gemini-3",
818
- "isPreview": true,
824
+ "isPreview": false,
819
825
  "isVisible": true,
820
826
  "features": {
821
827
  "thinking": false,
@@ -1092,16 +1098,8 @@ their corresponding top-level category object in your `settings.json` file.
1092
1098
  }
1093
1099
  ]
1094
1100
  },
1095
- "gemini-3.1-flash-lite-preview": {
1096
- "default": "gemini-3.1-flash-lite-preview",
1097
- "contexts": [
1098
- {
1099
- "condition": {
1100
- "useGemini3_1FlashLite": false
1101
- },
1102
- "target": "gemini-2.5-flash-lite"
1103
- }
1104
- ]
1101
+ "gemini-3.1-flash-lite": {
1102
+ "default": "gemini-3.1-flash-lite"
1105
1103
  },
1106
1104
  "flash": {
1107
1105
  "default": "gemini-3-flash-preview",
@@ -1115,15 +1113,7 @@ their corresponding top-level category object in your `settings.json` file.
1115
1113
  ]
1116
1114
  },
1117
1115
  "flash-lite": {
1118
- "default": "gemini-2.5-flash-lite",
1119
- "contexts": [
1120
- {
1121
- "condition": {
1122
- "useGemini3_1FlashLite": true
1123
- },
1124
- "target": "gemini-3.1-flash-lite-preview"
1125
- }
1126
- ]
1116
+ "default": "gemini-3.1-flash-lite"
1127
1117
  },
1128
1118
  "auto-gemini-3": {
1129
1119
  "default": "gemini-3-pro-preview",
@@ -1363,7 +1353,7 @@ their corresponding top-level category object in your `settings.json` file.
1363
1353
  ],
1364
1354
  "lite": [
1365
1355
  {
1366
- "model": "gemini-2.5-flash-lite",
1356
+ "model": "flash-lite",
1367
1357
  "actions": {
1368
1358
  "terminal": "silent",
1369
1359
  "transient": "silent",
@@ -1974,6 +1964,11 @@ their corresponding top-level category object in your `settings.json` file.
1974
1964
  - **Default:** `false`
1975
1965
  - **Requires restart:** Yes
1976
1966
 
1967
+ - **`experimental.powerUserProfile`** (boolean):
1968
+ - **Description:** Less cache friendly version of the generalist profile.
1969
+ - **Default:** `false`
1970
+ - **Requires restart:** Yes
1971
+
1977
1972
  - **`experimental.contextManagement`** (boolean):
1978
1973
  - **Description:** Enable logic for context management.
1979
1974
  - **Default:** `false`
@@ -51,7 +51,7 @@ const FLASH_LITE_CHAIN = [
51
51
  export function getModelPolicyChain(options) {
52
52
  const isAuto = options.isAutoSelection ?? false;
53
53
  if (options.previewEnabled) {
54
- const proModel = resolveModel(PREVIEW_GEMINI_MODEL, options.useGemini31, options.useGemini31FlashLite, options.useCustomToolModel);
54
+ const proModel = resolveModel(PREVIEW_GEMINI_MODEL, options.useGemini31, options.useCustomToolModel);
55
55
  return [
56
56
  definePolicy({
57
57
  model: proModel,
@@ -1 +1 @@
1
- {"version":3,"file":"policyCatalog.js","sourceRoot":"","sources":["../../../src/availability/policyCatalog.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"policyCatalog.js","sourceRoot":"","sources":["../../../src/availability/policyCatalog.ts"],"names":[],"mappings":"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"}
@@ -16,7 +16,6 @@ describe('policyCatalog', () => {
16
16
  const chain = getModelPolicyChain({
17
17
  previewEnabled: true,
18
18
  useGemini31: true,
19
- useGemini31FlashLite: false,
20
19
  });
21
20
  expect(chain[0]?.model).toBe(PREVIEW_GEMINI_3_1_MODEL);
22
21
  expect(chain).toHaveLength(2);
@@ -26,7 +25,6 @@ describe('policyCatalog', () => {
26
25
  const chain = getModelPolicyChain({
27
26
  previewEnabled: true,
28
27
  useGemini31: true,
29
- useGemini31FlashLite: false,
30
28
  useCustomToolModel: true,
31
29
  });
32
30
  expect(chain[0]?.model).toBe(PREVIEW_GEMINI_3_1_CUSTOM_TOOLS_MODEL);