Skip to content

[DEPENDABOT][SHARED] Weekly npm updates(deps): Bump the dependencies group across 1 directory with 30 updates#2287

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dependencies-dee6fa84b8
Open

[DEPENDABOT][SHARED] Weekly npm updates(deps): Bump the dependencies group across 1 directory with 30 updates#2287
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dependencies-dee6fa84b8

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 12, 2026

Bumps the dependencies group with 30 updates in the / directory:

Package From To
@percy/cli 1.31.10 1.31.11
@sentry/nextjs 10.46.0 10.48.0
@types/node 22.19.1 25.6.0
cypress 15.13.0 15.13.1
globals 17.4.0 17.5.0
postcss 8.5.8 8.5.9
react-hook-form 7.72.0 7.72.1
slugify 1.6.8 1.6.9
viem 2.46.0 2.47.12
wagmi 3.4.3 3.6.1
prettier 3.8.1 3.8.2
syncpack 14.2.1 14.3.0
turbo 2.8.20 2.9.6
@headlessui/react 2.2.9 2.2.10
next 16.2.1 16.2.3
next-plausible 3.12.5 4.0.0
nuqs 2.8.8 2.8.9
react 19.2.4 19.2.5
react-dom 19.2.4 19.2.5
@next/eslint-plugin-next 16.1.6 16.2.3
@percy/cypress 3.1.7 3.1.8
eslint 10.1.0 10.2.0
eslint-plugin-turbo 2.8.9 2.9.6
typescript 5.9.3 6.0.2
typescript-eslint 8.57.2 8.58.1
next-intl 4.8.3 4.9.1
tinacms 3.4.1 3.7.2
@tinacms/cli 2.1.5 2.2.2
ts-jest 29.4.6 29.4.9
tsdown 0.20.3 0.21.7

Updates @percy/cli from 1.31.10 to 1.31.11

Release notes

Sourced from @​percy/cli's releases.

v1.31.11

What's Changed

🐛 Bug Fixes

🏗 Maintenance

⬆️⬇️ Dependency Updates

New Contributors

Full Changelog: percy/cli@v1.31.10...v1.31.11

v1.31.11-beta.1

What's Changed

🐛 Bug Fixes

⬆️⬇️ Dependency Updates

Full Changelog: percy/cli@v1.31.11-beta.0...v1.31.11-beta.1

v1.31.11-beta.0

New Contributors

Full Changelog: percy/cli@v1.31.10...v1.31.11-beta.0

Commits

Updates @sentry/nextjs from 10.46.0 to 10.48.0

Release notes

Sourced from @​sentry/nextjs's releases.

10.48.0

