Skip to content

chore(deps-dev): bump opencode-antigravity-auth from 1.3.1-beta.0 to 1.3.2#24

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/opencode-antigravity-auth-1.3.2
Closed

chore(deps-dev): bump opencode-antigravity-auth from 1.3.1-beta.0 to 1.3.2#24
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/opencode-antigravity-auth-1.3.2

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 28, 2026

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps opencode-antigravity-auth from 1.3.1-beta.0 to 1.3.2.

Release notes

Sourced from opencode-antigravity-auth's releases.

v1.3.2

Added

  • Quota check and account management in auth login - Added new --quota and --manage options to the auth login command for checking account quota status and managing accounts directly from the CLI (#284)

  • Request timing jitter - Added configurable random delay to requests to reduce detection patterns and improve rate limit resilience. Requests now include small random timing variations

  • Header randomization for fingerprint diversity - Headers are now randomized to create more diverse fingerprints, reducing the likelihood of requests being grouped and rate-limited together

  • Per-account fingerprint persistence - Fingerprints are now persisted per-account in storage, allowing consistent identity across sessions and enabling fingerprint history tracking

    • Added fingerprint restore operations to AccountManager
    • Extended per-account fingerprint history for better tracking
    • Fingerprint now shown in debug output
  • Scheduling mode configuration - Added new scheduling modes including cache-first mode that prioritizes accounts with cached tokens, reducing authentication overhead

  • Failure count TTL expiration - Account failure counts now expire after a configurable time period, allowing accounts to naturally recover from temporary issues

  • Exponential backoff for 503/529 errors - Implemented exponential backoff with jitter for capacity-related errors, matching behavior of Antigravity-Manager

Changed

  • Increased MODEL_CAPACITY backoff to 45s with jitter - Extended the base backoff time for model capacity errors from previous values to 45 seconds, with added jitter to prevent thundering herd issues

  • Regenerate fingerprint after capacity retry exhaustion - When all capacity retries are exhausted, the fingerprint is now regenerated to potentially get assigned to a different backend partition

  • Enhanced duration parsing for Go format - Improved parsing of duration strings to handle Go-style duration formats (e.g., 1h30m) used in some API responses

Fixed

  • Prevent toast spam for rate limit warnings - Added 5-second debounce for rate limit warning toasts to prevent notification flooding when multiple requests hit rate limits simultaneously (#286)

  • getEnabledAccounts now treats undefined as enabled - Fixed issue where accounts without an explicit enabled field were incorrectly filtered out. Accounts now default to enabled when the field is undefined

  • Show correct position in account toast for enabled accounts - Fixed the account position indicator in toast notifications to only count enabled accounts, showing accurate position like "Account 2/5" instead of including disabled accounts

  • Filter disabled accounts in all selection methods - Ensured disabled accounts are properly excluded from all account selection strategies (round-robin, least-used, random, etc.)

  • Robust handling for capacity/5xx errors - Implemented comprehensive retry logic for model capacity and server errors, achieving parity with Antigravity-Manager's behavior

    • Reordered parsing logic to prioritize capacity checks
    • Fixed loop retry logic to prevent state pollution
    • Added capacity retry limit to prevent infinite loops (#263)
  • Fixed @​opencode-ai/plugin dependency location - Moved @opencode-ai/plugin from devDependencies to dependencies section, fixing runtime errors when the plugin was installed without dev dependencies

Removed

  • Removed deprecated web_search configuration - The deprecated web_search.default_mode and web_search.grounding_threshold configuration options have been fully removed. Use the google_search tool instead (introduced in 1.3.1)

v1.3.2-beta.1 (Beta)

... (truncated)

Changelog

Sourced from opencode-antigravity-auth's changelog.

[1.3.2] - 2026-01-27

Added

  • Quota check and account management in auth login - Added new --quota and --manage options to the auth login command for checking account quota status and managing accounts directly from the CLI (#284)

  • Request timing jitter - Added configurable random delay to requests to reduce detection patterns and improve rate limit resilience. Requests now include small random timing variations

  • Header randomization for fingerprint diversity - Headers are now randomized to create more diverse fingerprints, reducing the likelihood of requests being grouped and rate-limited together

  • Per-account fingerprint persistence - Fingerprints are now persisted per-account in storage, allowing consistent identity across sessions and enabling fingerprint history tracking

    • Added fingerprint restore operations to AccountManager
    • Extended per-account fingerprint history for better tracking
    • Fingerprint now shown in debug output
  • Scheduling mode configuration - Added new scheduling modes including cache-first mode that prioritizes accounts with cached tokens, reducing authentication overhead

  • Failure count TTL expiration - Account failure counts now expire after a configurable time period, allowing accounts to naturally recover from temporary issues

  • Exponential backoff for 503/529 errors - Implemented exponential backoff with jitter for capacity-related errors, matching behavior of Antigravity-Manager

Changed

  • Increased MODEL_CAPACITY backoff to 45s with jitter - Extended the base backoff time for model capacity errors from previous values to 45 seconds, with added jitter to prevent thundering herd issues

  • Regenerate fingerprint after capacity retry exhaustion - When all capacity retries are exhausted, the fingerprint is now regenerated to potentially get assigned to a different backend partition

  • Enhanced duration parsing for Go format - Improved parsing of duration strings to handle Go-style duration formats (e.g., 1h30m) used in some API responses

Fixed

  • Prevent toast spam for rate limit warnings - Added 5-second debounce for rate limit warning toasts to prevent notification flooding when multiple requests hit rate limits simultaneously (#286)

  • getEnabledAccounts now treats undefined as enabled - Fixed issue where accounts without an explicit enabled field were incorrectly filtered out. Accounts now default to enabled when the field is undefined

  • Show correct position in account toast for enabled accounts - Fixed the account position indicator in toast notifications to only count enabled accounts, showing accurate position like "Account 2/5" instead of including disabled accounts

  • Filter disabled accounts in all selection methods - Ensured disabled accounts are properly excluded from all account selection strategies (round-robin, least-used, random, etc.)

  • Robust handling for capacity/5xx errors - Implemented comprehensive retry logic for model capacity and server errors, achieving parity with Antigravity-Manager's behavior

    • Reordered parsing logic to prioritize capacity checks
    • Fixed loop retry logic to prevent state pollution
    • Added capacity retry limit to prevent infinite loops (#263)
  • Fixed @​opencode-ai/plugin dependency location - Moved @opencode-ai/plugin from devDependencies to dependencies section, fixing runtime errors when the plugin was installed without dev dependencies

Removed

  • Removed deprecated web_search configuration - The deprecated web_search.default_mode and web_search.grounding_threshold configuration options have been fully removed. Use the google_search tool instead (introduced in 1.3.1)

... (truncated)

Commits
  • 39e5206 v1.3.2
  • 19eaa40 Merge pull request #294 from NoeFabris/dev
  • db5b2de fix: remove default value for remainingFraction in aggregateQuota function
  • bfe19a5 Merge pull request #280 from rothnic/docs/mcp-troubleshooting
  • 94e42e3 feat: add quota checking and management options to documentation
  • 143ac78 Update package.json
  • af888a7 Merge pull request #284 from Qwinty/feat/quota-checker-v2
  • a85929e Merge pull request #286 from PhucTruong-ctrl/fix/toast-spam-and-health-check
  • b39ce4b fix: prevent toast spam for rate limit warnings
  • d1a86cb fix: getEnabledAccounts should treat undefined as enabled
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [opencode-antigravity-auth](https://github.com/NoeFabris/opencode-antigravity-auth) from 1.3.1-beta.0 to 1.3.2.
- [Release notes](https://github.com/NoeFabris/opencode-antigravity-auth/releases)
- [Changelog](https://github.com/NoeFabris/opencode-antigravity-auth/blob/main/CHANGELOG.md)
- [Commits](NoeFabris/opencode-antigravity-auth@v1.3.1-beta.0...v1.3.2)

---
updated-dependencies:
- dependency-name: opencode-antigravity-auth
  dependency-version: 1.3.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jan 28, 2026
@codecov
Copy link

codecov bot commented Jan 28, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

chindris-mihai-alexandru added a commit that referenced this pull request Jan 29, 2026
This commit updates the following dependencies to resolve open dependabot PRs:

- ai from 6.0.43 to 6.0.57 (#23)
- @opencode-ai/plugin from 1.1.28 to 1.1.39 (#22)
- @vitest/ui from 4.0.17 to 4.0.18 (#21)
- zod from 4.3.5 to 4.3.6 (#25)
- opencode-antigravity-auth from 1.3.1-beta.0 to 1.3.2 (#24)

All tests are passing with the updated dependencies.
@chindris-mihai-alexandru
Copy link
Collaborator

Closed by commit c05665d which incorporates all dependency updates

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 29, 2026

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/opencode-antigravity-auth-1.3.2 branch January 29, 2026 19:53
@github-actions github-actions bot locked and limited conversation to collaborators Jan 29, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant