Skip to content

chore(deps): bump the safe-workspace-updates group across 1 directory with 26 updates#192

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/safe-workspace-updates-866a10e983
Open

chore(deps): bump the safe-workspace-updates group across 1 directory with 26 updates#192
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/safe-workspace-updates-866a10e983

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 6, 2026

Bumps the safe-workspace-updates group with 26 updates in the / directory:

Package From To
@biomejs/biome 2.3.2 2.4.13
lint-staged 16.2.3 16.4.0
turbo 2.5.8 2.9.6
@filecoin-foundation/ui-filecoin 0.8.3 0.9.0
@filoz/synapse-sdk 0.31.1 0.40.4
@rainbow-me/rainbowkit 2.2.8 2.2.10
@tanstack/react-query 5.90.2 5.100.6
ethers 6.15.0 6.16.0
graphql-request 7.2.0 7.4.0
react 19.2.0 19.2.5
@types/react 19.2.2 19.2.14
react-dom 19.2.0 19.2.5
@types/react-dom 19.2.1 19.2.3
viem 2.38.0 2.48.4
@tailwindcss/postcss 4.1.14 4.2.4
framer-motion 12.23.22 12.38.0
recharts 3.2.1 3.8.1
autoprefixer 10.4.21 10.5.0
@graphprotocol/graph-cli 0.97.1 0.98.1
assemblyscript 0.19.23 0.28.17
wabt 1.0.38 1.0.39
graphql 16.11.0 16.13.2
@radix-ui/react-separator 1.1.7 1.1.8
@radix-ui/react-slot 1.2.3 1.2.4
tailwind-merge 3.3.1 3.5.0
@turbo/gen 2.5.8 2.9.6

Updates @biomejs/biome from 2.3.2 to 2.4.13

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.13

2.4.13

Patch Changes

  • #9969 c5eb92b Thanks @​officialasishkumar! - Added the nursery rule noUnnecessaryTemplateExpression, which disallows template literals that only contain string literal expressions. These can be replaced with a simpler string literal.

    For example, the following code triggers the rule:

    const a = `${"hello"}`; // can be 'hello'
    const b = `${"prefix"}_suffix`; // can be 'prefix_suffix'
    const c = `${"a"}${"b"}`; // can be 'ab'
  • #10037 f785e8c Thanks @​minseong0324! - Fixed #9810: noMisleadingReturnType no longer reports false positives on a getter with a matching setter in the same namespace.

    class Store {
      get status(): string {
        if (Math.random() > 0.5) return "loading";
        return "idle";
      }
      set status(v: string) {}
    }
  • #10084 5e2f90c Thanks @​jiwon79! - Fixed #10034: noUselessEscapeInRegex no longer flags escapes of ClassSetReservedPunctuator characters (&, !, #, %, ,, :, ;, <, =, >, @, `, ~) inside v-flag character classes as useless. These characters are reserved as individual code points in v-mode, so the escape is required.

    The following pattern is now considered valid:

    /[a-z\&]/v;
  • #10063 c9ffa16 Thanks @​Netail! - Added extra rule sources from ESLint CSS. biome migrate eslint should do a bit better detecting rules in your eslint configurations.

  • #10035 946b50e Thanks @​Netail! - Fixed #10032: useIframeSandbox now flags if there's no initializer value.

  • #9865 68fb8d4 Thanks @​dyc3! - Added the new nursery rule useDomNodeTextContent, which prefers textContent over innerText for DOM node text access and destructuring.

    For example, the following snippet triggers the rule:

    const foo = node.innerText;
  • #10023 bd1e74f Thanks @​ematipico! - Added a new nursery rule noReactNativeDeepImports that disallows deep imports from the react-native package. Internal paths like react-native/Libraries/... are not part of the public API and may change between versions.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.13

