Skip to content

fix(patch): cherry-pick f40498d to release/v0.46.0-preview.1-pr-27676 to patch version v0.46.0-preview.1 and create version 0.46.0-preview.2#27699

Merged
galz10 merged 1 commit into
release/v0.46.0-preview.1-pr-27676from
hotfix/v0.46.0-preview.1/0.46.0-preview.2/preview/cherry-pick-f40498d/pr-27676
Jun 5, 2026
Merged

fix(patch): cherry-pick f40498d to release/v0.46.0-preview.1-pr-27676 to patch version v0.46.0-preview.1 and create version 0.46.0-preview.2#27699
galz10 merged 1 commit into
release/v0.46.0-preview.1-pr-27676from
hotfix/v0.46.0-preview.1/0.46.0-preview.2/preview/cherry-pick-f40498d/pr-27676

Conversation

@gemini-cli-robot
Copy link
Copy Markdown
Collaborator

This PR automatically cherry-picks commit f40498d to patch version v0.46.0-preview.1 in the preview release to create version 0.46.0-preview.2.

@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request cherry-picks a specific fix into the preview release branch to ensure important 'Antigravity' announcements are not suppressed by existing banner frequency capping logic. This change ensures critical messaging reaches users consistently.

Highlights

  • Antigravity Announcement Visibility: Updated the banner logic to ensure that announcements containing 'Antigravity' remain visible even if the user has already exceeded the default maximum banner show count.
  • Test Coverage: Added a new test case to verify that banners with 'Antigravity' content are correctly displayed regardless of the persistent show count.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize the Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counterproductive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request modifies the banner display logic in useBanner.ts to bypass the maximum display limit if the banner text contains "Antigravity", and adds a corresponding test. However, the reviewer pointed out that the patch accidentally truncated an existing test assertion in useBanner.test.ts. Furthermore, the reviewer noted that according to the project guidelines, all banners—including special announcements like Antigravity—must be hidden after reaching the maximum display count, meaning the proposed bypass logic is incorrect and should be reverted.

Comment on lines +80 to 98
});

it('should not hide banner if show count exceeds max limit (Legacy format) if it contains an Antigravity announcement', async () => {
const antigravityBannerData = {
defaultText: 'Antigravity is coming to town!',
warningText: '',
};

mockedPersistentStateGet.mockReturnValue({
[crypto
.createHash('sha256')
.update(antigravityBannerData.defaultText)
.digest('hex')]: 5,
});

const { result } = await renderHook(() => useBanner(defaultBannerData));
const { result } = await renderHook(() => useBanner(antigravityBannerData));

expect(result.current.bannerText).toBe('');
expect(result.current.bannerText).toBe('Antigravity is coming to town!');
});
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The cherry-pick or patch modification accidentally truncated the existing test 'should hide banner if show count exceeds max limit (Legacy format)'. This restores the original test's assertion. Additionally, ensure that all banners, including those with warnings or special announcements like Antigravity, are hidden after reaching the maximum display count.

    const { result } = await renderHook(() => useBanner(defaultBannerData));

    expect(result.current.bannerText).toBe('');
  });

  it('should hide banner if show count exceeds max limit (Legacy format) even if it contains an Antigravity announcement', async () => {
    const antigravityBannerData = {
      defaultText: 'Antigravity is coming to town!',
      warningText: '',
    };

    mockedPersistentStateGet.mockReturnValue({
      [crypto
        .createHash('sha256')
        .update(antigravityBannerData.defaultText)
        .digest('hex')]: 5,
    });

    const { result } = await renderHook(() => useBanner(antigravityBannerData));

    expect(result.current.bannerText).toBe('');
  });
References
  1. Banners, including those with warnings, should be hidden after reaching a maximum display count.

@github-actions github-actions Bot added the size/s A small PR label Jun 5, 2026
@github-actions
Copy link
Copy Markdown

github-actions Bot commented Jun 5, 2026

📊 PR Size: size/S

  • Lines changed: 22
  • Additions: +19
  • Deletions: -3
  • Files changed: 2

@github-actions
Copy link
Copy Markdown

github-actions Bot commented Jun 5, 2026

Size Change: +36 B (0%)

Total Size: 33.9 MB

