@google/gemini-cli-core 0.55.0-preview.2 → 0.56.0-nightly.20260808.gcf22ac7e8

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,24 @@ 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.54.0 - 2026-08-06
22
+
23
+ - **PR Automation & Antigravity Agent:** Integrated the Antigravity agent runner
24
+ with dual-locking Firestore concurrency controls to secure the PR generator
25
+ ([#28434](https://github.com/google-gemini/gemini-cli/pull/28434),
26
+ [#28432](https://github.com/google-gemini/gemini-cli/pull/28432) by
27
+ @joneba-google).
28
+ - **Caretaker Triaging & Security:** Enhanced caretaker triage to post comments
29
+ prior to auto-closing issues and sanitized issue titles under untrusted
30
+ context ([#28411](https://github.com/google-gemini/gemini-cli/pull/28411),
31
+ [#28352](https://github.com/google-gemini/gemini-cli/pull/28352) by @chadd28).
32
+ - **Security and Session Robustness:** Prevented cleartext credential leakage by
33
+ enforcing HTTPS, rotated session IDs on model fallbacks, and skipped merged
34
+ function-response turns in active loops
35
+ ([#28517](https://github.com/google-gemini/gemini-cli/pull/28517) by
36
+ @amelidev, [#28565](https://github.com/google-gemini/gemini-cli/pull/28565) by
37
+ @adamfweidman).
38
+
21
39
  ## Announcements: v0.53.0 - 2026-07-28
22
40
 
23
41
  - **Caretaker Triage Orchestration:** Implemented an LLM triage orchestrator and
@@ -1,6 +1,6 @@
1
- # Latest stable release: v0.53.0
1
+ # Latest stable release: v0.54.0
2
2
 
3
- Released: July 28, 2026
3
+ Released: August 6, 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,38 +11,66 @@ npm install -g @google/gemini-cli
11
11
 
12
12
  ## Highlights
13
13
 
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.
14
+ - **PR Generation & Antigravity Agent:** Implemented Firestore concurrency
15
+ dual-locking mechanisms in the database and introduced the Antigravity agent
16
+ runner with comprehensive prompt templates.
17
+ - **Caretaker Triaging & Issue Security:** Improved the caretaker triage loop to
18
+ post a descriptive comment prior to auto-closing issues, and sanitized issue
19
+ titles within an untrusted context to ensure secure processing.
20
+ - **Enhanced Authentication & Security:** Enforced strict HTTPS validation for
21
+ GoogleCredentialsAuthProvider to block cleartext leakage, and implemented tag
22
+ length validation for the file keychain system.
23
+ - **Model Fallback & History Filtering:** Resolved stateful API errors by
24
+ rotating session IDs on model fallback, optimized conversation history
25
+ retrieval by filtering out thought parts when context management is disabled,
26
+ and correctly skipped merged function responses when tracking active loops.
24
27
 
25
28
  ## What's Changed
26
29
 
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
30
+ - Changelog for v0.53.0-preview.0 by @gemini-cli-robot in
31
+ [#28507](https://github.com/google-gemini/gemini-cli/pull/28507)
32
+ - Changelog for v0.52.0 by @gemini-cli-robot in
33
+ [#28508](https://github.com/google-gemini/gemini-cli/pull/28508)
34
+ - chore(release): bump version to 0.54.0-nightly.20260722.gf743ab579 by
35
+ @gemini-cli-robot in
36
+ [#28510](https://github.com/google-gemini/gemini-cli/pull/28510)
37
+ - fix(caretaker): sanitize and wrap issue title in untrusted_context by @chadd28
38
+ in [#28352](https://github.com/google-gemini/gemini-cli/pull/28352)
39
+ - chore(caretaker): update vitest to v3.2.4 and add package-lock.json files by
40
+ @chadd28 in [#28409](https://github.com/google-gemini/gemini-cli/pull/28409)
41
+ - fix(core): rotate session ID on model fallback to prevent stateful API errors
42
+ by @amelidev in
43
+ [#28469](https://github.com/google-gemini/gemini-cli/pull/28469)
44
+ - feat(caretaker-triage): post comment before auto-closing issues by @chadd28 in
45
+ [#28411](https://github.com/google-gemini/gemini-cli/pull/28411)
46
+ - fix(core): enforce HTTPS for GoogleCredentialsAuthProvider to prevent
47
+ cleartext leakage by @amelidev in
48
+ [#28517](https://github.com/google-gemini/gemini-cli/pull/28517)
49
+ - fix(core): filter out thought parts from getHistoryTurns when context
50
+ management is disabled by @DavidAPierce in
51
+ [#28509](https://github.com/google-gemini/gemini-cli/pull/28509)
52
+ - fix(a2a-server): normalize CRLF line endings to LF in getProposedContent by
39
53
  @luisfelipe-alt in
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)
54
+ [#28531](https://github.com/google-gemini/gemini-cli/pull/28531)
55
+ - fix(core): enforce explicit tag length and validation in file keychain by
56
+ @luisfelipe-alt in
57
+ [#28523](https://github.com/google-gemini/gemini-cli/pull/28523)
58
+ - chore/release: bump version to 0.54.0-nightly.20260728.gbef611950 by
59
+ @gemini-cli-robot in
60
+ [#28552](https://github.com/google-gemini/gemini-cli/pull/28552)
61
+ - feat(pr-generator-db): implement Firestore concurrency dual-locking and test
62
+ ingestion utilities by @joneba-google in
63
+ [#28432](https://github.com/google-gemini/gemini-cli/pull/28432)
64
+ - feat(pr-generator-agent): implement Antigravity agent runner and prompt
65
+ templates … by @joneba-google in
66
+ [#28434](https://github.com/google-gemini/gemini-cli/pull/28434)
67
+ - fix(core): skip merged function-response turns when finding the active loop by
68
+ @adamfweidman in
69
+ [#28565](https://github.com/google-gemini/gemini-cli/pull/28565)
70
+ - fix(patch): cherry-pick f47d6c6 to release/v0.54.0-preview.0-pr-28566 to patch
71
+ version v0.54.0-preview.0 and create version 0.54.0-preview.1 by
72
+ @gemini-cli-robot in
73
+ [#28609](https://github.com/google-gemini/gemini-cli/pull/28609)
46
74
 
47
75
  **Full Changelog**:
48
- https://github.com/google-gemini/gemini-cli/compare/v0.52.0...v0.53.0
76
+ https://github.com/google-gemini/gemini-cli/compare/v0.53.1...v0.54.0
@@ -1,6 +1,6 @@
1
- # Preview release: v0.54.0-preview.0
1
+ # Preview release: v0.55.0-preview.1
2
2
 
3
- Released: July 28, 2026
3
+ Released: August 06, 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).
@@ -26,6 +26,48 @@ npm install -g @google/gemini-cli@preview
26
26
 
27
27
  ## What's Changed
28
28
 
29
+ - chore(release): bump version to 0.55.0-nightly.20260728.gd29268d36 by
30
+ @gemini-cli-robot in
31
+ [#28569](https://github.com/google-gemini/gemini-cli/pull/28569)
32
+ - Changelog for v0.54.0-preview.0 by @gemini-cli-robot in
33
+ [#28567](https://github.com/google-gemini/gemini-cli/pull/28567)
34
+ - Changelog for v0.53.0 by @gemini-cli-robot in
35
+ [#28568](https://github.com/google-gemini/gemini-cli/pull/28568)
36
+ - chore/release: bump version to 0.55.0-nightly.20260729.g3499c84f7 by
37
+ @gemini-cli-robot in
38
+ [#28573](https://github.com/google-gemini/gemini-cli/pull/28573)
39
+ - fix(core): classify capacity exhaustion as terminal to prevent retry hangs by
40
+ @luisfelipe-alt in
41
+ [#28599](https://github.com/google-gemini/gemini-cli/pull/28599)
42
+ - fix(core,cli): propagate InvalidStreamError details to UI for specific empty
43
+ response guidance by @DavidAPierce in
44
+ [#28566](https://github.com/google-gemini/gemini-cli/pull/28566)
45
+ - fix(cli): fall back to embedded macOS seatbelt profiles if missing by
46
+ @amelidev in [#28551](https://github.com/google-gemini/gemini-cli/pull/28551)
47
+ - feat(pr-generator-core): add environment config parser, command executor,
48
+ GitHub R… by @joneba-google in
49
+ [#28435](https://github.com/google-gemini/gemini-cli/pull/28435)
50
+ - feat(pr-generator-orchestrator): implement iterative bug-fixing state machine
51
+ and container worker entrypoint by @joneba-google in
52
+ [#28433](https://github.com/google-gemini/gemini-cli/pull/28433)
53
+ - feat(pr-generator-infra): configure Cloud Run job, Workflows definition, and
54
+ Dockerfile by @joneba-google in
55
+ [#28431](https://github.com/google-gemini/gemini-cli/pull/28431)
56
+ - fix(release): handle npm dist-tag deletion failures on registries that forbid
57
+ it by @DavidAPierce in
58
+ [#28694](https://github.com/google-gemini/gemini-cli/pull/28694)
59
+ - fix(core): stop a new user message fusing into an unanswered tool response by
60
+ @adamfweidman in
61
+ [#28700](https://github.com/google-gemini/gemini-cli/pull/28700)
62
+ - fix(core,cli): repair /compress session reload and quota-fallback tool
63
+ response loss by @adamfweidman in
64
+ [#28672](https://github.com/google-gemini/gemini-cli/pull/28672)
65
+ - fix(core): preserve functionCall thoughtSignature when stripping thought parts
66
+ by @sarbojitrana in
67
+ [#28607](https://github.com/google-gemini/gemini-cli/pull/28607)
68
+ - fix(core): unwrap and parse nested gaxios streaming errors from cause message
69
+ by @luisfelipe-alt in
70
+ [#28689](https://github.com/google-gemini/gemini-cli/pull/28689)
29
71
  - Changelog for v0.53.0-preview.0 by @gemini-cli-robot in
30
72
  [#28507](https://github.com/google-gemini/gemini-cli/pull/28507)
31
73
  - Changelog for v0.52.0 by @gemini-cli-robot in
@@ -68,4 +110,4 @@ npm install -g @google/gemini-cli@preview
68
110
  [#28565](https://github.com/google-gemini/gemini-cli/pull/28565)
69
111
 
70
112
  **Full Changelog**:
71
- https://github.com/google-gemini/gemini-cli/compare/v0.53.0-preview.0...v0.54.0-preview.0
113
+ https://github.com/google-gemini/gemini-cli/compare/v0.53.0-preview.0...v0.55.0-preview.1
@@ -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 = "b39816c87";
7
- export declare const CLI_VERSION = "0.55.0-preview.2";
6
+ export declare const GIT_COMMIT_INFO = "cf22ac7e8";
7
+ export declare const CLI_VERSION = "0.56.0-nightly.20260808.gcf22ac7e8";
@@ -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 = 'b39816c87';
9
- export const CLI_VERSION = '0.55.0-preview.2';
8
+ export const GIT_COMMIT_INFO = 'cf22ac7e8';
9
+ export const CLI_VERSION = '0.56.0-nightly.20260808.gcf22ac7e8';
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"}