Patch Changes

  • #9969 c5eb92b Thanks @​officialasishkumar! - Added the nursery rule noUnnecessaryTemplateExpression, which disallows template literals that only contain string literal expressions. These can be replaced with a simpler string literal.

    For example, the following code triggers the rule:

    const a = `${"hello"}`; // can be 'hello'
    const b = `${"prefix"}_suffix`; // can be 'prefix_suffix'
    const c = `${"a"}${"b"}`; // can be 'ab'
  • #10037 f785e8c Thanks @​minseong0324! - Fixed #9810: noMisleadingReturnType no longer reports false positives on a getter with a matching setter in the same namespace.

    class Store {
      get status(): string {
        if (Math.random() > 0.5) return "loading";
        return "idle";
      }
      set status(v: string) {}
    }
  • #10084 5e2f90c Thanks @​jiwon79! - Fixed #10034: noUselessEscapeInRegex no longer flags escapes of ClassSetReservedPunctuator characters (&, !, #, %, ,, :, ;, <, =, >, @, `, ~) inside v-flag character classes as useless. These characters are reserved as individual code points in v-mode, so the escape is required.

    The following pattern is now considered valid:

    /[a-z\&]/v;
  • #10063 c9ffa16 Thanks @​Netail! - Added extra rule sources from ESLint CSS. biome migrate eslint should do a bit better detecting rules in your eslint configurations.

  • #10035 946b50e Thanks @​Netail! - Fixed #10032: useIframeSandbox now flags if there's no initializer value.

  • #9865 68fb8d4 Thanks @​dyc3! - Added the new nursery rule useDomNodeTextContent, which prefers textContent over innerText for DOM node text access and destructuring.

    For example, the following snippet triggers the rule:

    const foo = node.innerText;
  • #10023 bd1e74f Thanks @​ematipico! - Added a new nursery rule noReactNativeDeepImports that disallows deep imports from the react-native package. Internal paths like react-native/Libraries/... are not part of the public API and may change between versions.

    For example, the following code triggers the rule:

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​biomejs/biome since your current version.


Updates lint-staged from 16.2.3 to 16.4.0

Release notes

Sourced from lint-staged's releases.

v16.4.0

Minor Changes

v16.3.4

Patch Changes

v16.3.3

Patch Changes

  • #1740 0109e8d Thanks @​iiroj! - Make sure Git's warning about CRLF line-endings doesn't interfere with creating initial backup stash.

v16.3.2

Patch Changes

  • #1735 2adaf6c Thanks @​iiroj! - Hide the extra cmd window on Windows by spawning tasks without the detached option.

v16.3.1

Patch Changes

  • #1729 cd5d762 Thanks @​iiroj! - Remove nano-spawn as a dependency from package.json as it was replaced with tinyexec and is no longer used.

v16.3.0

Minor Changes

  • #1698 feda37a Thanks @​iiroj! - Run external processes with tinyexec instead of nano-spawn. nano-spawn replaced execa in lint-staged version 16 to limit the amount of npm dependencies required, but caused some unknown issues related to spawning tasks. Let's hope tinyexec improves the situation.

  • #1699 1346d16 Thanks @​iiroj! - Remove pidtree as a dependency. When a task fails, its sub-processes are killed more efficiently via the process group on Unix systems, and the taskkill command on Windows.

Patch Changes

  • #1726 87467aa Thanks @​iiroj! - Incorrect brace expansions like *.{js} (nothing to expand) are detected exhaustively, instead of just a single pass.

v16.2.7

Patch Changes

  • #1711 ef74c8d Thanks @​iiroj! - Do not display a "failed to spawn" error message when a task fails normally. This message is reserved for when the task didn't run because spawning it failed.

v16.2.6

Patch Changes

  • #1693 33d4502 Thanks @​Adrian-Baran-GY! - Fix problems with --continue-on-error option, where tasks might have still been killed (SIGINT) when one of them failed.

v16.2.5

Patch Changes

  • #1687 9e02d9d Thanks @​iiroj! - Fix unhandled promise rejection when spawning tasks (instead of the tasks themselves failing). Previously when a task failed to spawn, lint-staged also failed and the backup stash might not have been automatically restored.

... (truncated)

Changelog

Sourced from lint-staged's changelog.

16.4.0

Minor Changes

16.3.4

Patch Changes

16.3.3

Patch Changes

  • #1740 0109e8d Thanks @​iiroj! - Make sure Git's warning about CRLF line-endings doesn't interfere with creating initial backup stash.

16.3.2

Patch Changes

  • #1735 2adaf6c Thanks @​iiroj! - Hide the extra cmd window on Windows by spawning tasks without the detached option.

16.3.1

Patch Changes

  • #1729 cd5d762 Thanks @​iiroj! - Remove nano-spawn as a dependency from package.json as it was replaced with tinyexec and is no longer used.

16.3.0