Important Changes

  • feat(aws-serverless): Ship Lambda extension in npm package for container image Lambdas (#20133)

    The Sentry Lambda extension is now included in the npm package, enabling container image-based Lambda functions to use it. Copy the extension files into your Docker image and set the tunnel option:

    RUN mkdir -p /opt/sentry-extension
    COPY node_modules/@sentry/aws-serverless/build/lambda-extension/sentry-extension /opt/extensions/sentry-extension
    COPY node_modules/@sentry/aws-serverless/build/lambda-extension/index.mjs /opt/sentry-extension/index.mjs
    RUN chmod +x /opt/extensions/sentry-extension /opt/sentry-extension/index.mjs
    Sentry.init({
      dsn: '__DSN__',
      tunnel: 'http://localhost:9000/envelope',
    });

    This works with any Sentry SDK (@sentry/aws-serverless, @sentry/sveltekit, @sentry/node, etc.).

  • feat(cloudflare): Support basic WorkerEntrypoint (#19884)

    withSentry now supports instrumenting classes extending Cloudflare's WorkerEntrypoint. This instruments fetch, scheduled, queue, and tail handlers.

    import * as Sentry from '@sentry/cloudflare';
    import { WorkerEntrypoint } from 'cloudflare:workers';
    class MyWorker extends WorkerEntrypoint {
    async fetch(request: Request): Promise<Response> {
    return new Response('Hello World!');
    }
    }
    export default Sentry.withSentry(env => ({ dsn: env.SENTRY_DSN, tracesSampleRate: 1.0 }), MyWorker);

  • ref(core): Unify .do* span ops to gen_ai.generate_content (#20074)

    All Vercel AI do* spans (ai.generateText.doGenerate, ai.streamText.doStream, ai.generateObject.doGenerate, ai.streamObject.doStream) now use a single unified span op gen_ai.generate_content instead of separate ops like gen_ai.generate_text, gen_ai.stream_text, gen_ai.generate_object, and gen_ai.stream_object.

  • ref(core): Remove provider-specific AI span attributes in favor of gen_ai attributes in sentry conventions (#20011)

    The following provider-specific span attributes have been removed from the OpenAI and Anthropic AI integrations. Use the standardized gen_ai.* equivalents instead:

    Removed attribute Replacement

... (truncated)

Changelog

Sourced from @​sentry/nextjs's changelog.

10.48.0

Important Changes

  • feat(aws-serverless): Ship Lambda extension in npm package for container image Lambdas (#20133)

    The Sentry Lambda extension is now included in the npm package, enabling container image-based Lambda functions to use it. Copy the extension files into your Docker image and set the tunnel option:

    RUN mkdir -p /opt/sentry-extension
    COPY node_modules/@sentry/aws-serverless/build/lambda-extension/sentry-extension /opt/extensions/sentry-extension
    COPY node_modules/@sentry/aws-serverless/build/lambda-extension/index.mjs /opt/sentry-extension/index.mjs
    RUN chmod +x /opt/extensions/sentry-extension /opt/sentry-extension/index.mjs
    Sentry.init({
      dsn: '__DSN__',
      tunnel: 'http://localhost:9000/envelope',
    });

    This works with any Sentry SDK (@sentry/aws-serverless, @sentry/sveltekit, @sentry/node, etc.).

  • feat(cloudflare): Support basic WorkerEntrypoint (#19884)

    withSentry now supports instrumenting classes extending Cloudflare's WorkerEntrypoint. This instruments fetch, scheduled, queue, and tail handlers.

    import * as Sentry from '@sentry/cloudflare';
    import { WorkerEntrypoint } from 'cloudflare:workers';
    class MyWorker extends WorkerEntrypoint {
    async fetch(request: Request): Promise<Response> {
    return new Response('Hello World!');
    }
    }
    export default Sentry.withSentry(env => ({ dsn: env.SENTRY_DSN, tracesSampleRate: 1.0 }), MyWorker);

  • ref(core): Unify .do* span ops to gen_ai.generate_content (#20074)

    All Vercel AI do* spans (ai.generateText.doGenerate, ai.streamText.doStream, ai.generateObject.doGenerate, ai.streamObject.doStream) now use a single unified span op gen_ai.generate_content instead of separate ops like gen_ai.generate_text, gen_ai.stream_text, gen_ai.generate_object, and gen_ai.stream_object.

  • ref(core): Remove provider-specific AI span attributes in favor of gen_ai attributes in sentry conventions (#20011)

    The following provider-specific span attributes have been removed from the OpenAI and Anthropic AI integrations. Use the standardized gen_ai.* equivalents instead:

    | Removed attribute | Replacement |

... (truncated)

Commits
  • a67df4d release: 10.48.0
  • e0732ff Merge pull request #20172 from getsentry/prepare-release/10.48.0
  • d1ee40f meta(changelog): Update changelog for 10.48.0
  • 2897297 feat(nuxt): Exclude tracing meta tags on cached pages in Nuxt 5 (#20168)
  • 1cc3dd0 chore(deps-dev): Bump effect from 3.20.0 to 3.21.0 (#19999)
  • c273167 fix(core): Fix withStreamedSpan typing error add missing exports (#20124)
  • b6f7b86 feat(core): Apply ignoreSpans to streamed spans (#19934)
  • 7bd8449 test(node,node-core): Add span streaming integration tests (#19806)
  • 51fc6d1 feat(node-core): Add POtel server-side span streaming implementation (#19741)
  • 77357c7 fix(core): Replace global interval with trace-specific interval based flushin...
  • Additional commits viewable in compare view

Updates @types/node from 22.19.1 to 25.6.0

Commits

Updates cypress from 15.13.0 to 15.13.1

Release notes

Sourced from cypress's releases.

v15.13.1

Changelog: https://docs.cypress.io/app/references/changelog#15-13-1

Commits

Updates globals from 17.4.0 to 17.5.0

Release notes

Sourced from globals's releases.

v17.5.0

  • Update globals (2026-04-12) (#342) 5d84602

sindresorhus/globals@v17.4.0...v17.5.0

Commits

Updates postcss from 8.5.8 to 8.5.9

Release notes

Sourced from postcss's releases.

8.5.9

  • Speed up source map encoding paring in case of the error.
Changelog

Sourced from postcss's changelog.

8.5.9

  • Speed up source map encoding paring in case of the error.
Commits
  • fe88ac2 Release 8.5.9 version
  • c551632 Avoid RegExp when we can use simple JS
  • 89a6b74 Move SECURITY.txt for docs folder to keep GitHub page cleaner
  • 6ceb8a4 Create SECURITY.md
  • 02ccae6 Another way to fix CI with .ts ext in tests on old Node.js
  • 2c36658 Another way to fix CI with TS on old Node.js
  • b906003 Another way to fix CI with old Node.js
  • 04d32cd Fix another issue with Node.js 10 on CI
  • df86cdf Try to fix Node.js 10 on CI
  • 82bec0d Move to oxfmt
  • Additional commits viewable in compare view

Updates react-hook-form from 7.72.0 to 7.72.1

Release notes

Sourced from react-hook-form's releases.

Version 7.72.1

🐞 fix: add isDirty check for numeric string keys in defaultValues (issue #13346) (#13347) 🐞 fix: prevent setValue with shouldDirty from polluting unrelated dirty fields (#13326) 🐞 fix: memoize control in HookFormControlContext to prevent render conflicts (#13272) (#13312) 🐞 fix: isNameInFieldArray should check all ancestor paths for nested field arrays (#13318) 🐞 fix: #13320 formState.isValid incorrect on Controller re-mount (#13324)

thanks to @​6810779s, @​candymask0712, @​olagokemills, @​shahmir-oscilar & @​bae080311

Commits
  • 724e563 7.72.1
  • ba649e9 🐞 test: add isDirty check for numeric string keys in defaultValues (issue #13...
  • 2f56eb0 🛖 build(deps): bump yaml from 1.10.2 to 1.10.3 in /app (#13335)
  • f29f546 👯 combine duplicated code (#13328)
  • 2cfc8a5 🐞 fix: prevent setValue with shouldDirty from polluting unrelated dirty field...
  • 44e8815 🐞 fix: memoize control in HookFormControlContext to prevent render conflicts ...
  • 302d160 🐞 fix: isNameInFieldArray should check all ancestor paths for nested field ar...
  • d7ccd70 🦾 dev deps upgrade (#13325)
  • fddf779 🐞 fix: #13320 formState.isValid incorrect on Controller re-mount (#13324)
  • 26ae54e 🛖 build(deps-dev): bump rollup from 4.53.3 to 4.59.0 (#13323)
  • See full diff in compare view

Updates slugify from 1.6.8 to 1.6.9

Changelog

Sourced from slugify's changelog.

v1.6.9 (2026-04-01)

  • #171 fix: correct CommonJS export for "module": "node16" + ESM (171) (@​karlhorky)
Commits
Maintainer changes

This version was pushed to npm by joshuakgoldberg, a new releaser for slugify since your current version.


Updates viem from 2.46.0 to 2.47.12

Release notes

Sourced from viem's releases.

viem@2.47.12

Patch Changes

viem@2.47.11

Patch Changes

viem@2.47.10

Patch Changes

viem@2.47.6

... (truncated)

Commits
  • c3c3985 chore: version package (#4475)
  • 0b05f50 fix: preserve feePayerSignature in prepareTransactionRequest (#4477)
  • ee5e257 feat(tempo): add Expiry module + update access key docs
  • e0a837a fix: snapshot indentation + bump size limits
  • 07a3a47 docs(tempo): up access key docs
  • c51cb79 chore: version package (#4462)
  • 51ee597 feat(tempo): add scopes and limits.period to access keys (TIP-1011) (#4474)
  • 863f9c6 chore: fix audit vulnerabilities (lodash, hono, @​hono/node-server, basic-ftp)
  • 697200d fix: make build compatible with typescript 6 (#4472)
  • f8b8df9 ci: re-enable wagmi verify (#4435)
  • Additional commits viewable in compare view

Updates wagmi from 3.4.3 to 3.6.1

Release notes

Sourced from wagmi's releases.

wagmi@3.6.1

Patch Changes

  • Fixed feePayer types for Tempo chains on useSendTransaction, useSendTransactionSync, useWriteContract, and useWriteContractSync. (#5022)

  • Fixed createUseReadContract return type inference when multiple view functions share the same argument shape. (#5020)

  • Updated dependencies [2a4660e, f53f3f5]:

    • @​wagmi/core@​3.4.2
    • @​wagmi/connectors@​8.0.1

wagmi@3.6.0

Minor Changes

  • Update MetaMask connector from @metamask/sdk to the new @metamask/connect-evm. (#4960)

    npm install @metamask/connect-evm
    npm uninstall @metamask/sdk

Patch Changes

wagmi@3.5.0

Minor Changes

  • Added useSignTransaction (#4995)

Patch Changes

  • Updated dependencies [8b96e2f]:
    • @​wagmi/core@​3.4.0
    • @​wagmi/connectors@​7.2.1

wagmi@3.4.4

Patch Changes

Changelog

Sourced from wagmi's changelog.

3.6.1

Patch Changes

  • Fixed feePayer types for Tempo chains on useSendTransaction, useSendTransactionSync, useWriteContract, and useWriteContractSync. (#5022)

  • Fixed createUseReadContract return type inference when multiple view functions share the same argument shape. (#5020)

  • Updated dependencies [2a4660e, f53f3f5]:

    • @​wagmi/core@​3.4.2
    • @​wagmi/connectors@​8.0.1

3.6.0

Minor Changes

  • Update MetaMask connector from @metamask/sdk to the new @metamask/connect-evm. (#4960)

    npm install @metamask/connect-evm
    npm uninstall @metamask/sdk

Patch Changes

3.5.0

Minor Changes

  • Added useSignTransaction (#4995)

Patch Changes

  • Updated dependencies [8b96e2f]:
    • @​wagmi/core@​3.4.0
    • @​wagmi/connectors@​7.2.1

3.4.4

Patch Changes

Commits

Updates prettier from 3.8.1 to 3.8.2

Release notes

Sourced from prettier's releases.

3.8.2

  • Support Angular v21.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.8.2

diff

Angular: Support Angular v21.2 (#18722, #19034 by @​fisker)

Exhaustive typechecking with @default never;

<!-- Input -->
@switch (foo) {
  @case (1) {}
  @default never;
}
<!-- Prettier 3.8.1 -->
SyntaxError: Incomplete block "default never". If you meant to write the @ character, you should use the "&#64;" HTML entity instead. (3:3)
<!-- Prettier 3.8.2 -->
@​switch (foo) {
@​case (1) {}
@​default never;
}

arrow function and instanceof expressions.

<!-- Input -->
@let fn = (a) =>        a?    1:2;
{{ fn ( a         instanceof b)}}
<!-- Prettier 3.8.1 -->
@​let fn = (a) =>        a?    1:2;
{{ fn ( a         instanceof b)}}
<!-- Prettier 3.8.2 -->
@​let fn = (a) => (a ? 1 : 2);
{{ fn(a instanceof b) }}

Commits

Updates syncpack from 14.2.1 to 14.3.0

Release notes

Sourced from syncpack's releases.

14.3.0

14.3.0 (2026-03-29)

Features

  • rcfile: allow // comment properties (df0cc01)

Bug Fixes

  • cargo: update dependencies (6af7e45)
Changelog

Sourced from syncpack's changelog.

14.3.0 (2026-03-29)

Features

  • rcfile: allow // comment properties (df0cc01)

Bug Fixes

  • cargo: update dependencies (6af7e45)
Commits
  • 3333389 chore(release): 14.3.0
  • ca1ea09 test(rcfile): add reproduction for #327
  • 6af7e45 fix(cargo): update dependencies
  • df0cc01 feat(rcfile): allow // comment properties
  • 2ca55ca chore(cargo): update dependencies
  • c3a2401 refactor(groups): combine visitors and version groups
  • See full diff in compare view

Updates turbo from 2.8.20 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

Updates @headlessui/react from 2.2.9 to 2.2.10

Release notes

Sourced from @​headlessui/react's releases.

@​headlessui/react@​v2.2.10

Fixed

  • Don’t render <Portal> while hydrating (#3825)
  • Fix passing props on Fragment error due to Symbol(react.lazy) (#3873)
Changelog

Sourced from @​headlessui/react's changelog.

[2.2.10] - 2026-04-07

Fixed

  • Don’t render <Portal> while hydrating (#3825)
  • Fix passing props on Fragment error due to Symbol(react.lazy) (#3873)
Commits

Updates next from 16.2.1 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 (<...

    Description has been truncated

…group across 1 directory with 30 updates

Bumps the dependencies group with 30 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@percy/cli](https://github.com/percy/cli/tree/HEAD/packages/cli) | `1.31.10` | `1.31.11` |
| [@sentry/nextjs](https://github.com/getsentry/sentry-javascript) | `10.46.0` | `10.48.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.19.1` | `25.6.0` |
| [cypress](https://github.com/cypress-io/cypress) | `15.13.0` | `15.13.1` |
| [globals](https://github.com/sindresorhus/globals) | `17.4.0` | `17.5.0` |
| [postcss](https://github.com/postcss/postcss) | `8.5.8` | `8.5.9` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.72.0` | `7.72.1` |
| [slugify](https://github.com/simov/slugify) | `1.6.8` | `1.6.9` |
| [viem](https://github.com/wevm/viem) | `2.46.0` | `2.47.12` |
| [wagmi](https://github.com/wevm/wagmi/tree/HEAD/packages/react) | `3.4.3` | `3.6.1` |
| [prettier](https://github.com/prettier/prettier) | `3.8.1` | `3.8.2` |
| [syncpack](https://github.com/JamieMason/syncpack) | `14.2.1` | `14.3.0` |
| [turbo](https://github.com/vercel/turborepo) | `2.8.20` | `2.9.6` |
| [@headlessui/react](https://github.com/tailwindlabs/headlessui/tree/HEAD/packages/@headlessui-react) | `2.2.9` | `2.2.10` |
| [next](https://github.com/vercel/next.js) | `16.2.1` | `16.2.3` |
| [next-plausible](https://github.com/4lejandrito/next-plausible) | `3.12.5` | `4.0.0` |
| [nuqs](https://github.com/47ng/nuqs/tree/HEAD/packages/nuqs) | `2.8.8` | `2.8.9` |
| [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` |
| [@next/eslint-plugin-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next) | `16.1.6` | `16.2.3` |
| [@percy/cypress](https://github.com/percy/percy-cypress) | `3.1.7` | `3.1.8` |
| [eslint](https://github.com/eslint/eslint) | `10.1.0` | `10.2.0` |
| [eslint-plugin-turbo](https://github.com/vercel/turborepo/tree/HEAD/packages/eslint-plugin-turbo) | `2.8.9` | `2.9.6` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.2` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.57.2` | `8.58.1` |
| [next-intl](https://github.com/amannn/next-intl) | `4.8.3` | `4.9.1` |
| [tinacms](https://github.com/tinacms/tinacms/tree/HEAD/packages/tinacms) | `3.4.1` | `3.7.2` |
| [@tinacms/cli](https://github.com/tinacms/tinacms/tree/HEAD/packages/@tinacms/cli) | `2.1.5` | `2.2.2` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.4.6` | `29.4.9` |
| [tsdown](https://github.com/rolldown/tsdown) | `0.20.3` | `0.21.7` |



Updates `@percy/cli` from 1.31.10 to 1.31.11
- [Release notes](https://github.com/percy/cli/releases)
- [Commits](https://github.com/percy/cli/commits/v1.31.11/packages/cli)

Updates `@sentry/nextjs` from 10.46.0 to 10.48.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.46.0...10.48.0)

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

Updates `cypress` from 15.13.0 to 15.13.1
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v15.13.0...v15.13.1)

Updates `globals` from 17.4.0 to 17.5.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.4.0...v17.5.0)

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

Updates `react-hook-form` from 7.72.0 to 7.72.1
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.72.0...v7.72.1)

Updates `slugify` from 1.6.8 to 1.6.9
- [Changelog](https://github.com/simov/slugify/blob/master/CHANGELOG.md)
- [Commits](https://github.com/simov/slugify/commits)

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

Updates `wagmi` from 3.4.3 to 3.6.1
- [Release notes](https://github.com/wevm/wagmi/releases)
- [Changelog](https://github.com/wevm/wagmi/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/wevm/wagmi/commits/wagmi@3.6.1/packages/react)

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 `syncpack` from 14.2.1 to 14.3.0
- [Release notes](https://github.com/JamieMason/syncpack/releases)
- [Changelog](https://github.com/JamieMason/syncpack/blob/main/CHANGELOG.md)
- [Commits](JamieMason/syncpack@14.2.1...14.3.0)

Updates `turbo` from 2.8.20 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.8.20...v2.9.6)

Updates `@headlessui/react` from 2.2.9 to 2.2.10
- [Release notes](https://github.com/tailwindlabs/headlessui/releases)
- [Changelog](https://github.com/tailwindlabs/headlessui/blob/main/packages/@headlessui-react/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/headlessui/commits/@headlessui/react@v2.2.10/packages/@headlessui-react)

Updates `next` from 16.2.1 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.2.1...v16.2.3)

Updates `next-plausible` from 3.12.5 to 4.0.0
- [Changelog](https://github.com/4lejandrito/next-plausible/blob/master/CHANGELOG.md)
- [Commits](4lejandrito/next-plausible@v3.12.5...v4.0.0)

Updates `nuqs` from 2.8.8 to 2.8.9
- [Release notes](https://github.com/47ng/nuqs/releases)
- [Commits](https://github.com/47ng/nuqs/commits/v2.8.9/packages/nuqs)

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 `@next/eslint-plugin-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-plugin-next)

Updates `@percy/cypress` from 3.1.7 to 3.1.8
- [Release notes](https://github.com/percy/percy-cypress/releases)
- [Commits](percy/percy-cypress@v3.1.7...v3.1.8)

Updates `eslint` from 10.1.0 to 10.2.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.1.0...v10.2.0)

Updates `eslint-plugin-turbo` from 2.8.9 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/eslint-plugin-turbo)

Updates `typescript` from 5.9.3 to 6.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.2)

Updates `typescript-eslint` from 8.57.2 to 8.58.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.58.1/packages/typescript-eslint)

Updates `next-intl` from 4.8.3 to 4.9.1
- [Release notes](https://github.com/amannn/next-intl/releases)
- [Changelog](https://github.com/amannn/next-intl/blob/main/CHANGELOG.md)
- [Commits](amannn/next-intl@v4.8.3...v4.9.1)

Updates `tinacms` from 3.4.1 to 3.7.2
- [Release notes](https://github.com/tinacms/tinacms/releases)
- [Changelog](https://github.com/tinacms/tinacms/blob/main/packages/tinacms/CHANGELOG.md)
- [Commits](https://github.com/tinacms/tinacms/commits/tinacms@3.7.2/packages/tinacms)

Updates `@tinacms/cli` from 2.1.5 to 2.2.2
- [Release notes](https://github.com/tinacms/tinacms/releases)
- [Changelog](https://github.com/tinacms/tinacms/blob/main/packages/@tinacms/cli/CHANGELOG.md)
- [Commits](https://github.com/tinacms/tinacms/commits/@tinacms/cli@2.2.2/packages/@tinacms/cli)

Updates `ts-jest` from 29.4.6 to 29.4.9
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.4.6...v29.4.9)

Updates `tsdown` from 0.20.3 to 0.21.7
- [Release notes](https://github.com/rolldown/tsdown/releases)
- [Commits](rolldown/tsdown@v0.20.3...v0.21.7)

---
updated-dependencies:
- dependency-name: "@percy/cli"
  dependency-version: 1.31.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@sentry/nextjs"
  dependency-version: 10.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-version: 25.6.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: cypress
  dependency-version: 15.13.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: globals
  dependency-version: 17.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: postcss
  dependency-version: 8.5.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react-hook-form
  dependency-version: 7.72.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: slugify
  dependency-version: 1.6.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: viem
  dependency-version: 2.47.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: wagmi
  dependency-version: 3.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: prettier
  dependency-version: 3.8.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: syncpack
  dependency-version: 14.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: turbo
  dependency-version: 2.9.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@headlessui/react"
  dependency-version: 2.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: next
  dependency-version: 16.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: next-plausible
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: nuqs
  dependency-version: 2.8.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react-dom
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@next/eslint-plugin-next"
  dependency-version: 16.2.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@percy/cypress"
  dependency-version: 3.1.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: eslint
  dependency-version: 10.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: eslint-plugin-turbo
  dependency-version: 2.9.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typescript
  dependency-version: 6.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.58.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: next-intl
  dependency-version: 4.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tinacms
  dependency-version: 3.7.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@tinacms/cli"
  dependency-version: 2.2.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ts-jest
  dependency-version: 29.4.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tsdown
  dependency-version: 0.21.7
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

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 12, 2026
@vercel
Copy link
Copy Markdown

vercel bot commented Apr 12, 2026

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

Project Deployment Actions Updated (UTC)
ffdweb-site Error Error Apr 12, 2026 5:40pm
filecoin-foundation-site Error Error Apr 12, 2026 5:40pm
filecoin-foundation-uxit Ready Ready Preview, Comment Apr 12, 2026 5:40pm
filecoin-site Error Error Apr 12, 2026 5:40pm

Request Review

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 size/L

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants