Skip to content

chore(deps): Bump the minor-updates group across 1 directory with 21 updates#225

Merged
Amund211 merged 3 commits into
mainfrom
dependabot/npm_and_yarn/minor-updates-2e2504d3d5
Apr 22, 2026
Merged

chore(deps): Bump the minor-updates group across 1 directory with 21 updates#225
Amund211 merged 3 commits into
mainfrom
dependabot/npm_and_yarn/minor-updates-2e2504d3d5

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the minor-updates group with 21 updates in the / directory:

Package From To
@sentry/react 10.46.0 10.48.0
@sentry/vite-plugin 5.1.1 5.2.0
@tanstack/react-query 5.95.2 5.99.0
@tanstack/react-query-persist-client 5.95.2 5.99.0
@tanstack/react-router 1.168.8 1.168.21
react 19.2.4 19.2.5
react-dom 19.2.4 19.2.5
@rolldown/plugin-babel 0.2.2 0.2.3
@tanstack/eslint-plugin-query 5.97.0 5.99.0
@tanstack/react-query-devtools 5.95.2 5.99.0
@tanstack/react-router-devtools 1.166.11 1.166.13
@tanstack/router-plugin 1.167.9 1.167.22
@types/node 24.12.0 24.12.2
@vitest/browser-playwright 4.1.2 4.1.4
@vitest/coverage-v8 4.1.2 4.1.4
msw 2.12.14 2.13.3
oxfmt 0.42.0 0.45.0
oxlint-tsgolint 0.20.0 0.21.0
vite 8.0.5 8.0.8
vitest 4.1.2 4.1.4
vitest-browser-react 2.1.0 2.2.0

Updates @sentry/react from 10.46.0 to 10.48.0

Release notes

Sourced from @​sentry/react'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/react'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 @sentry/vite-plugin from 5.1.1 to 5.2.0

Release notes

Sourced from @​sentry/vite-plugin's releases.

5.2.0

New Features ✨

Bug Fixes 🐛

Internal Changes 🔧

Changelog

Sourced from @​sentry/vite-plugin's changelog.

5.2.0

New Features ✨

Bug Fixes 🐛

Internal Changes 🔧

Commits
  • e2cdbf8 release: 5.2.0
  • 89bea0f ci(tests): Use deterministic debugids (#912)
  • 9fa5191 test: Add esbuild integration tests (#911)
  • aa73f53 fix(rollup): Make rollup an optional peer dependency (#913)
  • 1e6cfc7 chore(deps): Bump vulnerable webpack version (#909)
  • 3bf270c feat(core): Pass mapDir to rewriteSourcesHook (#908)
  • 97614c9 fix(core): Conditionally add tracing headers (#907)
  • a0aefde fix(e2e-tests): Pin axios to 1.13.5 to avoid compromised 1.14.1 (#906)
  • 136d4cf fix: Add missing webpack5 entrypoint in webpack-plugin (#905)
  • 0a89c2f test: Vite integration tests (#899)
  • Additional commits viewable in compare view

Updates @tanstack/react-query from 5.95.2 to 5.99.0

Release notes

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

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

@​tanstack/react-query@​5.99.0

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

@​tanstack/react-query@​5.98.0

Patch Changes

  • Updated dependencies []:

... (truncated)

Changelog

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

5.99.0

Patch Changes

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

5.98.0

Patch Changes

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

5.97.0

Patch Changes

  • Updated dependencies [2bfb12c]:
    • @​tanstack/query-core@​5.97.0

5.96.2

Patch Changes

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

5.96.1

Patch Changes

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

5.96.0

Patch Changes

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

Updates @tanstack/react-query-persist-client from 5.95.2 to 5.99.0

Release notes

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

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

Patch Changes

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

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

Patch Changes

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

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

5.99.0

Patch Changes

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

5.98.0

Patch Changes

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

5.97.0

Patch Changes

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

5.96.2

Patch Changes

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

5.96.1

Patch Changes

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

5.96.0

Patch Changes

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

Updates @tanstack/react-router from 1.168.8 to 1.168.21

Changelog

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

1.168.21

Patch Changes

  • Updated dependencies [16f6892]:
    • @​tanstack/router-core@​1.168.15

1.168.20

Patch Changes

  • Fix React Server Component imports from @tanstack/react-router by adding a react-server root export that preserves the normal API surface while resolving notFound and redirect from a server-safe entry. (#7183)

    This fixes RSC routes that throw notFound() or redirect() from server functions so they behave correctly during SSR and client navigation.

1.168.19

Patch Changes

  • Fix route file transforms to preserve route ID quoting, handle more exported Route patterns, and avoid incorrect import rewrites in edge cases. (#7167)

    Improve transform robustness with clearer route-call detection, safer import removal, and expanded test coverage for quote preservation, constructor swaps, and unsupported route definitions.

1.168.18

Patch Changes

  • Updated dependencies [0e2c900]:
    • @​tanstack/router-core@​1.168.14

1.168.17

Patch Changes

  • Updated dependencies [812792f]:
    • @​tanstack/router-core@​1.168.13

1.168.16

Patch Changes

  • Updated dependencies [8ec9ca9]:
    • @​tanstack/router-core@​1.168.12

1.168.15

Patch Changes

  • shorten internal non-minifiable store names for byte shaving (#7152)

... (truncated)

Commits
  • 26680c9 ci: changeset release
  • 16f6892 fix(router-core): avoid intermediate success state for async notFound (#7184)
  • 73cd569 ci: changeset release
  • c5ad329 fix react server exports for start and react-router (#7183)
  • 85db378 ci: changeset release
  • 105d056 fix(router-generator): harden route file transform rewrites (#7167)
  • c3900c8 ci: changeset release
  • 3ef971f ci: changeset release
  • 5cec6fb ci: changeset release
  • b059766 chore(types): re-export SearchMiddleware type from react-router (#7087)
  • 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

Updates @rolldown/plugin-babel from 0.2.2 to 0.2.3

Release notes

Sourced from @​rolldown/plugin-babel's releases.

plugin-babel@0.2.3

Please refer to CHANGELOG.md for details.

Changelog

Sourced from @​rolldown/plugin-babel's changelog.

0.2.3 (2026-04-13)

Bug Fixes

  • babel: exclude rolldown runtime module by default (#57) (d42ec45)
  • deps: update all non-major dependencies (#35) (f359c39)
  • deps: update all non-major dependencies (#40) (1963ed1)
  • deps: update all non-major dependencies (#49) (8047e05)
  • deps: update rolldown-related dependencies (#36) (b2bf24b)
  • deps: update rolldown-related dependencies (#46) (6b7fcfc)
  • deps: update rolldown-related dependencies (#50) (232515f)
  • deps: update rolldown-related dependencies (#55) (c432590)

Miscellaneous Chores

  • deps: update dependency @​types/node to v24 (#38) (d6b8baa)
Commits
  • 015e64a release: plugin-babel@0.2.3
  • d42ec45 fix(babel): exclude rolldown runtime module by default (#57)
  • c432590 fix(deps): update rolldown-related dependencies (#55)
  • 232515f fix(deps): update rolldown-related dependencies (#50)
  • 8047e05 fix(deps): update all non-major dependencies (#49)
  • 1963ed1 fix(deps): update all non-major dependencies (#40)
  • 6b7fcfc fix(deps): update rolldown-related dependencies (#46)
  • d6b8baa chore(deps): update dependency @​types/node to v24 (#38)
  • b2bf24b fix(deps): update rolldown-related dependencies (#36)
  • f359c39 fix(deps): update all non-major dependencies (#35)
  • See full diff in compare view

Updates @tanstack/eslint-plugin-query from 5.97.0 to 5.99.0

Release notes

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

@​tanstack/eslint-plugin-query@​5.99.0

No release notes provided.

@​tanstack/eslint-plugin-query@​5.98.0

No release notes provided.

Changelog

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

5.99.0

5.98.0

Commits

Updates @tanstack/react-query-devtools from 5.95.2 to 5.99.0

Release notes

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

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

Patch Changes

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

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

Patch Changes

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

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

5.99.0

Patch Changes

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

5.98.0

Patch Changes

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

5.97.0

Patch Changes

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

5.96.2

Patch Changes

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

5.96.1

Patch Changes

  • fix(build): exclude config files from production DTS rollup to prevent @types/node type pollution (#10358)

  • Updated dependencies []:

    • @​tanstack/query-devtools@​5.96.1
    • @​tanstack/react-query@​5.96.1

5.96.0

Patch Changes

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

Updates @tanstack/react-router-devtools from 1.166.11 to 1.166.13

Changelog

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

1.166.13

Patch Changes

  • Updated dependencies [6355bb7]:
    • @​tanstack/router-devtools-core@​1.167.3
    • @​tanstack/react-router@​1.168.15
    • @​tanstack/router-core@​1.168.11

1.166.12

Patch Changes

  • Updated dependencies [459057c]:
    • @​tanstack/router-devtools-core@​1.167.2
    • @​tanstack/react-router@​1.168.14
    • @​tanstack/router-core@​1.168.10
Commits

Updates @tanstack/router-plugin from 1.167.9 to 1.167.22

Changelog

Sourced from @​tanstack/router-plugin's changelog.

1.167.22

Patch Changes

  • Updated dependencies [16f6892]:
    • @​tanstack/router-core@​1.168.15
    • @​tanstack/react-router@​1.168.21
    • @​tanstack/router-generator@​1.166.32

1.167.21

Patch Changes

  • Updated dependencies [328d7e5]:
    • @​tanstack/router-generator@​1.166.31

1.167.20

Patch Changes

  • fix: update vite-plugin-solid peer dependency to support version 3.0.0-0 (#7170)

1.167.19

Patch Changes

  • Updated dependencies [105d056]:
    • @​tanstack/router-generator@​1.166.30
    • @​tanstack/react-router@​1.168.19

1.167.18

Patch Changes

  • add vite 8 to peer deps (#7160)

1.167.17

Patch Changes

  • Updated dependencies [0e2c900]:
    • @​tanstack/router-core@​1.168.14
    • @​tanstack/react-router@​1.168.18
    • @​tanstack/router-generator@​1.166.29

1.167.16

Patch Changes

... (truncated)

Commits
  • 26680c9 ci: changeset release
  • c373feb ci: changeset release
  • c857087 ci: changeset release
  • 96ac2d8 fix(router-plugin): update vite-plugin-solid peer dependency to support versi...
  • 85db378 ci: changeset release
  • 105d056 fix(router-generator): harden route file transform rewrites (#7167)
  • 2cda538 ci: changeset release
  • 656a2a0 chore: add vite 8 to peer deps (#7160)
  • c3900c8 ci: changeset release
  • 3ef971f ci: changeset release
  • Additional commits viewable in compare view

Updates @types/node from 24.12.0 to 24.12.2

Commits

Updates @vitest/browser-playwright from 4.1.2 to 4.1.4

Release notes

Sourced from @​vitest/browser-playwright's releases.

v4.1.4

   🚀 Experimental Features

   🐞 Bug Fixes

...

Description has been truncated

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 21, 2026
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Apr 21, 2026

Copy link
Copy Markdown

Deploying rainbow with  Cloudflare Pages  Cloudflare Pages

Latest commit: 20f7dd5
Status: ✅  Deploy successful!
Preview URL: https://0fddfae0.rainbow-ctx.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-mino-siek.rainbow-ctx.pages.dev

View logs

@Amund211

Copy link
Copy Markdown
Owner

@dependabot rebase

@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/minor-updates-2e2504d3d5 branch from df1b2a7 to 5616d63 Compare April 21, 2026 14:07
@Amund211

Copy link
Copy Markdown
Owner

@copilot browser tests are failing in ci. Run the browser tests with a 5 minute timeout and see that they fail, then find the issue introduced in the last commit and fix it. If you can't get the tests to fail, try installing browsers, running natively or something else

Copilot AI commented Apr 21, 2026

Copy link
Copy Markdown
Contributor

@copilot browser tests are failing in ci. Run the browser tests with a 5 minute timeout and see that they fail, then find the issue introduced in the last commit and fix it. If you can't get the tests...

I reproduced the browser test failures locally. The root cause is that MSW 2.13.x requires public/mockServiceWorker.js to be present (generated via msw init public/), which was missing from the repository. I've added it in commit 729ab8b.

Some tests are still failing after this fix — they involve fetch calls to http://localhost:5173/flashlight/... (cross-origin from the vitest dev server port) with TypeError: Failed to fetch. This is a deeper issue with how MSW 2.13.x's service worker interception handles cross-origin requests in the Playwright test environment that needs further investigation.

Copilot AI requested a review from Amund211 April 21, 2026 18:57
@Amund211

Copy link
Copy Markdown
Owner

@dependabot recreate

…updates

Bumps the minor-updates group with 21 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `10.46.0` | `10.48.0` |
| [@sentry/vite-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins) | `5.1.1` | `5.2.0` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.95.2` | `5.99.0` |
| [@tanstack/react-query-persist-client](https://github.com/TanStack/query/tree/HEAD/packages/react-query-persist-client) | `5.95.2` | `5.99.0` |
| [@tanstack/react-router](https://github.com/TanStack/router/tree/HEAD/packages/react-router) | `1.168.8` | `1.168.21` |
| [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` |
| [@rolldown/plugin-babel](https://github.com/rolldown/plugins/tree/HEAD/packages/babel) | `0.2.2` | `0.2.3` |
| [@tanstack/eslint-plugin-query](https://github.com/TanStack/query/tree/HEAD/packages/eslint-plugin-query) | `5.97.0` | `5.99.0` |
| [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools) | `5.95.2` | `5.99.0` |
| [@tanstack/react-router-devtools](https://github.com/TanStack/router/tree/HEAD/packages/react-router-devtools) | `1.166.11` | `1.166.13` |
| [@tanstack/router-plugin](https://github.com/TanStack/router/tree/HEAD/packages/router-plugin) | `1.167.9` | `1.167.22` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.12.0` | `24.12.2` |
| [@vitest/browser-playwright](https://github.com/vitest-dev/vitest/tree/HEAD/packages/browser-playwright) | `4.1.2` | `4.1.4` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.2` | `4.1.4` |
| [msw](https://github.com/mswjs/msw) | `2.12.14` | `2.13.3` |
| [oxfmt](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxfmt) | `0.42.0` | `0.45.0` |
| [oxlint-tsgolint](https://github.com/oxc-project/tsgolint) | `0.20.0` | `0.21.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.5` | `8.0.8` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.2` | `4.1.4` |
| [vitest-browser-react](https://github.com/vitest-community/vitest-browser-react) | `2.1.0` | `2.2.0` |



Updates `@sentry/react` 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 `@sentry/vite-plugin` from 5.1.1 to 5.2.0
- [Release notes](https://github.com/getsentry/sentry-javascript-bundler-plugins/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript-bundler-plugins@5.1.1...5.2.0)

Updates `@tanstack/react-query` from 5.95.2 to 5.99.0
- [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.99.0/packages/react-query)

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

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

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 `@rolldown/plugin-babel` from 0.2.2 to 0.2.3
- [Release notes](https://github.com/rolldown/plugins/releases)
- [Changelog](https://github.com/rolldown/plugins/blob/main/packages/babel/CHANGELOG.md)
- [Commits](https://github.com/rolldown/plugins/commits/plugin-babel@0.2.3/packages/babel)

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

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

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

Updates `@tanstack/router-plugin` from 1.167.9 to 1.167.22
- [Release notes](https://github.com/TanStack/router/releases)
- [Changelog](https://github.com/TanStack/router/blob/main/packages/router-plugin/CHANGELOG.md)
- [Commits](https://github.com/TanStack/router/commits/@tanstack/router-plugin@1.167.22/packages/router-plugin)

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

Updates `@vitest/browser-playwright` from 4.1.2 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/browser-playwright)

Updates `@vitest/coverage-v8` from 4.1.2 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/coverage-v8)

Updates `msw` from 2.12.14 to 2.13.3
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v2.12.14...v2.13.3)

Updates `oxfmt` from 0.42.0 to 0.45.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/npm/oxfmt/CHANGELOG.md)
- [Commits](https://github.com/oxc-project/oxc/commits/oxfmt_v0.45.0/npm/oxfmt)

Updates `oxlint-tsgolint` from 0.20.0 to 0.21.0
- [Release notes](https://github.com/oxc-project/tsgolint/releases)
- [Commits](oxc-project/tsgolint@v0.20.0...v0.21.0)

Updates `vite` from 8.0.5 to 8.0.8
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.0.8/packages/vite)

Updates `vitest` from 4.1.2 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)

Updates `vitest-browser-react` from 2.1.0 to 2.2.0
- [Release notes](https://github.com/vitest-community/vitest-browser-react/releases)
- [Commits](vitest-community/vitest-browser-react@v2.1.0...v2.2.0)

---
updated-dependencies:
- dependency-name: "@sentry/react"
  dependency-version: 10.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@sentry/vite-plugin"
  dependency-version: 5.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.99.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@tanstack/react-query-persist-client"
  dependency-version: 5.99.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@tanstack/react-router"
  dependency-version: 1.168.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: react-dom
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@rolldown/plugin-babel"
  dependency-version: 0.2.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@tanstack/eslint-plugin-query"
  dependency-version: 5.99.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@tanstack/react-query-devtools"
  dependency-version: 5.99.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@tanstack/react-router-devtools"
  dependency-version: 1.166.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@tanstack/router-plugin"
  dependency-version: 1.167.22
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@types/node"
  dependency-version: 24.12.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@vitest/browser-playwright"
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: msw
  dependency-version: 2.13.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: oxfmt
  dependency-version: 0.45.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: oxlint-tsgolint
  dependency-version: 0.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: vite
  dependency-version: 8.0.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: vitest
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: vitest-browser-react
  dependency-version: 2.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/minor-updates-2e2504d3d5 branch from 729ab8b to 435ae30 Compare April 22, 2026 13:28
Amund211 and others added 2 commits April 22, 2026 15:35
msw 2.13 introduced a service-worker lifecycle change that breaks our
vitest browser tests. Our per-test fixture calls worker.start()/stop()
around each test; on 2.13 the stop → next start cycle leaves a window
where requests bypass the worker and hit Vite directly, so the uuid
lookup fails with "Failed to fetch" and dependent tests time out at 20s.

This reproduces locally: upgrading to 2.13.3 fails ~13 tests; pinning
back to 2.12.14 makes all 196 tests pass (~21s, matching baseline).

Upstream bug: mswjs/msw#2706
Introduced by the 2.13.0 "network source architecture" refactor
(mswjs/msw#2650).

A follow-up PR will upgrade msw back to the latest and adjust the
worker fixture to only start() once per test file (the recommended
workaround: reset handlers between tests, never stop).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Align with the oxfmt bump in package.json so the pre-commit hook
uses the same formatter version as CI and local dev.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@Amund211 Amund211 merged commit bc619ce into main Apr 22, 2026
8 checks passed
@Amund211 Amund211 deleted the dependabot/npm_and_yarn/minor-updates-2e2504d3d5 branch April 22, 2026 13:58
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.

2 participants