Minor Changes

  • #1698 feda37a Thanks @​iiroj! - Run external processes with tinyexec instead of nano-spawn. nano-spawn replaced execa in lint-staged version 16 to limit the amount of npm dependencies required, but caused some unknown issues related to spawning tasks. Let's hope tinyexec improves the situation.

  • #1699 1346d16 Thanks @​iiroj! - Remove pidtree as a dependency. When a task fails, its sub-processes are killed more efficiently via the process group on Unix systems, and the taskkill command on Windows.

Patch Changes

  • #1726 87467aa Thanks @​iiroj! - Incorrect brace expansions like *.{js} (nothing to expand) are detected exhaustively, instead of just a single pass.

16.2.7

Patch Changes

  • #1711 ef74c8d Thanks @​iiroj! - Do not display a "failed to spawn" error message when a task fails normally. This message is reserved for when the task didn't run because spawning it failed.

16.2.6

... (truncated)

Commits
  • 445f9dd chore(changeset): release
  • d91be60 docs: update readme to use picomatch
  • b392a9f refactor: extract matchFiles and add unit tests
  • 687fc90 refactor: replace micromatch with picomatch
  • 26dadf9 chore(changeset): release
  • 9d6e827 build(deps): update dependencies
  • 8aea986 chore(changeset): release
  • 0109e8d fix: strip Git CRLF warning from output
  • dfd6a7a chore(changeset): release
  • 2adaf6c fix(Windows): do not spawn tasks as detached since it opens a cmd window on ...
  • Additional commits viewable in compare view

Updates turbo from 2.5.8 to 2.9.6

Release notes

Sourced from turbo's releases.

Turborepo v2.9.6

What's Changed

create-turbo

Examples

Changelog

Full Changelog: vercel/turborepo@v2.9.5...v2.9.6

Turborepo v2.9.6-canary.3

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.9.6-canary.2...v2.9.6-canary.3

Turborepo v2.9.6-canary.2

What's Changed

create-turbo

Examples

Changelog

Full Changelog: vercel/turborepo@v2.9.6-canary.1...v2.9.6-canary.2

Turborepo v2.9.6-canary.1

What's Changed

@​turbo/telemetry

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for turbo since your current version.


Updates @filecoin-foundation/ui-filecoin from 0.8.3 to 0.9.0

Release notes

Sourced from @​filecoin-foundation/ui-filecoin's releases.

@​filecoin-foundation/ui-filecoin@​0.9.0

Minor Changes

  • e7d2822: Rename gradientMode to gradientVariant in LogoSection; make gradientVariant required

@​filecoin-foundation/ui-filecoin@​0.8.7

Patch Changes

  • 5161d64: Replace text button with Play/Pause icon button in CarouselAutoScrollControls

@​filecoin-foundation/ui-filecoin@​0.8.6

Patch Changes

  • bc356e0: Fix for aligning SectionContent CTA

@​filecoin-foundation/ui-filecoin@​0.8.5

Patch Changes

  • cfbeae8: Add a ctaPosition prop to SectionContent to control CTA placement
  • d5b2561: Export Network utils and set mainnet as default chain

@​filecoin-foundation/ui-filecoin@​0.8.4

Patch Changes

  • 62144b5: Fix dropdown navigation spacing when there's only 1 link
Changelog

Sourced from @​filecoin-foundation/ui-filecoin's changelog.

0.9.0

Minor Changes

  • e7d2822: Rename gradientMode to gradientVariant in LogoSection; make gradientVariant required

0.8.7

Patch Changes

  • 5161d64: Replace text button with Play/Pause icon button in CarouselAutoScrollControls

0.8.6

Patch Changes

  • bc356e0: Fix for aligning SectionContent CTA

0.8.5

Patch Changes

  • cfbeae8: Add a ctaPosition prop to SectionContent to control CTA placement
  • d5b2561: Export Network utils and set mainnet as default chain

0.8.4

Patch Changes

  • 62144b5: Fix dropdown navigation spacing when there's only 1 link
Commits
  • 6abff67 [AUTOMATED] Version packages (#2242)
  • e7d2822 [UI-Filecoin] Rename gradientMode to gradientVariant in LogoSection and make ...
  • 22e2951 [AUTOMATED] Version packages (#2239)
  • 5161d64 [UI-FILECOIN][UXIT-3950] Replace ghost button with icon in CarouselAutoScroll...
  • 463118e [AUTOMATED] Version packages (#2236)
  • bc356e0 Align SectionContent CTA for improved layout consistency (#2235)
  • 8e2ac67 [AUTOMATED] Version packages (#2232)
  • d5b2561 Update network selector [skip percy] (#2233)
  • cfbeae8 [UXIT-3806][UI-Filecoin] Add ctaPosition prop to SectionContent [skip percy] ...
  • f03ac8f [UXIT-3939][filecoin.io V3] Rework Build Page [skip percy] (#2218)
  • Additional commits viewable in compare view

Updates @filoz/synapse-sdk from 0.31.1 to 0.40.4

Release notes

Sourced from @​filoz/synapse-sdk's releases.

synapse-sdk: v0.40.4

0.40.4 (2026-04-20)

Features

  • synapse-sdk: expose paginated client dataset queries in WarmStorageService (#717) (0add8e0)
  • use PDPVerifier.findPieceIdsByCid for efficient CID→ID lookups (#718) (3ac48a9)

Bug Fixes

  • capture error cause in serialisation (#727) (d0f3372)
  • fix out of gas problems with getClientDataSets (#734) (c49c18e)
  • normalize empty outputs for pdp-verifier (#723) (187e8a4)
  • remove custom fetch for pulled POSTs (#732) (9b63e7e)

Chores

  • update msw package version to 2.12.14 in workspace and mock service worker files (4865ff7)

synapse-sdk: v0.40.3

0.40.3 (2026-04-02)

Features

  • core: preserve non-standard SP registry capabilities in PDPOffering (#687) (716e309)

Bug Fixes

  • errors: export StorageErrorOptions and enhance error constructors with documentation (7ac439a)
  • keep the clone to new provider ids array (7124ec9)
  • update getApprovedProviderIds and getEndorsedProviderIds with array return type (e037cec)

Chores

  • types: update PullStatus export and adjust StorageContext to use waitForPullPieces (eb5566e)

synapse-sdk: v0.40.2

0.40.2 (2026-03-30)

Features

  • storage: add 'source' and 'withCDN' getters on StorageManager (#701) (d463939)

... (truncated)

Commits
  • 27d249a chore(master): release synapse-sdk 0.40.4 (#729)
  • ed79349 chore(master): release synapse-core 0.4.1 (#730)
  • c49c18e fix: fix out of gas problems with getClientDataSets (#734)
  • 1c6696b fix(docs): align contract address keys with chain definitions (#736)
  • 187e8a4 fix: normalize empty outputs for pdp-verifier (#723)
  • 9b63e7e fix: remove custom fetch for pulled POSTs (#732)
  • d0f3372 fix: capture error cause in serialisation (#727)
  • 0add8e0 feat(synapse-sdk): expose paginated client dataset queries in WarmStorageServ...
  • 3ac48a9 feat: use PDPVerifier.findPieceIdsByCid for efficient CID→ID lookups (#718)
  • d2f14fb docs: clarify runtime support and add playground example
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​filoz/synapse-sdk since your current version.


Updates @rainbow-me/rainbowkit from 2.2.8 to 2.2.10

Release notes

Sourced from @​rainbow-me/rainbowkit's releases.

@​rainbow-me/rainbowkit@​2.2.10

Patch Changes

  • e74f604: Improve UI on the mobile connect flow to hint to users that they can horizontally scroll to see additional wallet connectors

  • eb72c37: Fix Gemini wallet connector to use icon instead of icons in appMetadata

  • e58367e: Fix mobile visibility for Coin98, CLV, SafePal, Frontier, and BeraSig wallets.

  • b7b7b43: Rename the Argent wallet connector to readyWallet

  • 507f583: Add additional wallet flags to isMetaMask() to detect impersonating providers.

  • 16963de: Add ctrlWallet wallet connector to replace xdefiWallet. XDEFI Wallet has been rebranded to CTRL Wallet.

  • 6c745a5: Disable third-party connector telemetry by default for user privacy. h/t @​TimDaub

    To opt-in to WalletConnect analytics:

    With getDefaultConfig:

    const config = getDefaultConfig({
      /** ... **/
      walletConnectParameters: {
        telemetryEnabled: true,
      },
    });

    To opt-in to Base Account telemetry:

    baseAccount.preference = {
      telemetry: true,
    };

    To opt-in to MetaMask analytics:

    metaMaskWallet.enableAnalytics = true;

@​rainbow-me/rainbowkit@​2.2.9

Patch Changes

  • e52ca05: Added baseAccount wallet connector, replacing coinbaseWallet (now marked as deprecated)
  • b34d6c1: Added portoWallet wallet connector for Porto
  • 66bcc18: Added universalProfilesWallet connector for Universal Profiles
  • fe0496e: Added geminiWallet wallet connector for Gemini Wallet
  • 0b9052c: Added binanceWallet chrome extension download url
  • d92a6c7: Fixed type compatibility for connect() parameters in Wagmi ^2.17.0
  • 5698ade: Fixed monad logo and supported monad testnet
  • 1e67f0d: Improved detection for novaWallet provider
  • 1520f59: Fixed unintended forwarding of the errorCorrection prop to SVG elements used by the QRCode component to prevent React warning.
Changelog

Sourced from @​rainbow-me/rainbowkit's changelog.

2.2.10

Patch Changes

  • e74f604: Improve UI on the mobile connect flow to hint to users that they can horizontally scroll to see additional wallet connectors

  • eb72c37: Fix Gemini wallet connector to use icon instead of icons in appMetadata

  • e58367e: Fix mobile visibility for Coin98, CLV, SafePal, Frontier, and BeraSig wallets.

  • b7b7b43: Rename the Argent wallet connector to readyWallet

  • 507f583: Add additional wallet flags to isMetaMask() to detect impersonating providers.

  • 16963de: Add ctrlWallet wallet connector to replace xdefiWallet. XDEFI Wallet has been rebranded to CTRL Wallet.

  • 6c745a5: Disable third-party connector telemetry by default for user privacy. h/t @​TimDaub

    To opt-in to WalletConnect analytics:

    With getDefaultConfig:

    const config = getDefaultConfig({
      /** ... **/
      walletConnectParameters: {
        telemetryEnabled: true,
      },
    });

    To opt-in to Base Account telemetry:

    baseAccount.preference = {
      telemetry: true,
    };

    To opt-in to MetaMask analytics:

    metaMaskWallet.enableAnalytics = true;

2.2.9

Patch Changes

  • e52ca05: Add baseAccount wallet connector, replacing coinbaseWallet in the default wallet list
  • 1e67f0d: Improved detection for nova wallet provider
  • d92a6c7: Fixed type compatibility for connect() parameters in Wagmi ^2.17.0
  • 0b9052c: Add binance wallet chrome extension download url
  • b34d6c1: Added portoWallet.
  • 66bcc18: Universal Profiles wallet connector
  • fe0496e: Added Gemini Wallet support

... (truncated)

Commits

Updates @tanstack/react-query from 5.90.2 to 5.100.6

Release notes

Sourced from @​tanstack/react-query's releases.

@​tanstack/react-query-devtools@​5.100.6

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.100.6
    • @​tanstack/react-query@​5.100.6

@​tanstack/react-query-next-experimental@​5.100.6

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-query@​5.100.6

@​tanstack/react-query-persist-client@​5.100.6

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.100.6
    • @​tanstack/react-query@​5.100.6

@​tanstack/react-query@​5.100.6

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.100.6
Changelog

Sourced from @​tanstack/react-query's changelog.

5.100.6

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.100.6

5.100.5

Patch Changes

  • Updated dependencies [a53ef97]:
    • @​tanstack/query-core@​5.100.5

5.100.4

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.100.4

5.100.3

Patch Changes

  • fix(suspense): skip calling combine when queries would suspend (#10576)

  • Updated dependencies [f85d825]:

    • @​tanstack/query-core@​5.100.3

5.100.2

Patch Changes

5.100.1

Patch Changes

  • Updated dependencies [1bb0d23]:
    • @​tanstack/query-core@​5.100.1

5.100.0

Patch Changes

  • Updated dependencies [6540a41]:
    • @​tanstack/query-core@​5.100.0

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​tanstack/react-query since your current version.


...

Description has been truncated

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 6, 2026
@vercel
Copy link
Copy Markdown

vercel Bot commented May 6, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
filecoin-pay-explorer Error Error May 6, 2026 6:40pm

Request Review

@FilOzzy FilOzzy added this to FOC May 6, 2026
@github-project-automation github-project-automation Bot moved this to 📌 Triage in FOC May 6, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/safe-workspace-updates-866a10e983 branch from 6c22817 to c44a997 Compare May 6, 2026 10:59
@juliangruber juliangruber requested a review from silent-cipher May 6, 2026 11:02
@BigLep BigLep moved this from 📌 Triage to 🐱 Todo in FOC May 6, 2026
… with 26 updates

Bumps the safe-workspace-updates group with 26 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.2` | `2.4.13` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `16.2.3` | `16.4.0` |
| [turbo](https://github.com/vercel/turborepo) | `2.5.8` | `2.9.6` |
| [@filecoin-foundation/ui-filecoin](https://github.com/FilecoinFoundationWeb/filecoin-foundation/tree/HEAD/packages/ui-filecoin) | `0.8.3` | `0.9.0` |
| [@filoz/synapse-sdk](https://github.com/FilOzone/synapse-sdk) | `0.31.1` | `0.40.4` |
| [@rainbow-me/rainbowkit](https://github.com/rainbow-me/rainbowkit/tree/HEAD/packages/rainbowkit) | `2.2.8` | `2.2.10` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.90.2` | `5.100.6` |
| [ethers](https://github.com/ethers-io/ethers.js) | `6.15.0` | `6.16.0` |
| [graphql-request](https://github.com/graffle-js/graffle) | `7.2.0` | `7.4.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.5` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.2` | `19.2.14` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.0` | `19.2.5` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.2.1` | `19.2.3` |
| [viem](https://github.com/wevm/viem) | `2.38.0` | `2.48.4` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.1.14` | `4.2.4` |
| [framer-motion](https://github.com/motiondivision/motion) | `12.23.22` | `12.38.0` |
| [recharts](https://github.com/recharts/recharts) | `3.2.1` | `3.8.1` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.21` | `10.5.0` |
| [@graphprotocol/graph-cli](https://github.com/graphprotocol/graph-tooling/tree/HEAD/packages/cli) | `0.97.1` | `0.98.1` |
| [assemblyscript](https://github.com/AssemblyScript/assemblyscript) | `0.19.23` | `0.28.17` |
| [wabt](https://github.com/AssemblyScript/wabt.js) | `1.0.38` | `1.0.39` |
| [graphql](https://github.com/graphql/graphql-js) | `16.11.0` | `16.13.2` |
| [@radix-ui/react-separator](https://github.com/radix-ui/primitives) | `1.1.7` | `1.1.8` |
| [@radix-ui/react-slot](https://github.com/radix-ui/primitives) | `1.2.3` | `1.2.4` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `3.3.1` | `3.5.0` |
| [@turbo/gen](https://github.com/vercel/turborepo/tree/HEAD/packages/turbo-gen) | `2.5.8` | `2.9.6` |



Updates `@biomejs/biome` from 2.3.2 to 2.4.13
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.13/packages/@biomejs/biome)

Updates `lint-staged` from 16.2.3 to 16.4.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v16.2.3...v16.4.0)

Updates `turbo` from 2.5.8 to 2.9.6
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.5.8...v2.9.6)

Updates `@filecoin-foundation/ui-filecoin` from 0.8.3 to 0.9.0
- [Release notes](https://github.com/FilecoinFoundationWeb/filecoin-foundation/releases)
- [Changelog](https://github.com/FilecoinFoundationWeb/filecoin-foundation/blob/main/packages/ui-filecoin/CHANGELOG.md)
- [Commits](https://github.com/FilecoinFoundationWeb/filecoin-foundation/commits/@filecoin-foundation/ui-filecoin@0.9.0/packages/ui-filecoin)

Updates `@filoz/synapse-sdk` from 0.31.1 to 0.40.4
- [Release notes](https://github.com/FilOzone/synapse-sdk/releases)
- [Commits](FilOzone/synapse-sdk@synapse-sdk-v0.31.1...synapse-sdk-v0.40.4)

Updates `@rainbow-me/rainbowkit` from 2.2.8 to 2.2.10
- [Release notes](https://github.com/rainbow-me/rainbowkit/releases)
- [Changelog](https://github.com/rainbow-me/rainbowkit/blob/main/packages/rainbowkit/CHANGELOG.md)
- [Commits](https://github.com/rainbow-me/rainbowkit/commits/@rainbow-me/rainbowkit@2.2.10/packages/rainbowkit)

Updates `@tanstack/react-query` from 5.90.2 to 5.100.6
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query@5.100.6/packages/react-query)

Updates `ethers` from 6.15.0 to 6.16.0
- [Release notes](https://github.com/ethers-io/ethers.js/releases)
- [Changelog](https://github.com/ethers-io/ethers.js/blob/main/CHANGELOG.md)
- [Commits](ethers-io/ethers.js@v6.15.0...v6.16.0)

Updates `graphql-request` from 7.2.0 to 7.4.0
- [Release notes](https://github.com/graffle-js/graffle/releases)
- [Commits](graffle-js/graffle@7.2.0...7.4.0)

Updates `react` from 19.2.0 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 `@types/react` from 19.2.2 to 19.2.14
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `react-dom` from 19.2.0 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 `@types/react-dom` from 19.2.1 to 19.2.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `viem` from 2.38.0 to 2.48.4
- [Release notes](https://github.com/wevm/viem/releases)
- [Commits](https://github.com/wevm/viem/compare/viem@2.38.0...viem@2.48.4)

Updates `@tailwindcss/postcss` from 4.1.14 to 4.2.4
- [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.4/packages/@tailwindcss-postcss)

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

Updates `@types/react-dom` from 19.2.1 to 19.2.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

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

Updates `recharts` from 3.2.1 to 3.8.1
- [Release notes](https://github.com/recharts/recharts/releases)
- [Changelog](https://github.com/recharts/recharts/blob/main/CHANGELOG.md)
- [Commits](recharts/recharts@v3.2.1...v3.8.1)

Updates `autoprefixer` from 10.4.21 to 10.5.0
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.21...10.5.0)

Updates `@graphprotocol/graph-cli` from 0.97.1 to 0.98.1
- [Release notes](https://github.com/graphprotocol/graph-tooling/releases)
- [Changelog](https://github.com/graphprotocol/graph-tooling/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/graphprotocol/graph-tooling/commits/@graphprotocol/graph-cli@0.98.1/packages/cli)

Updates `assemblyscript` from 0.19.23 to 0.28.17
- [Release notes](https://github.com/AssemblyScript/assemblyscript/releases)
- [Commits](AssemblyScript/assemblyscript@v0.19.23...v0.28.17)

Updates `wabt` from 1.0.38 to 1.0.39
- [Commits](AssemblyScript/wabt.js@v1.0.38...v1.0.39)

Updates `graphql` from 16.11.0 to 16.13.2
- [Release notes](https://github.com/graphql/graphql-js/releases)
- [Commits](graphql/graphql-js@v16.11.0...v16.13.2)

Updates `@radix-ui/react-separator` from 1.1.7 to 1.1.8
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-slot` from 1.2.3 to 1.2.4
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `tailwind-merge` from 3.3.1 to 3.5.0
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v3.3.1...v3.5.0)

Updates `@turbo/gen` from 2.5.8 to 2.9.6
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](https://github.com/vercel/turborepo/commits/v2.9.6/packages/turbo-gen)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.13
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: "@filecoin-foundation/ui-filecoin"
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: "@filoz/synapse-sdk"
  dependency-version: 0.40.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: "@graphprotocol/graph-cli"
  dependency-version: 0.98.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: "@radix-ui/react-separator"
  dependency-version: 1.1.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe-workspace-updates
- dependency-name: "@radix-ui/react-slot"
  dependency-version: 1.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe-workspace-updates
- dependency-name: "@rainbow-me/rainbowkit"
  dependency-version: 2.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe-workspace-updates
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.2.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.100.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: "@turbo/gen"
  dependency-version: 2.9.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: "@types/react"
  dependency-version: 19.2.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-workspace-updates
- dependency-name: "@types/react"
  dependency-version: 19.2.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-workspace-updates
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-workspace-updates
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-workspace-updates
- dependency-name: assemblyscript
  dependency-version: 0.28.17
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: autoprefixer
  dependency-version: 10.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: ethers
  dependency-version: 6.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: framer-motion
  dependency-version: 12.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: graphql
  dependency-version: 16.13.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: graphql-request
  dependency-version: 7.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: lint-staged
  dependency-version: 16.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe-workspace-updates
- dependency-name: react-dom
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe-workspace-updates
- dependency-name: recharts
  dependency-version: 3.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: tailwind-merge
  dependency-version: 3.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: turbo
  dependency-version: 2.9.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: viem
  dependency-version: 2.48.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-workspace-updates
- dependency-name: wabt
  dependency-version: 1.0.39
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-workspace-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/safe-workspace-updates-866a10e983 branch from c44a997 to 2c25c57 Compare May 6, 2026 18:39
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

Status: 🐱 Todo

Development

Successfully merging this pull request may close these issues.

3 participants