@google/gemini-cli-core 0.54.0-preview.0 → 0.55.0-nightly.20260730.gdc859e8e4

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.
@@ -18,6 +18,23 @@ 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.53.0 - 2026-07-28
22
+
23
+ - **Caretaker Triage Orchestration:** Implemented an LLM triage orchestrator and
24
+ container build setup
25
+ ([#28345](https://github.com/google-gemini/gemini-cli/pull/28345) by
26
+ @chadd28).
27
+ - **Eval Coverage Reporting:** Introduced a new command for generating
28
+ evaluation coverage reports
29
+ ([#28169](https://github.com/google-gemini/gemini-cli/pull/28169) by @ved015).
30
+ - **Security & Loop Mitigations:** Enforced workspace trust and task isolation
31
+ in the A2A server, aligned macOS Seatbelt profiles with the deny-default
32
+ model, and mitigated infinite ReAct/prompt injection loops
33
+ ([#28470](https://github.com/google-gemini/gemini-cli/pull/28470) by
34
+ @luisfelipe-alt,
35
+ [#28424](https://github.com/google-gemini/gemini-cli/pull/28424) by
36
+ @ompatel-aiml).
37
+
21
38
  ## Announcements: v0.52.0 - 2026-07-22
22
39
 
23
40
  - **Caretaker Triage & Egress Services:** Implemented the core triage worker
@@ -1,6 +1,6 @@
1
- # Latest stable release: v0.52.0
1
+ # Latest stable release: v0.53.0
2
2
 
3
- Released: July 22, 2026
3
+ Released: July 28, 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,59 +11,38 @@ npm install -g @google/gemini-cli
11
11
 
12
12
  ## Highlights
13
13
 
14
- - **Caretaker Services:** Introduced a new caretaker triage worker including
15
- core foundational modules, main worker execution loops, egress action
16
- publishers, and octokit GitHub Action handlers.
17
- - **Robust File Editing:** Core tools like `write_file` and `replace` now bypass
18
- LLM corrections for JSON and IPYNB files to ensure accurate and direct file
19
- modifications.
20
- - **Plan Mode Improvements:** Simplified plan mode write policies to natively
21
- support writing to relative paths, enhancing project directory navigation.
22
- - **Enhanced Account Visibility:** Improved clear user-facing messages when the
23
- user account does not have a Code Assist tier, and enriched shared project
24
- quota limit errors with setup instructions.
14
+ - **Caretaker Triage Orchestrator:** Implemented an LLM triage orchestrator and
15
+ container build setup to manage automated caretakers.
16
+ - **Eval Coverage Reporting:** Introduced a new command for generating
17
+ evaluation coverage reports to track agent decision logic and testing.
18
+ - **Security and Sandboxing:** Aligned macOS permissive Seatbelt profiles with
19
+ the deny-default model, and enforced workspace trust with task isolation in
20
+ the A2A server.
21
+ - **Robust Conversation Loops:** Coalesced consecutive message roles and grouped
22
+ cancelled tool responses to avoid Bad Request errors, and mitigated infinite
23
+ ReAct loops and prompt injection vulnerabilities.
25
24
 
26
25
  ## What's Changed
27
26
 
28
- - Refactor: exclude transient CI configuration files from workspace context by
29
- @DavidAPierce in
30
- [#28216](https://github.com/google-gemini/gemini-cli/pull/28216)
31
- - feat(caretaker-triage): add triage worker core foundational modules by
32
- @chadd28 in [#28163](https://github.com/google-gemini/gemini-cli/pull/28163)
33
- - feat(caretaker-egress): implement octokit github action handler for egress
34
- service by @chadd28 in
35
- [#28303](https://github.com/google-gemini/gemini-cli/pull/28303)
36
- - chore(release): bump version to 0.52.0-nightly.20260707.g27a3da3e8 by
37
- @gemini-cli-robot in
38
- [#28323](https://github.com/google-gemini/gemini-cli/pull/28323)
39
- - Changelog for v0.51.0-preview.0 by @gemini-cli-robot in
40
- [#28320](https://github.com/google-gemini/gemini-cli/pull/28320)
41
- - Changelog for v0.50.0 by @gemini-cli-robot in
42
- [#28322](https://github.com/google-gemini/gemini-cli/pull/28322)
43
- - fix(core-tools): bypass LLM correction for JSON and IPYNB files in write_file
44
- and replace by @amelidev in
45
- [#28223](https://github.com/google-gemini/gemini-cli/pull/28223)
46
- - fix(core): use unambiguous previous intent label in fallback summary by
47
- @amelidev in [#28343](https://github.com/google-gemini/gemini-cli/pull/28343)
48
- - feat(caretaker-triage): implement main worker execution loop and egress action
49
- publisher by @chadd28 in
50
- [#28306](https://github.com/google-gemini/gemini-cli/pull/28306)
51
- - fix(privacy): show a clear message when the account has no Code Assist tier by
52
- @ompatel-aiml in
53
- [#28304](https://github.com/google-gemini/gemini-cli/pull/28304)
54
- - fix(core): enrich shared project quota limit errors with setup hint by
55
- @amelidev in [#28391](https://github.com/google-gemini/gemini-cli/pull/28391)
56
- - fix(a2a-server): ensure task cancellation aborts execution loop by
27
+ - fix(core,a2a): group cancelled tool responses and coalesce consecutive roles
28
+ to prevent 400 Bad Request by @luisfelipe-alt in
29
+ [#28407](https://github.com/google-gemini/gemini-cli/pull/28407)
30
+ - feat(caretaker-triage): implement LLM triage orchestrator and container build
31
+ by @chadd28 in
32
+ [#28345](https://github.com/google-gemini/gemini-cli/pull/28345)
33
+ - refactor(cli): align macOS permissive Seatbelt profiles with deny-default
34
+ model by @ompatel-aiml in
35
+ [#28424](https://github.com/google-gemini/gemini-cli/pull/28424)
36
+ - fix(core): mitigate infinite ReAct loops and prompt injection loops by
37
+ @amelidev in [#28429](https://github.com/google-gemini/gemini-cli/pull/28429)
38
+ - fix(a2a-server): enforce workspace trust and task isolation to prevent RCE by
57
39
  @luisfelipe-alt in
58
- [#28316](https://github.com/google-gemini/gemini-cli/pull/28316)
59
- - fix(core): simplify plan mode write policy to support relative paths by
60
- @DavidAPierce in
61
- [#28398](https://github.com/google-gemini/gemini-cli/pull/28398)
62
- - feat(core): Bump node google-auth-library version to 10.9.0 by @jerrylin3321
63
- in [#28385](https://github.com/google-gemini/gemini-cli/pull/28385)
64
- - chore/release: bump version to 0.52.0-nightly.20260715.gfa975395b by
65
- @gemini-cli-robot in
66
- [#28402](https://github.com/google-gemini/gemini-cli/pull/28402)
40
+ [#28470](https://github.com/google-gemini/gemini-cli/pull/28470)
41
+ - fix(core): sequentially verify cached credentials and restore
42
+ GOOGLE_APPLICATION_CREDENTIALS fallback by @luisfelipe-alt in
43
+ [#28472](https://github.com/google-gemini/gemini-cli/pull/28472)
44
+ - feat(evals): add eval coverage report command by @ved015 in
45
+ [#28169](https://github.com/google-gemini/gemini-cli/pull/28169)
67
46
 
68
47
  **Full Changelog**:
69
- https://github.com/google-gemini/gemini-cli/compare/v0.51.0...v0.52.0
48
+ https://github.com/google-gemini/gemini-cli/compare/v0.52.0...v0.53.0
@@ -1,6 +1,6 @@
1
- # Preview release: v0.53.0-preview.0
1
+ # Preview release: v0.54.0-preview.0
2
2
 
3
- Released: July 22, 2026
3
+ Released: July 28, 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,42 +13,59 @@ npm install -g @google/gemini-cli@preview
13
13
 
14
14
  ## Highlights
15
15
 
16
- - **Caretaker LLM Triage Orchestrator**: Implemented the LLM triage orchestrator
17
- and container build configuration to support caretaker triage workflows.
18
- - **Enhanced Workspace Trust & Sandbox Hardening**: Aligned macOS permissive
19
- Seatbelt profiles with the deny-default model and enforced workspace trust and
20
- task isolation in the Agent-to-Agent (A2A) server to prevent remote code
21
- execution (RCE).
22
- - **Core Robustness & API Protections**: Mitigated infinite ReAct and prompt
23
- injection loops, and prevented 400 Bad Request errors by grouping cancelled
24
- tool responses and coalescing consecutive roles.
25
- - **Robust Credentials & Fallbacks**: Restored the
26
- `GOOGLE_APPLICATION_CREDENTIALS` environment variable fallback and
27
- sequentially verified cached credentials.
28
- - **Evaluation Coverage Reporting**: Added a new command to generate
29
- comprehensive eval coverage reports.
16
+ - **Antigravity Agent & PR Generator:** Integrated the Antigravity agent runner,
17
+ Firestore dual-locking for concurrency, prompt templates, and ingestion
18
+ testing utilities.
19
+ - **Caretaker Triage & Issue Management:** Enhanced the issue triage workflow by
20
+ automatically posting a comment before closing issues, and sanitizing and
21
+ wrapping issue titles in `untrusted_context`.
22
+ - **Core API & Session Stability:** Enforced HTTPS for
23
+ GoogleCredentialsAuthProvider to prevent cleartext leakage, rotated session
24
+ IDs on model fallback to prevent stateful API errors, and refined chat history
25
+ by filtering out thought parts when context management is disabled.
30
26
 
31
27
  ## What's Changed
32
28
 
33
- - fix(core,a2a): group cancelled tool responses and coalesce consecutive roles
34
- to prevent 400 Bad Request by @luisfelipe-alt in
35
- [#28407](https://github.com/google-gemini/gemini-cli/pull/28407)
36
- - feat(caretaker-triage): implement LLM triage orchestrator and container build
37
- by @chadd28 in
38
- [#28345](https://github.com/google-gemini/gemini-cli/pull/28345)
39
- - refactor(cli): align macOS permissive Seatbelt profiles with deny-default
40
- model by @ompatel-aiml in
41
- [#28424](https://github.com/google-gemini/gemini-cli/pull/28424)
42
- - fix(core): mitigate infinite ReAct loops and prompt injection loops by
43
- @amelidev in [#28429](https://github.com/google-gemini/gemini-cli/pull/28429)
44
- - fix(a2a-server): enforce workspace trust and task isolation to prevent RCE by
29
+ - Changelog for v0.53.0-preview.0 by @gemini-cli-robot in
30
+ [#28507](https://github.com/google-gemini/gemini-cli/pull/28507)
31
+ - Changelog for v0.52.0 by @gemini-cli-robot in
32
+ [#28508](https://github.com/google-gemini/gemini-cli/pull/28508)
33
+ - chore(release): bump version to 0.54.0-nightly.20260722.gf743ab579 by
34
+ @gemini-cli-robot in
35
+ [#28510](https://github.com/google-gemini/gemini-cli/pull/28510)
36
+ - fix(caretaker): sanitize and wrap issue title in untrusted_context by @chadd28
37
+ in [#28352](https://github.com/google-gemini/gemini-cli/pull/28352)
38
+ - chore(caretaker): update vitest to v3.2.4 and add package-lock.json files by
39
+ @chadd28 in [#28409](https://github.com/google-gemini/gemini-cli/pull/28409)
40
+ - fix(core): rotate session ID on model fallback to prevent stateful API errors
41
+ by @amelidev in
42
+ [#28469](https://github.com/google-gemini/gemini-cli/pull/28469)
43
+ - feat(caretaker-triage): post comment before auto-closing issues by @chadd28 in
44
+ [#28411](https://github.com/google-gemini/gemini-cli/pull/28411)
45
+ - fix(core): enforce HTTPS for GoogleCredentialsAuthProvider to prevent
46
+ cleartext leakage by @amelidev in
47
+ [#28517](https://github.com/google-gemini/gemini-cli/pull/28517)
48
+ - fix(core): filter out thought parts from getHistoryTurns when context
49
+ management is disabled by @DavidAPierce in
50
+ [#28509](https://github.com/google-gemini/gemini-cli/pull/28509)
51
+ - fix(a2a-server): normalize CRLF line endings to LF in getProposedContent by
45
52
  @luisfelipe-alt in
46
- [#28470](https://github.com/google-gemini/gemini-cli/pull/28470)
47
- - fix(core): sequentially verify cached credentials and restore
48
- GOOGLE_APPLICATION_CREDENTIALS fallback by @luisfelipe-alt in
49
- [#28472](https://github.com/google-gemini/gemini-cli/pull/28472)
50
- - feat(evals): add eval coverage report command by @ved015 in
51
- [#28169](https://github.com/google-gemini/gemini-cli/pull/28169)
53
+ [#28531](https://github.com/google-gemini/gemini-cli/pull/28531)
54
+ - fix(core): enforce explicit tag length and validation in file keychain by
55
+ @luisfelipe-alt in
56
+ [#28523](https://github.com/google-gemini/gemini-cli/pull/28523)
57
+ - chore/release: bump version to 0.54.0-nightly.20260728.gbef611950 by
58
+ @gemini-cli-robot in
59
+ [#28552](https://github.com/google-gemini/gemini-cli/pull/28552)
60
+ - feat(pr-generator-db): implement Firestore concurrency dual-locking and test
61
+ ingestion utilities by @joneba-google in
62
+ [#28432](https://github.com/google-gemini/gemini-cli/pull/28432)
63
+ - feat(pr-generator-agent): implement Antigravity agent runner and prompt
64
+ templates … by @joneba-google in
65
+ [#28434](https://github.com/google-gemini/gemini-cli/pull/28434)
66
+ - fix(core): skip merged function-response turns when finding the active loop by
67
+ @adamfweidman in
68
+ [#28565](https://github.com/google-gemini/gemini-cli/pull/28565)
52
69
 
53
70
  **Full Changelog**:
54
- https://github.com/google-gemini/gemini-cli/compare/v0.52.0-preview.0...v0.53.0-preview.0
71
+ https://github.com/google-gemini/gemini-cli/compare/v0.53.0-preview.0...v0.54.0-preview.0
@@ -3,5 +3,5 @@
3
3
  * Copyright 2026 Google LLC
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
- export declare const GIT_COMMIT_INFO = "d29268d36";
7
- export declare const CLI_VERSION = "0.54.0-preview.0";
6
+ export declare const GIT_COMMIT_INFO = "dc859e8e4";
7
+ export declare const CLI_VERSION = "0.55.0-nightly.20260730.gdc859e8e4";
@@ -5,6 +5,6 @@
5
5
  */
6
6
  // This file is auto-generated by the build script (scripts/generate-git-commit-info.js)
7
7
  // Do not edit this file manually.
8
- export const GIT_COMMIT_INFO = 'd29268d36';
9
- export const CLI_VERSION = '0.54.0-preview.0';
8
+ export const GIT_COMMIT_INFO = 'dc859e8e4';
9
+ export const CLI_VERSION = '0.55.0-nightly.20260730.gdc859e8e4';
10
10
  //# sourceMappingURL=git-commit.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"git-commit.js","sourceRoot":"","sources":["../../../src/generated/git-commit.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,wFAAwF;AACxF,kCAAkC;AAClC,MAAM,CAAC,MAAM,eAAe,GAAG,WAAW,CAAC;AAC3C,MAAM,CAAC,MAAM,WAAW,GAAG,kBAAkB,CAAC"}
1
+ {"version":3,"file":"git-commit.js","sourceRoot":"","sources":["../../../src/generated/git-commit.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,wFAAwF;AACxF,kCAAkC;AAClC,MAAM,CAAC,MAAM,eAAe,GAAG,WAAW,CAAC;AAC3C,MAAM,CAAC,MAAM,WAAW,GAAG,oCAAoC,CAAC"}