Filename Size Change
./bundle/chunk-36ALLQKL.js 0 B -13 kB (removed) 🏆
./bundle/chunk-EEKPWYJZ.js 0 B -3.43 kB (removed) 🏆
./bundle/chunk-EUJYLJ35.js 0 B -16.4 MB (removed) 🏆
./bundle/chunk-HAVW3GMR.js 0 B -2.79 MB (removed) 🏆
./bundle/chunk-LRBUZ7U7.js 0 B -661 kB (removed) 🏆
./bundle/chunk-MEKOMWUN.js 0 B -19.5 kB (removed) 🏆
./bundle/chunk-N7P3TPWG.js 0 B -3.77 kB (removed) 🏆
./bundle/chunk-VYXOOP64.js 0 B -49.2 kB (removed) 🏆
./bundle/core-NJA6NOHV.js 0 B -49.7 kB (removed) 🏆
./bundle/devtoolsService-FUT37WEF.js 0 B -28 kB (removed) 🏆
./bundle/gemini-BOMEIO25.js 0 B -589 kB (removed) 🏆
./bundle/interactiveCli-WEITSZ53.js 0 B -1.3 MB (removed) 🏆
./bundle/liteRtServerManager-IXUQ2DZH.js 0 B -2.08 kB (removed) 🏆
./bundle/oauth2-provider-R7LSL7BC.js 0 B -9.12 kB (removed) 🏆
./bundle/chunk-47BKDBVU.js 3.77 kB +3.77 kB (new file) 🆕
./bundle/chunk-5HH7PILQ.js 13 kB +13 kB (new file) 🆕
./bundle/chunk-7XFCX2E5.js 3.43 kB +3.43 kB (new file) 🆕
./bundle/chunk-CQE6TS4F.js 49.2 kB +49.2 kB (new file) 🆕
./bundle/chunk-FONYIK2H.js 19.5 kB +19.5 kB (new file) 🆕
./bundle/chunk-HBBC2NLF.js 16.4 MB +16.4 MB (new file) 🆕
./bundle/chunk-LHRHUSM6.js 661 kB +661 kB (new file) 🆕
./bundle/chunk-P4NNVMX2.js 2.79 MB +2.79 MB (new file) 🆕
./bundle/core-WPIYNUON.js 49.7 kB +49.7 kB (new file) 🆕
./bundle/devtoolsService-QJYX2TX4.js 28 kB +28 kB (new file) 🆕
./bundle/gemini-X4RG3QFP.js 589 kB +589 kB (new file) 🆕
./bundle/interactiveCli-NED3FTPS.js 1.3 MB +1.3 MB (new file) 🆕
./bundle/liteRtServerManager-S35TQTD3.js 2.08 kB +2.08 kB (new file) 🆕
./bundle/oauth2-provider-DEL3I3RV.js 9.12 kB +9.12 kB (new file) 🆕
ℹ️ View Unchanged
Filename Size Change
./bundle/bundled/third_party/index.js 8 MB 0 B
./bundle/chunk-34MYV7JD.js 2.45 kB 0 B
./bundle/chunk-5AUYMPVF.js 858 B 0 B
./bundle/chunk-5PS3AYFU.js 1.18 kB 0 B
./bundle/chunk-6HI7VNOG.js 124 kB 0 B
./bundle/chunk-DAHVX5MI.js 206 kB 0 B
./bundle/chunk-IUUIT4SU.js 56.5 kB 0 B
./bundle/chunk-TUDYL3X4.js 40.3 kB 0 B
./bundle/cleanup-HEDBXHGT.js 0 B -902 B (removed) 🏆
./bundle/devtools-V7NE4CQA.js 696 kB 0 B
./bundle/events-XB7DADIJ.js 418 B 0 B
./bundle/examples/hooks/scripts/on-start.js 188 B 0 B
./bundle/examples/mcp-server/example.js 1.43 kB 0 B
./bundle/gemini.js 5.38 kB 0 B
./bundle/getMachineId-bsd-TXG52NKR.js 1.55 kB 0 B
./bundle/getMachineId-darwin-7OE4DDZ6.js 1.55 kB 0 B
./bundle/getMachineId-linux-SHIFKOOX.js 1.34 kB 0 B
./bundle/getMachineId-unsupported-5U5DOEYY.js 1.06 kB 0 B
./bundle/getMachineId-win-6KLLGOI4.js 1.72 kB 0 B
./bundle/https-proxy-agent-AVGR4LHR.js 490 B 0 B
./bundle/multipart-parser-KPBZEGQU.js 11.7 kB 0 B
./bundle/sandbox-macos-permissive-open.sb 890 B 0 B
./bundle/sandbox-macos-permissive-proxied.sb 1.31 kB 0 B
./bundle/sandbox-macos-restrictive-open.sb 3.36 kB 0 B
./bundle/sandbox-macos-restrictive-proxied.sb 3.56 kB 0 B
./bundle/sandbox-macos-strict-open.sb 4.82 kB 0 B
./bundle/sandbox-macos-strict-proxied.sb 5.02 kB 0 B
./bundle/src-LG4OHBW7.js 233 kB 0 B
./bundle/src-QVCVGIUX.js 47 kB 0 B
./bundle/start-R26AH3I5.js 0 B -622 B (removed) 🏆
./bundle/tree-sitter-7U6MW5PS.js 274 kB 0 B
./bundle/tree-sitter-bash-34ZGLXVX.js 1.84 MB 0 B
./bundle/worker/worker-entry.js 361 kB 0 B
./bundle/cleanup-ZRGHLOH6.js 902 B +902 B (new file) 🆕
./bundle/start-ZMWRNC4L.js 622 B +622 B (new file) 🆕

compressed-size-action

@gemini-cli gemini-cli Bot added the status/need-issue Pull requests that need to have an associated issue. label Jun 5, 2026
@galz10 galz10 merged commit 310cae2 into release/v0.46.0-preview.1-pr-27676 Jun 5, 2026
27 checks passed
@galz10 galz10 deleted the hotfix/v0.46.0-preview.1/0.46.0-preview.2/preview/cherry-pick-f40498d/pr-27676 branch June 5, 2026 19:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size/s A small PR status/need-issue Pull requests that need to have an associated issue.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants