Skip to content

fix(patch): cherry-pick 188e255 to release/v0.55.0-preview.2-pr-28730 to patch version v0.55.0-preview.2 and create version 0.55.0-preview.3 - #28771

Merged
DavidAPierce merged 1 commit into
release/v0.55.0-preview.2-pr-28730from
hotfix/v0.55.0-preview.2/0.55.0-preview.3/preview/cherry-pick-188e255/pr-28730
Aug 11, 2026
Merged

fix(patch): cherry-pick 188e255 to release/v0.55.0-preview.2-pr-28730 to patch version v0.55.0-preview.2 and create version 0.55.0-preview.3#28771
DavidAPierce merged 1 commit into
release/v0.55.0-preview.2-pr-28730from
hotfix/v0.55.0-preview.2/0.55.0-preview.3/preview/cherry-pick-188e255/pr-28730

Conversation

@gemini-cli-robot

Copy link
Copy Markdown
Collaborator

This PR automatically cherry-picks commit 188e255 to patch version v0.55.0-preview.2 in the preview release to create version 0.55.0-preview.3.

@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 introduces improvements to error handling and quota management. It specifically addresses capacity-related errors by providing clearer user feedback and enabling automatic retries, while also fixing a discrepancy in how specific model quotas are tracked and reported.

Highlights

  • Capacity Error Handling: Introduced detection and specialized handling for 'MODEL_CAPACITY_EXHAUSTED' errors, providing a user-friendly message during high demand and enabling automatic retries in low-verbosity mode.
  • Model Quota Mapping: Added logic to map secondary Gemini 3.5 Flash model IDs to the default model ID in quota calculations to ensure accurate tracking.
  • Testing Improvements: Added comprehensive unit tests for capacity error scenarios and updated existing tests to verify correct directory initialization behavior.
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.

@github-actions github-actions Bot added the size/l A large sized PR label Aug 11, 2026
@github-actions

Copy link
Copy Markdown

📊 PR Size: size/L

  • Lines changed: 281
  • Additions: +262
  • Deletions: -19
  • Files changed: 8

@DavidAPierce
DavidAPierce enabled auto-merge (squash) August 11, 2026 15:32

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

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.

Code Review

This pull request introduces robust handling for model capacity exceeded errors, including detecting capacity exhaustion, displaying specialized high-demand messages, and auto-retrying in low verbosity mode. It also adds reverse-mapping for gemini-3-flash back to gemini-3.5-flash when updating model quotas. The review feedback highlights a critical issue in config.ts where an exhausted quota (with a fraction of 0) may fail to be saved on the first fetch because the default limit of 0 fails the validation check; a code suggestion is provided to default this limit to 100 instead.

Comment on lines 2335 to +2338
limit =
bucket.remainingFraction > 0
? Math.round(remaining / bucket.remainingFraction)
: (this.modelQuotas.get(bucket.modelId)?.limit ?? 0);
: (this.modelQuotas.get(modelId)?.limit ?? 0);

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

When remainingFraction is 0 (indicating the quota is completely exhausted) and there is no previously stored quota limit for the model, defaulting the limit to 0 causes the limit > 0 validation check on line 2345 to fail. As a result, the exhausted quota (remaining: 0) is never stored in modelQuotas, and subsequent calls to getQuotaRemaining() will return undefined (unknown/unlimited) instead of 0.

To ensure exhausted quotas are correctly registered on the first fetch, we should default the limit to 100 (consistent with the normalized scale used in the else block) when no previous limit exists.

Suggested change
limit =
bucket.remainingFraction > 0
? Math.round(remaining / bucket.remainingFraction)
: (this.modelQuotas.get(bucket.modelId)?.limit ?? 0);
: (this.modelQuotas.get(modelId)?.limit ?? 0);
limit =
bucket.remainingFraction > 0
? Math.round(remaining / bucket.remainingFraction)
: (this.modelQuotas.get(modelId)?.limit ?? 100);

@github-actions

Copy link
Copy Markdown

Size Change: +1.97 kB (+0.01%)

Total Size: 35.2 MB

Filename Size Change
./bundle/chunk-4MZY2MU4.js 0 B -19.5 kB (removed) 🏆
./bundle/chunk-5BQIPYQG.js 0 B -16.6 MB (removed) 🏆
./bundle/chunk-5LV2D3UJ.js 0 B -49.2 kB (removed) 🏆
./bundle/chunk-B2L3SDIN.js 0 B -3.43 kB (removed) 🏆
./bundle/chunk-DTRCRX5S.js 0 B -13 kB (removed) 🏆
./bundle/chunk-G64B75V7.js 0 B -661 kB (removed) 🏆
./bundle/chunk-LXFJ4EDJ.js 0 B -3.77 kB (removed) 🏆
./bundle/chunk-TJZ4BJPX.js 0 B -3.65 MB (removed) 🏆
./bundle/core-AISVDU3R.js 0 B -50.6 kB (removed) 🏆
./bundle/devtoolsService-XS4LDSB2.js 0 B -147 kB (removed) 🏆
./bundle/gemini-XYACW4N3.js 0 B -614 kB (removed) 🏆
./bundle/interactiveCli-W32B4APO.js 0 B -1.31 MB (removed) 🏆
./bundle/liteRtServerManager-NKNRUPIY.js 0 B -2.08 kB (removed) 🏆
./bundle/oauth2-provider-E5VSAGB5.js 0 B -9.12 kB (removed) 🏆
./bundle/chunk-465HAKIV.js 49.2 kB +49.2 kB (new file) 🆕
./bundle/chunk-6ZFNJ2OZ.js 16.6 MB +16.6 MB (new file) 🆕
./bundle/chunk-7THPIWXL.js 3.77 kB +3.77 kB (new file) 🆕
./bundle/chunk-AKFHFOOJ.js 661 kB +661 kB (new file) 🆕
./bundle/chunk-DNLUVUYU.js 13 kB +13 kB (new file) 🆕
./bundle/chunk-KALKQHNO.js 3.43 kB +3.43 kB (new file) 🆕
./bundle/chunk-PGRRQXW3.js 19.5 kB +19.5 kB (new file) 🆕
./bundle/chunk-TGDJJQYQ.js 3.65 MB +3.65 MB (new file) 🆕
./bundle/core-F4VD5IRB.js 50.6 kB +50.6 kB (new file) 🆕
./bundle/devtoolsService-4PF4QYHF.js 147 kB +147 kB (new file) 🆕
./bundle/gemini-KSV75Y2K.js 614 kB +614 kB (new file) 🆕
./bundle/interactiveCli-H5SDOUYV.js 1.31 MB +1.31 MB (new file) 🆕
./bundle/liteRtServerManager-EOFXN3AI.js 2.08 kB +2.08 kB (new file) 🆕
./bundle/oauth2-provider-32VDB2JO.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-664ZODQF.js 124 kB 0 B
./bundle/chunk-DAHVX5MI.js 206 kB 0 B
./bundle/chunk-IUUIT4SU.js 56.5 kB 0 B
./bundle/chunk-L5V3KIDT.js 1.62 kB 0 B
./bundle/chunk-TUDYL3X4.js 40.3 kB 0 B
./bundle/cleanup-PDTCALTJ.js 0 B -902 B (removed) 🏆
./bundle/devtools-TYCPOPV3.js 683 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-E7RMVJWU.js 11.7 kB 0 B
./bundle/multipart-parser-KPBZEGQU.js 11.7 kB 0 B
./bundle/sandbox-macos-permissive-open.sb 5.29 kB 0 B
./bundle/sandbox-macos-permissive-proxied.sb 5.58 kB 0 B
./bundle/sandbox-macos-restrictive-open.sb 3.3 kB 0 B
./bundle/sandbox-macos-restrictive-proxied.sb 3.5 kB 0 B
./bundle/sandbox-macos-strict-open.sb 4.75 kB 0 B
./bundle/sandbox-macos-strict-proxied.sb 4.96 kB 0 B
./bundle/src-65GKNWUJ.js 45.4 kB 0 B
./bundle/src-U45KTUYT.js 45.7 kB 0 B
./bundle/src-XZYPU6PJ.js 352 kB 0 B
./bundle/start-QSSNBDTL.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 363 kB 0 B
./bundle/cleanup-5EQVREQ7.js 902 B +902 B (new file) 🆕
./bundle/start-BOYWETOI.js 622 B +622 B (new file) 🆕

compressed-size-action

@DavidAPierce
DavidAPierce merged commit da3710e into release/v0.55.0-preview.2-pr-28730 Aug 11, 2026
27 checks passed
@DavidAPierce
DavidAPierce deleted the hotfix/v0.55.0-preview.2/0.55.0-preview.3/preview/cherry-pick-188e255/pr-28730 branch August 11, 2026 15:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size/l A large sized PR

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants