Skip to content

chore(deps): bump the minor-and-patch group across 1 directory with 23 updates#263

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/minor-and-patch-70ae710a06
Open

chore(deps): bump the minor-and-patch group across 1 directory with 23 updates#263
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/minor-and-patch-70ae710a06

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 13, 2026

Bumps the minor-and-patch group with 23 updates in the / directory:

Package From To
@noble/ciphers 2.1.1 2.2.0
@noble/curves 2.0.1 2.2.0
@noble/hashes 2.0.1 2.2.0
@sip-protocol/sdk 0.8.1 0.9.0
@solana/wallet-adapter-wallets 0.19.37 0.19.38
@wormhole-foundation/sdk-base 4.11.0 4.15.0
@wormhole-foundation/sdk-definitions 4.11.0 4.15.0
@wormhole-foundation/sdk-solana 4.11.0 4.15.0
@wormhole-foundation/sdk-solana-core 4.11.0 4.15.0
@wormhole-foundation/sdk-solana-ntt 4.0.14 4.0.17
framer-motion 12.34.3 12.38.0
next 16.1.6 16.2.3
react 19.2.4 19.2.5
react-dom 19.2.4 19.2.5
zustand 5.0.11 5.0.12
@playwright/test 1.58.2 1.59.1
@tailwindcss/postcss 4.2.0 4.2.2
@types/node 25.3.0 25.6.0
eslint-config-next 16.1.6 16.2.3
happy-dom 20.7.0 20.8.9
prettier 3.8.1 3.8.2
tailwindcss 4.2.0 4.2.2
vitest 4.0.18 4.1.4

Updates @noble/ciphers from 2.1.1 to 2.2.0

Release notes

Sourced from @​noble/ciphers's releases.

2.2.0

  • March 2026 self-audit (all files): no major issues found
    • Audited for spec compliance and security
    • Fix: ctr from webcrypto submodule used wrong counter wrapping
    • Fix: MAC no longer corrupts oversized outputs
    • Align CMAC API to other MACs
  • Fix all Byte Array types, to ensure proper work in both TypeScript 5.6 & TypeScript 5.9+
    • TS 5.6 has Uint8Array, while TS 5.9+ made it generic Uint8Array<ArrayBuffer>
    • This creates incompatibility of code between versions
    • Previously, it was hard to use and constantly emitted errors similar to TS2345
    • See typescript#62240 for more context
  • Fix compilation issues on TypeScript v6
  • Zeroization improvements by @​ChALkeR in paulmillr/noble-ciphers#67, paulmillr/noble-ciphers#68
  • Make package Big Endian friendly. All tests pass on s390x
  • Improve tree-shaking, reduce bundle sizes
  • Add massive amounts of documentation everywhere

Full Changelog: paulmillr/noble-ciphers@2.1.1...2.2.0

Commits

Updates @noble/curves from 2.0.1 to 2.2.0

Release notes

Sourced from @​noble/curves's releases.

2.2.0

  • March 2026 self-audit (all files): no major issues found
    • Audited for spec compliance and security
    • ed25519: make zip215 verification logic match spec more strictly (spec vectors were not enough)
    • ed448: turn off zip215 mode by default, use stricter one
    • schnorr: reduce rand by mod N instead of throwing
    • math: hardening of sqrt
    • babyjubjub: use correct curve and curve params
    • der: improve parsing
    • bls: improve point decoding
    • bls, bn: Fix Fp6 / Fp12 order
    • hash-to-curve: empty dst / count now throws
    • Apply Object.freeze to most primitives
    • Other minor hardening
  • Fix all Byte Array types, to ensure proper work in both TypeScript 5.6 & TypeScript 5.9+
    • TS 5.6 has Uint8Array, while TS 5.9+ made it generic Uint8Array<ArrayBuffer>
    • This creates incompatibility of code between versions
    • Previously, it was hard to use and constantly emitted errors similar to TS2345
    • See [typescript#62240](microsoft/TypeScript#62240) for more context
  • Implement FROST threshold signatures from RFC 9591
  • Fix compilation issues on TypeScript v6
  • Improve tree-shaking, reduce bundle sizes
  • Add massive amounts of documentation everywhere

(We're skipping v2.1, to align with other noble packages)

Full Changelog: paulmillr/noble-curves@2.0.1...2.2.0

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​noble/curves since your current version.


Updates @noble/hashes from 2.0.1 to 2.2.0

Release notes

Sourced from @​noble/hashes's releases.

2.2.0

  • March 2026 self-audit (all files): no major issues found
    • Audited for spec compliance and security
    • Fix: dkLen=0 handling in pbkdf2, blake2, turboshake, kt
    • Fix: parallelHash with blockLen=0
    • Fix: argon2 progress callback now reaches 100%
    • Improve: digestInto no longer returns a value (better performance)
    • Improve: argon2, blake2 support non-4-divisible dkLen
  • Fix all Byte Array types, to ensure proper work in both TypeScript 5.6 & TypeScript 5.9+
    • TS 5.6 has Uint8Array, while TS 5.9+ made it generic Uint8Array<ArrayBuffer>
    • This creates incompatibility of code between versions
    • Previously, it was hard to use and constantly emitted errors similar to TS2345
    • See typescript#62240 for more context
  • sha3: speed-up by up to 50%. Contributed by @​ChALkeR in paulmillr/noble-hashes#126
  • Fix compilation issues on TypeScript v6
  • Make package Big Endian friendly. All tests pass on s390x
  • Improve tree-shaking, reduce bundle sizes
  • Add massive amounts of documentation everywhere

(We're skipping v2.1, to align with other noble packages)

Full Changelog: paulmillr/noble-hashes@2.0.1...2.2.0

Commits
  • 81983c2 Release 2.2.0.
  • 8883d32 Minor syntax fixes
  • e5fedba Run prettier format on tests
  • 72e2083 Changes related to March 2026 audit (new tests)
  • fd9f580 Changes related to March 2026 audit (typed arrays)
  • 9a216b5 Changes related to March 2026 audit
  • 85e35d5 Clarify sha3.
  • cc8ea40 Merge pull request #126 from ChALkeR/chalker/unroll/sha3/0/chi
  • 46c3129 Bump typescript to 6.0.2
  • ca90465 Bump devdeps.
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​noble/hashes since your current version.


Updates @sip-protocol/sdk from 0.8.1 to 0.9.0

Changelog

Sourced from @​sip-protocol/sdk's changelog.

0.9.0

Minor Changes

  • feat: Ethereum same-chain privacy with shielded transfers via Solidity contracts
    • Fix scanAnnouncements() scanning with correct spending private key
    • Add checkEthereumStealthByEthAddress() for ETH address-based stealth matching
    • Add Base Sepolia and OP Sepolia contract addresses
    • Add spendingPrivateKey to EthereumScanRecipient type

Patch Changes

  • fix: DAI mainnet address invalid hex characters
  • fix: Remove deprecated checkViewTag() stub
  • chore: Update @sip-protocol/types dependency to ^0.2.2

0.8.0

Minor Changes

  • feat: Solana same-chain privacy with shielded transfers via Anchor program
    • shieldedTransfer API for native SOL privacy transfers
    • CSPLTokenService and CSPLClient exported from main entry
    • Migrated Solana RPC client to @solana/kit
  • feat: Sunspot ZK verifier pipeline for Noir proof verification on Solana
  • feat: Network privacy layer (Tor/SOCKS5 proxy support) for Solana RPC calls
  • feat: Winternitz vault integration for quantum-resistant key storage
  • feat: Browser-compatible proof composition (Halo2 + Kimchi exports)
  • feat: BNB Chain (BSC) support for multi-chain stealth addresses
  • feat: Oblivious Sync Service interface for private state synchronization
  • feat: NEAR fee contract integration for protocol revenue
  • feat: Chain-specific optimizations for Solana, EVM, and BNB

Patch Changes

  • fix: Use workspace protocol for types dependency
  • fix: Relax NEAR benchmark thresholds for CI runners
  • chore: Bump ephemeral-rollups-sdk to 0.8.5

0.7.4

Patch Changes

  • chore: Version bump with types dependency alignment

0.2.2

Patch Changes

  • fix: Remove NoirProofProvider from main entry to fully fix WASM bundling in SSR

... (truncated)

Commits

Updates @solana/wallet-adapter-wallets from 0.19.37 to 0.19.38

Release notes

Sourced from @​solana/wallet-adapter-wallets's releases.

@​solana/wallet-adapter-wallets@​0.19.38

Patch Changes

  • Updated dependencies [f30323d]
  • Updated dependencies [f30323d]
    • @​solana/wallet-adapter-solflare@​0.6.33
    • @​solana/wallet-adapter-phantom@​0.9.29
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​solana/wallet-adapter-wallets since your current version.


Updates @wormhole-foundation/sdk-base from 4.11.0 to 4.15.0

Release notes

Sourced from @​wormhole-foundation/sdk-base's releases.

4.15.0

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.14.1...4.15.0

4.15.0-beta.0

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.14.1...4.15.0-beta.0

4.14.1

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.14.0...4.14.1

4.14.0

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.1...4.14.0

4.13.2-beta.3

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.1...4.13.2-beta.3

4.13.2-beta.2

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.2-beta.1...4.13.2-beta.2

4.13.2-beta.1

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.1...4.13.2-beta.1

4.13.2-beta.0

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.1...4.13.2-beta.0

4.13.1

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.0...4.13.1

4.13.0

What's Changed

... (truncated)

Commits
  • b10dc57 feat: add httpHeaders support to ChainConfig for custom RPC headers (#995)
  • 86bd4d3 fix: add XRPL support for universal address conversion and balance fetching (...
  • b39c2ea feat: group executor overrides under executor namespace on Config (#993)
  • bf10d87 ci: add Claude Code on-demand workflow for PRs (#988)
  • d175888 feat: Add "Btc" to nativeChainIds constants (#992)
  • 7701cc4 feat: add buildInitiateTransactions/buildCompleteTransactions to Exec… (#983)
  • 33cf670 fix: add subpath exports, deprecate namespace re-exports for turbopack compat...
  • c9c04c6 feat: add btc platform sdk (#991)
  • 8955262 feat: add native chain ids for XRPL (#990)
  • db66694 feat: XRPL platform sdk (#989)
  • Additional commits viewable in compare view

Updates @wormhole-foundation/sdk-definitions from 4.11.0 to 4.15.0

Release notes

Sourced from @​wormhole-foundation/sdk-definitions's releases.

4.15.0

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.14.1...4.15.0

4.15.0-beta.0

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.14.1...4.15.0-beta.0

4.14.1

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.14.0...4.14.1

4.14.0

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.1...4.14.0

4.13.2-beta.3

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.1...4.13.2-beta.3

4.13.2-beta.2

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.2-beta.1...4.13.2-beta.2

4.13.2-beta.1

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.1...4.13.2-beta.1

4.13.2-beta.0

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.1...4.13.2-beta.0

4.13.1

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.0...4.13.1

4.13.0

What's Changed

... (truncated)

Commits
  • b10dc57 feat: add httpHeaders support to ChainConfig for custom RPC headers (#995)
  • 86bd4d3 fix: add XRPL support for universal address conversion and balance fetching (...
  • b39c2ea feat: group executor overrides under executor namespace on Config (#993)
  • bf10d87 ci: add Claude Code on-demand workflow for PRs (#988)
  • d175888 feat: Add "Btc" to nativeChainIds constants (#992)
  • 7701cc4 feat: add buildInitiateTransactions/buildCompleteTransactions to Exec… (#983)
  • 33cf670 fix: add subpath exports, deprecate namespace re-exports for turbopack compat...
  • c9c04c6 feat: add btc platform sdk (#991)
  • 8955262 feat: add native chain ids for XRPL (#990)
  • db66694 feat: XRPL platform sdk (#989)
  • Additional commits viewable in compare view

Updates @wormhole-foundation/sdk-solana from 4.11.0 to 4.15.0

Release notes

Sourced from @​wormhole-foundation/sdk-solana's releases.

4.15.0

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.14.1...4.15.0

4.15.0-beta.0

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.14.1...4.15.0-beta.0

4.14.1

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.14.0...4.14.1

4.14.0

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.1...4.14.0

4.13.2-beta.3

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.1...4.13.2-beta.3

4.13.2-beta.2

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.2-beta.1...4.13.2-beta.2

4.13.2-beta.1

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.1...4.13.2-beta.1

4.13.2-beta.0

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.1...4.13.2-beta.0

4.13.1

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.0...4.13.1

4.13.0

What's Changed

... (truncated)

Commits
  • b10dc57 feat: add httpHeaders support to ChainConfig for custom RPC headers (#995)
  • 86bd4d3 fix: add XRPL support for universal address conversion and balance fetching (...
  • b39c2ea feat: group executor overrides under executor namespace on Config (#993)
  • bf10d87 ci: add Claude Code on-demand workflow for PRs (#988)
  • d175888 feat: Add "Btc" to nativeChainIds constants (#992)
  • 7701cc4 feat: add buildInitiateTransactions/buildCompleteTransactions to Exec… (#983)
  • 33cf670 fix: add subpath exports, deprecate namespace re-exports for turbopack compat...
  • c9c04c6 feat: add btc platform sdk (#991)
  • 8955262 feat: add native chain ids for XRPL (#990)
  • db66694 feat: XRPL platform sdk (#989)
  • Additional commits viewable in compare view

Updates @wormhole-foundation/sdk-solana-core from 4.11.0 to 4.15.0

Release notes

Sourced from @​wormhole-foundation/sdk-solana-core's releases.

4.15.0

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.14.1...4.15.0

4.15.0-beta.0

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.14.1...4.15.0-beta.0

4.14.1

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.14.0...4.14.1

4.14.0

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.1...4.14.0

4.13.2-beta.3

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.1...4.13.2-beta.3

4.13.2-beta.2

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.2-beta.1...4.13.2-beta.2

4.13.2-beta.1

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.1...4.13.2-beta.1

4.13.2-beta.0

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.1...4.13.2-beta.0

4.13.1

What's Changed

Full Changelog: wormhole-foundation/wormhole-sdk-ts@4.13.0...4.13.1

4.13.0

What's Changed

... (truncated)

Commits
  • b10dc57 feat: add httpHeaders support to ChainConfig for custom RPC headers (#995)
  • 86bd4d3 fix: add XRPL support for universal address conversion and balance fetching (...
  • b39c2ea feat: group executor overrides under executor namespace on Config (#993)
  • bf10d87 ci: add Claude Code on-demand workflow for PRs (#988)
  • d175888 feat: Add "Btc" to nativeChainIds constants (#992)
  • 7701cc4 feat: add buildInitiateTransactions/buildCompleteTransactions to Exec… (#983)
  • 33cf670 fix: add subpath exports, deprecate namespace re-exports for turbopack compat...
  • c9c04c6 feat: add btc platform sdk (#991)
  • 8955262 feat: add native chain ids for XRPL (#990)
  • db66694 feat: XRPL platform sdk (#989)
  • Additional commits viewable in compare view

Updates @wormhole-foundation/sdk-solana-ntt from 4.0.14 to 4.0.17

Commits

Updates framer-motion from 12.34.3 to 12.38.0

Changelog

Sourced from framer-motion's changelog.

[12.38.0] 2026-03-16

Added

  • Added layoutAnchor prop to configure custom anchor point for resolving relative projection boxes.

Fixed

  • Reorder: Fix axis switching after window resize.
  • Reorder: Fix with virtualised lists.
  • AnimatePresence: Ensure children are removed when exit animation matches current values.

[12.37.0] 2026-03-16

Added

  • Support for hardware accelerating "start" and "end" offsets in scroll and useScroll.
  • Support for oklch, oklab, lab, lch, color, color-mix, light-dark color types.

Fixed

  • Fix whileInView with client-side navigation.
  • Fix draggable elements when layout updates due to surrounding element re-renders.
  • Improved memory pressure of layout animations.
  • Ensure motion value returned from useSpring reports correct isAnimating().

[12.36.0] 2026-03-09

Added

  • Allow dragSnapToOrigin to accept "x" or "y" for per-axis snapping.
  • Added axis-locked layout animations with layout="x" and layout="y".
  • Added skipInitialAnimation to useSpring.

Fixed

  • Fixed height and width: auto animations with box-sizing: border-box.
  • Reset component values when exit animation finishes.
  • Ensure anticipate easing returns 1 at p === 1.
  • Fix @emotion/is-prop-valid resolve error in Storybook.
  • Remove data-pop-layout-id from exiting elements when animation interrupted.
  • Ensure we skip WAAPI for non-animatable keyframes.
  • Ensure we skip WAAPI for SVG transforms.
  • Ensure MotionValue props are not passed to SVG.
  • AnimatePresence: Prevent mode="wait" elements from getting stuck when switched rapidly.

[12.35.2] 2026-03-09

Fixed

... (truncated)

Commits
  • 0bfc9fe v12.38.0
  • 343cb0c Updating layoutAnchor
  • ee99ad2 Updating changelog
  • 062660b Updating changgelog
  • 303da7d Updating readme
  • b075adc Merge pull request #3647 from motiondivision/feat/layout-anchor
  • f0991d6 Add missing layoutAnchor !== false guard in attemptToResolveRelativeTarget
  • b5798e9 Merge pull request #3642 from motiondivision/worktree-fix-issue-3078
  • 7686c19 Merge pull request #3636 from motiondivision/worktree-fix-issue-3061
  • a95c487 Fix auto-scroll in reorder-virtualized test page
  • Additional commits viewable in compare view

Updates next from 16.1.6 to 16.2.3

Release notes

Sourced from next's releases.

v16.2.3

[!NOTE] This release is backporting security and bug fixes. For more information about the fixed security vulnerability, please see https://vercel.com/changelog/summary-of-cve-2026-23869. The release does not include all pending features/changes on canary.

Core Changes

  • Ensure app-page reports stale ISR revalidation errors via onRequestError (#92282)
  • Fix [Bug]: manifest.ts breaks HMR in Next.js 16.2 (#91981 through #92273)
  • Deduplicate output assets and detect content conflicts on emit (#92292)
  • Fix styled-jsx race condition: styles lost due to concurrent rendering (#92459)
  • turbo-tasks-backend: stability fixes for task cancellation and error handling (#92254)

Credits

Huge thanks to @​icyJoseph, @​sokra, @​wbinnssmith, @​eps1lon and @​ztanner for helping!

v16.2.2

[!NOTE] This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • backport: Move expanded adapters docs to API reference (#92115) (#92129)
  • Backport: TypeScript v6 deprecations for baseUrl and moduleResolution (#92130)
  • [create-next-app] Skip interactive prompts when CLI flags are provided (#91840)
  • next.config.js: Accept an option for serverFastRefresh (#91968)
  • Turbopack: enable server HMR for app route handlers (#91466)
  • Turbopack: exclude metadata routes from server HMR (#92034)
  • Fix CI for glibc linux builds
  • Backport: disable bmi2 in qfilter #92177
  • [backport] Fix CSS HMR on Safari (#92174)

Credits

Huge thanks to @​nextjs-bot, @​icyJoseph, @​ijjk, @​gaojude, @​wbinnssmith, @​lukesandberg, and @​bgw for helping!

v16.2.1

[!NOTE] This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • docs: post release amends (#91715)
  • docs: fix broken Activity Patterns demo link in preserving UI state guide (#91698)
  • Fix adapter outputs for dynamic metadata routes (#91680)
  • Turbopack: fix webpack loader runner layer (#91727)
  • Fix server actions in standalone mode with cacheComponents (#91711)
  • turbo-persistence: remove Unmergeable mmap advice (#91713)
  • Fix layout segment optimization: move app-page imports to server-utility transition (#91701)
  • Turbopack: lazy require metadata and handle TLA (#91705)
  • [turbopack] Respect {eval:true} in worker_threads constructors (#91666)

... (truncated)

Commits
  • d5f649b v16.2.3
  • 2873928 [16.x] Avoid consuming cyclic models multiple times (#75)
  • d7c7765 [backport]: Ensure app-page reports stale ISR revalidation errors via onReque...
  • c573e8c fix(server-hmr): metadata routes overwrite page runtime HMR handler (#92273)
  • 57b8f65 next-core: deduplicate output assets and detect content conflicts on emit (#9...
  • f158df1 Fix styled-jsx race condition: styles lost due to concurrent rendering (#92459)
  • 356d605 turbo-tasks-backend: stability fixes for task cancellation and error handling...
  • 3b77a6e Fix DashMap read-write self-deadlock in task_cache causing hangs (#92210)
  • b2f208a Backport: new view-transitions guide, update and fixes (#92264)
  • 52faae3 v16.2.2
  • Additional commits viewable in compare view

Updates react from 19.2.4 to 19.2.5

Release notes

Sourced from react's releases.

19.2.5 (April 8th, 2026)

React Server Components

Commits

Updates react-dom from 19.2.4 to 19.2.5

Release notes

Sourced from react-dom's releases.

19.2.5 (April 8th, 2026)

React Server Components

Commits

…3 updates

Bumps the minor-and-patch group with 23 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@noble/ciphers](https://github.com/paulmillr/noble-ciphers) | `2.1.1` | `2.2.0` |
| [@noble/curves](https://github.com/paulmillr/noble-curves) | `2.0.1` | `2.2.0` |
| [@noble/hashes](https://github.com/paulmillr/noble-hashes) | `2.0.1` | `2.2.0` |
| [@sip-protocol/sdk](https://github.com/sip-protocol/sip-protocol/tree/HEAD/packages/sdk) | `0.8.1` | `0.9.0` |
| [@solana/wallet-adapter-wallets](https://github.com/anza-xyz/wallet-adapter) | `0.19.37` | `0.19.38` |
| [@wormhole-foundation/sdk-base](https://github.com/wormhole-foundation/wormhole-sdk-ts) | `4.11.0` | `4.15.0` |
| [@wormhole-foundation/sdk-definitions](https://github.com/wormhole-foundation/wormhole-sdk-ts) | `4.11.0` | `4.15.0` |
| [@wormhole-foundation/sdk-solana](https://github.com/wormhole-foundation/wormhole-sdk-ts) | `4.11.0` | `4.15.0` |
| [@wormhole-foundation/sdk-solana-core](https://github.com/wormhole-foundation/wormhole-sdk-ts) | `4.11.0` | `4.15.0` |
| [@wormhole-foundation/sdk-solana-ntt](https://github.com/wormhole-foundation/native-token-transfers) | `4.0.14` | `4.0.17` |
| [framer-motion](https://github.com/motiondivision/motion) | `12.34.3` | `12.38.0` |
| [next](https://github.com/vercel/next.js) | `16.1.6` | `16.2.3` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.4` | `19.2.5` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.4` | `19.2.5` |
| [zustand](https://github.com/pmndrs/zustand) | `5.0.11` | `5.0.12` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.58.2` | `1.59.1` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.2.0` | `4.2.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.3.0` | `25.6.0` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `16.1.6` | `16.2.3` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `20.7.0` | `20.8.9` |
| [prettier](https://github.com/prettier/prettier) | `3.8.1` | `3.8.2` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.2.0` | `4.2.2` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.18` | `4.1.4` |



Updates `@noble/ciphers` from 2.1.1 to 2.2.0
- [Release notes](https://github.com/paulmillr/noble-ciphers/releases)
- [Commits](paulmillr/noble-ciphers@2.1.1...2.2.0)

Updates `@noble/curves` from 2.0.1 to 2.2.0
- [Release notes](https://github.com/paulmillr/noble-curves/releases)
- [Commits](paulmillr/noble-curves@2.0.1...2.2.0)

Updates `@noble/hashes` from 2.0.1 to 2.2.0
- [Release notes](https://github.com/paulmillr/noble-hashes/releases)
- [Commits](paulmillr/noble-hashes@2.0.1...2.2.0)

Updates `@sip-protocol/sdk` from 0.8.1 to 0.9.0
- [Release notes](https://github.com/sip-protocol/sip-protocol/releases)
- [Changelog](https://github.com/sip-protocol/sip-protocol/blob/main/packages/sdk/CHANGELOG.md)
- [Commits](https://github.com/sip-protocol/sip-protocol/commits/v0.9.0/packages/sdk)

Updates `@solana/wallet-adapter-wallets` from 0.19.37 to 0.19.38
- [Release notes](https://github.com/anza-xyz/wallet-adapter/releases)
- [Commits](https://github.com/anza-xyz/wallet-adapter/compare/@solana/wallet-adapter-wallets@0.19.37...@solana/wallet-adapter-wallets@0.19.38)

Updates `@wormhole-foundation/sdk-base` from 4.11.0 to 4.15.0
- [Release notes](https://github.com/wormhole-foundation/wormhole-sdk-ts/releases)
- [Commits](wormhole-foundation/wormhole-sdk-ts@4.11.0...4.15.0)

Updates `@wormhole-foundation/sdk-definitions` from 4.11.0 to 4.15.0
- [Release notes](https://github.com/wormhole-foundation/wormhole-sdk-ts/releases)
- [Commits](wormhole-foundation/wormhole-sdk-ts@4.11.0...4.15.0)

Updates `@wormhole-foundation/sdk-solana` from 4.11.0 to 4.15.0
- [Release notes](https://github.com/wormhole-foundation/wormhole-sdk-ts/releases)
- [Commits](wormhole-foundation/wormhole-sdk-ts@4.11.0...4.15.0)

Updates `@wormhole-foundation/sdk-solana-core` from 4.11.0 to 4.15.0
- [Release notes](https://github.com/wormhole-foundation/wormhole-sdk-ts/releases)
- [Commits](wormhole-foundation/wormhole-sdk-ts@4.11.0...4.15.0)

Updates `@wormhole-foundation/sdk-solana-ntt` from 4.0.14 to 4.0.17
- [Release notes](https://github.com/wormhole-foundation/native-token-transfers/releases)
- [Commits](https://github.com/wormhole-foundation/native-token-transfers/commits)

Updates `framer-motion` from 12.34.3 to 12.38.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.34.3...v12.38.0)

Updates `next` from 16.1.6 to 16.2.3
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v16.1.6...v16.2.3)

Updates `react` from 19.2.4 to 19.2.5
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.5/packages/react)

Updates `react-dom` from 19.2.4 to 19.2.5
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.5/packages/react-dom)

Updates `zustand` from 5.0.11 to 5.0.12
- [Release notes](https://github.com/pmndrs/zustand/releases)
- [Commits](pmndrs/zustand@v5.0.11...v5.0.12)

Updates `@playwright/test` from 1.58.2 to 1.59.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.58.2...v1.59.1)

Updates `@tailwindcss/postcss` from 4.2.0 to 4.2.2
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.2.2/packages/@tailwindcss-postcss)

Updates `@types/node` from 25.3.0 to 25.6.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint-config-next` from 16.1.6 to 16.2.3
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v16.2.3/packages/eslint-config-next)

Updates `happy-dom` from 20.7.0 to 20.8.9
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v20.7.0...v20.8.9)

Updates `prettier` from 3.8.1 to 3.8.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.8.1...3.8.2)

Updates `tailwindcss` from 4.2.0 to 4.2.2
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.2.2/packages/tailwindcss)

Updates `vitest` from 4.0.18 to 4.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.4/packages/vitest)

---
updated-dependencies:
- dependency-name: "@noble/ciphers"
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@noble/curves"
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@noble/hashes"
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@sip-protocol/sdk"
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@solana/wallet-adapter-wallets"
  dependency-version: 0.19.38
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@wormhole-foundation/sdk-base"
  dependency-version: 4.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@wormhole-foundation/sdk-definitions"
  dependency-version: 4.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@wormhole-foundation/sdk-solana"
  dependency-version: 4.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@wormhole-foundation/sdk-solana-core"
  dependency-version: 4.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@wormhole-foundation/sdk-solana-ntt"
  dependency-version: 4.0.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: framer-motion
  dependency-version: 12.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: next
  dependency-version: 16.2.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-dom
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: zustand
  dependency-version: 5.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@playwright/test"
  dependency-version: 1.59.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/node"
  dependency-version: 25.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: eslint-config-next
  dependency-version: 16.2.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: happy-dom
  dependency-version: 20.8.9
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: prettier
  dependency-version: 3.8.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: tailwindcss
  dependency-version: 4.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: vitest
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-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 Apr 13, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

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.

0 participants