chore(deps): bump the frontend-dependencies group in /bimex-frontend with 8 updates#210
Merged
David1984TK merged 1 commit intoJul 7, 2026
Conversation
Bumps the frontend-dependencies group in /bimex-frontend with 8 updates: | Package | From | To | | --- | --- | --- | | [@creit.tech/stellar-wallets-kit](https://github.com/Creit-Tech/Stellar-Wallets-Kit) | `1.9.5` | `2.5.0` | | [@sentry/react](https://github.com/getsentry/sentry-javascript) | `10.62.0` | `10.63.0` | | [@supabase/supabase-js](https://github.com/supabase/supabase-js/tree/HEAD/packages/core/supabase-js) | `2.108.2` | `2.110.0` | | [i18next](https://github.com/i18next/i18next) | `26.3.3` | `26.3.4` | | [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `1.21.0` | `1.23.0` | | [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.18.0` | `7.18.1` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.14` | `19.2.17` | | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.1.0` | `8.1.3` | Updates `@creit.tech/stellar-wallets-kit` from 1.9.5 to 2.5.0 - [Release notes](https://github.com/Creit-Tech/Stellar-Wallets-Kit/releases) - [Changelog](https://github.com/Creit-Tech/Stellar-Wallets-Kit/blob/main/CHANGELOG.md) - [Commits](Creit-Tech/Stellar-Wallets-Kit@v1.9.5...v2.5.0) Updates `@sentry/react` from 10.62.0 to 10.63.0 - [Release notes](https://github.com/getsentry/sentry-javascript/releases) - [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md) - [Commits](getsentry/sentry-javascript@10.62.0...10.63.0) Updates `@supabase/supabase-js` from 2.108.2 to 2.110.0 - [Release notes](https://github.com/supabase/supabase-js/releases) - [Changelog](https://github.com/supabase/supabase-js/blob/master/packages/core/supabase-js/CHANGELOG.md) - [Commits](https://github.com/supabase/supabase-js/commits/v2.110.0/packages/core/supabase-js) Updates `i18next` from 26.3.3 to 26.3.4 - [Release notes](https://github.com/i18next/i18next/releases) - [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md) - [Commits](i18next/i18next@v26.3.3...v26.3.4) Updates `lucide-react` from 1.21.0 to 1.23.0 - [Release notes](https://github.com/lucide-icons/lucide/releases) - [Commits](https://github.com/lucide-icons/lucide/commits/1.23.0/packages/lucide-react) Updates `react-router-dom` from 7.18.0 to 7.18.1 - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/react-router-dom@7.18.1/packages/react-router-dom/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.18.1/packages/react-router-dom) Updates `@types/react` from 19.2.14 to 19.2.17 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `vite` from 8.1.0 to 8.1.3 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v8.1.3/packages/vite) --- updated-dependencies: - dependency-name: "@creit.tech/stellar-wallets-kit" dependency-version: 2.5.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: frontend-dependencies - dependency-name: "@sentry/react" dependency-version: 10.63.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: frontend-dependencies - dependency-name: "@supabase/supabase-js" dependency-version: 2.110.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: frontend-dependencies - dependency-name: i18next dependency-version: 26.3.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-dependencies - dependency-name: lucide-react dependency-version: 1.23.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: frontend-dependencies - dependency-name: react-router-dom dependency-version: 7.18.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-dependencies - dependency-name: "@types/react" dependency-version: 19.2.17 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: frontend-dependencies - dependency-name: vite dependency-version: 8.1.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: frontend-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
Author
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
6 tasks
David1984TK
pushed a commit
that referenced
this pull request
Jul 7, 2026
CI's "Contrato Soroban" job has been failing on main since the #209/#210 dependency bumps merged (in fact since before them): bimex/Cargo.lock was gitignored, so every CI run re-resolved dependencies from scratch. Since soroban-env-host 26.1.3 declares `ed25519-dalek = ">=2.0.0"` with no upper bound, the resolver started picking the newly published ed25519-dalek 3.0.0, whose rand_core trait bounds are incompatible with the ChaCha20Rng used in soroban-env-host's own testutils.rs, breaking `cargo test` entirely with an unrelated-looking trait error. Fix: force the whole graph onto ed25519-dalek 2.2.0 (`cargo update -p ed25519-dalek@3.0.0 --precise 2.2.0`) and commit the resulting Cargo.lock so builds are reproducible instead of drifting with upstream releases. Also regenerated the contract's test_snapshots/, which were stale since the soroban-sdk 25->26 bump (#196) and had never been refreshed because CI hadn't successfully run `cargo test` since. Verified: cargo test (64/64), cargo clippy -D warnings, and cargo audit --deny warnings all pass in bimex/.
David1984TK
pushed a commit
that referenced
this pull request
Jul 7, 2026
The v1->v2 bump (#210) didn't just move exports around (fixed in the previous commit) — it turned StellarWalletsKit into an all-static class backed by module-level signal state, dropping the old per-instance API entirely. That silently broke wallet auto-reconnect at runtime even though the app built and rendered fine: - `new StellarWalletsKit(...)` no longer configures anything; use the static `StellarWalletsKit.init(...)` instead. - `kit.setWallet(id)` is now the static `StellarWalletsKit.setWallet(id)` (confirmed via a live TypeError: "walletKit.setWallet is not a function" while reproducing the E2E failure). - `kit.openModal({ onWalletSelected, onClosed })` was replaced by `StellarWalletsKit.authModal()`, which returns a promise resolving to `{ address }` directly instead of taking callbacks. - `kit.getAddress({ skipRequestAccess })` became `fetchAddress()` (no options) for a live lookup, since `getAddress()` now only returns the cached in-memory address. Root-caused by reproducing the failing Playwright golden-path spec locally against the mocked Freighter fixture, which surfaced the setWallet TypeError directly. Verified: bimex-frontend vitest (124/124) and all 25 Playwright E2E specs (golden-path, filtros, landing) pass locally against the mocked wallet fixtures.
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.
Bumps the frontend-dependencies group in /bimex-frontend with 8 updates:
1.9.52.5.010.62.010.63.02.108.22.110.026.3.326.3.41.21.01.23.07.18.07.18.119.2.1419.2.178.1.08.1.3Updates
@creit.tech/stellar-wallets-kitfrom 1.9.5 to 2.5.0Release notes
Sourced from
@creit.tech/stellar-wallets-kit's releases.... (truncated)
Changelog
Sourced from
@creit.tech/stellar-wallets-kit's changelog.... (truncated)
Commits
282fe7dUpgrade to 2.5.0456a0cfUpgrade wallet connect dependenciesb41c236Merge branch 'main' of github.com:Creit-Tech/Stellar-Wallets-Kit465f5fcMerge pull request #98 from IotrustGitHub/dcent-wallet-module53144f8Chore: Translate D'CENT module test descriptions to Englishf53c801Fix: Wait for injection sentinel in D'CENT isAvailable to avoid cold-load race5760127Feat: Add D'CENT wallet module92eb600Upgrade to 2.4.0bd1c771Upgrade to 2.3.0d0af8c1Update WalletConnect module and Trezor librariesUpdates
@sentry/reactfrom 10.62.0 to 10.63.0Release notes
Sourced from @sentry/react's releases.
... (truncated)
Changelog
Sourced from @sentry/react's changelog.
Commits
2362e9frelease: 10.63.05b51d5eMerge pull request #21874 from getsentry/prepare-release/10.63.04e16503meta(changelog): Update changelog for 10.63.0690f778test(node-integration): Harden knex mysql2 healthcheck to fix flaky test (#21...429cdaftest(node-integration-tests): Fix flaky postgresjs basic transaction/error or...35998e6test(e2e/hono): Isolate request-data extraction tests onto a dedicated route ...88e7ad5feat(server-utils): Expose channel-based, streamlinedfastifyIntegration(#...e316151ref(server-utils): Move mysql orchestrion integration onto bindTracingChannel...e7c24a5feat(server-utils): Restore caller context for callback tracing channels (#21...bf21b16fix(nextjs): Don't inject trace meta tags when Cache Components is enabled (#...Updates
@supabase/supabase-jsfrom 2.108.2 to 2.110.0Release notes
Sourced from @supabase/supabase-js's releases.
... (truncated)
Changelog
Sourced from @supabase/supabase-js's changelog.
Commits
c3d5e6dfeat(repo): drop Node.js 20 support (#2482)b2e02b9chore(release): version 2.109.0 changelogs (#2481)dd2d4c2fix(realtime): pin@supabase/phoenixand browser test CDN deps (#2457)a25062echore(release): version 2.108.2 changelogs (#2449)b3e5f2dchore(ci): unpin realtime version (#2432)Updates
i18nextfrom 26.3.3 to 26.3.4Release notes
Sourced from i18next's releases.
Changelog
Sourced from i18next's changelog.
Commits
817ede526.3.446d0dd8build642137bfix(security): prevent deepExtend from recursing into inherited built-insUpdates
lucide-reactfrom 1.21.0 to 1.23.0Release notes
Sourced from lucide-react's releases.
Commits
Updates
react-router-domfrom 7.18.0 to 7.18.1Changelog
Sourced from react-router-dom's changelog.
Commits
afdf85dRelease v7.18.1 (#15253)2ecaa1dFix react-router-dom main entry metadata (#15238)Updates
@types/reactfrom 19.2.14 to 19.2.17Commits
Updates
vitefrom 8.1.0 to 8.1.3Release notes
Sourced from vite's releases.
Changelog
Sourced from vite's changelog.
... (truncated)
Commits
578ffb8release: v8.1.37103c3afix(deps): bumpes-module-lexerto 2.3.0 (#22838)1534d36fix(css): inject inlined CSS after the shebang line (#22717)c4acd69fix(ssr): correct stacktrace column position for first line (#22828)2c53054fix: preload css for nested dynamic imports (#22759)ba31193release: v8.1.20d3bd7cfix(deps): revert es-module-lexer to 2.1.0 (#22827)efb98ccfix: restore, "fix: resolve pnpm .modules.yaml from workspace root instead of...cf97711fix: revert, "fix: resolve pnpm .modules.yaml from workspace root instead of ...cccef55fix: revert, "fix: escape ids with multiple null bytes (#22687)"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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions