chore: release v1.1028.0 - #12429
Merged
Merged
Conversation
Contributor
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
kaladinlight
enabled auto-merge
June 15, 2026 21:21
kaladinlight
disabled auto-merge
June 15, 2026 21:22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Feature flag analysis
Confirmed OFF in production (false in
.env, not overridden to true in.env.production), ON in development:VITE_FEATURE_BOB_GATEWAY_SWAP- dev-onlyVITE_FEATURE_BOB,VITE_FEATURE_WORLDCHAIN,VITE_FEATURE_CELO- dev-onlyThe three BOB Gateway swapper commits (#12428, #12426, #12275) map to
VITE_FEATURE_BOB_GATEWAY_SWAP, which is OFF in production. Everything else is live in production.Production changes - testing required
Public API + swap widget chain restriction
Narrows the public API and embeddable swap widget to the 16 production-validated chains (8 EVM, 4 UTXO, 3 Cosmos SDK, Solana) and drops WorldChain from the widget. Test that the public API only returns supported chains and that the swap widget no longer offers WorldChain or any feature-flagged-off chains for quotes/swaps.
Swap widget demo
Adds an Inline/Modal display toggle to the widget demo customizer, with a "Swap crypto" CTA that opens the widget in a centered overlay. Test the toggle in the demo: open/close via backdrop click, Escape, and close button, and confirm body scroll locks while the modal is open.
Fixes, deps, and infra
Asset data regeneration plus a workspace-wide vitest 4.1.0 upgrade and test config consolidation. No testing required.
Dev/local only - no production testing required
BOB Gateway swapper (BTC ↔ BOB)
Adds the BOB Gateway swapper enabling native BTC ↔ BOB swaps via the BOB Gateway protocol (
@gobob/bob-sdk), plus follow-up fixes: omitting the sender on UTXO sells to avoid the per-address confirmed-funds rejection, buffering the broadcast EVM gas limit by 20% to reduce out-of-gas reverts, and raising the default slippage. Gated behindVITE_FEATURE_BOB_GATEWAY_SWAP, off in production.