Skip to content

Bump the npm-all group across 1 directory with 7 updates#315

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/frontend/npm-all-dc59700949
Closed

Bump the npm-all group across 1 directory with 7 updates#315
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/frontend/npm-all-dc59700949

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 19, 2026

Bumps the npm-all group with 7 updates in the /frontend directory:

Package From To
@sentry/browser 10.43.0 10.44.0
@tanstack/react-query 5.90.21 5.91.0
@tanstack/react-router 1.167.4 1.167.5
@tanstack/eslint-plugin-query 5.91.4 5.91.5
@vanilla-extract/css 1.19.0 1.19.1
msw 2.12.12 2.12.13
webpack-cli 7.0.1 7.0.2

Updates @sentry/browser from 10.43.0 to 10.44.0

Release notes

Sourced from @​sentry/browser's releases.

10.44.0

Important Changes

  • feat(effect): Add @sentry/effect SDK (Alpha) (#19644)

    This release introduces @sentry/effect, a new SDK for Effect.ts applications. The SDK provides Sentry integration via composable Effect layers for both Node.js and browser environments.

    Compose the effectLayer with optional tracing, logging, and metrics layers to instrument your Effect application:

    import * as Sentry from '@sentry/effect';
    import * as Layer from 'effect/Layer';
    import * as Logger from 'effect/Logger';
    const SentryLive = Layer.mergeAll(
    Sentry.effectLayer({ dsn: 'DSN', tracesSampleRate: 1.0, enableLogs: true }),
    Layer.setTracer(Sentry.SentryEffectTracer),
    Logger.replace(Logger.defaultLogger, Sentry.SentryEffectLogger),
    Sentry.SentryEffectMetricsLayer,
    );

    Alpha features are still in progress, may have bugs and might include breaking changes. Please reach out on GitHub if you have any feedback or concerns.

  • feat(astro): Add Astro 6 support (#19745)

    This release enables full support for Astro v6 by adjusting our Astro SDK's middleware to some Astro-internal changes. We cannot yet guarantee full support for server-islands, due to a bug in Astro v6 but we'll follow up on this once the bug is fixed.

  • feat(hono): Add basic instrumentation for Node runtime (#19817)

    Adds a new package @sentry/hono/node (alpha) with basic instrumentation for Hono applications running in Node.js. The Hono middleware for Cloudflare (@sentry/hono/cloudflare - alpha) comes with fixes, and it's now possible to access the Cloudflare Worker Bindings (env) from the options' callback.

    Start using the new Hono middlewares by installing @sentry/hono and importing the respective middleware for your runtime. More instructions can be found in the Hono readme.

    Alpha features are still in progress, may have bugs and might include breaking changes. Please reach out on GitHub if you have any feedback or concerns.

  • feat(nestjs): Instrument @nestjs/bullmq @Processor decorator (#19759)

    Automatically capture exceptions and create transactions for BullMQ queue processors in NestJS applications.

    When using the @Processor decorator from @nestjs/bullmq, the SDK now automatically wraps the process() method to create queue.process transactions with proper isolation scopes, preventing breadcrumb and scope leakage between jobs and HTTP requests. Errors thrown in processors are captured with the auto.queue.nestjs.bullmq mechanism type.

    Requires @nestjs/bullmq v10.0.0 or later.

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

10.44.0

Important Changes

  • feat(effect): Add @sentry/effect SDK (Alpha) (#19644)

    This release introduces @sentry/effect, a new SDK for Effect.ts applications. The SDK provides Sentry integration via composable Effect layers for both Node.js and browser environments.

    Compose the effectLayer with optional tracing, logging, and metrics layers to instrument your Effect application:

    import * as Sentry from '@sentry/effect';
    import * as Layer from 'effect/Layer';
    import * as Logger from 'effect/Logger';
    const SentryLive = Layer.mergeAll(
    Sentry.effectLayer({ dsn: 'DSN', tracesSampleRate: 1.0, enableLogs: true }),
    Layer.setTracer(Sentry.SentryEffectTracer),
    Logger.replace(Logger.defaultLogger, Sentry.SentryEffectLogger),
    Sentry.SentryEffectMetricsLayer,
    );

    Alpha features are still in progress, may have bugs and might include breaking changes. Please reach out on GitHub if you have any feedback or concerns.

  • feat(astro): Add Astro 6 support (#19745)

    This release enables full support for Astro v6 by adjusting our Astro SDK's middleware to some Astro-internal changes. We cannot yet guarantee full support for server-islands, due to a bug in Astro v6 but we'll follow up on this once the bug is fixed.

  • feat(hono): Add basic instrumentation for Node runtime (#19817)

    Adds a new package @sentry/hono/node (alpha) with basic instrumentation for Hono applications running in Node.js. The Hono middleware for Cloudflare (@sentry/hono/cloudflare - alpha) comes with fixes, and it's now possible to access the Cloudflare Worker Bindings (env) from the options' callback.

    Start using the new Hono middlewares by installing @sentry/hono and importing the respective middleware for your runtime. More instructions can be found in the Hono readme.

    Alpha features are still in progress, may have bugs and might include breaking changes. Please reach out on GitHub if you have any feedback or concerns.

  • feat(nestjs): Instrument @nestjs/bullmq @Processor decorator (#19759)

    Automatically capture exceptions and create transactions for BullMQ queue processors in NestJS applications.

    When using the @Processor decorator from @nestjs/bullmq, the SDK now automatically wraps the process() method to create queue.process transactions with proper isolation scopes, preventing breadcrumb and scope leakage between jobs and HTTP requests. Errors thrown in processors are captured with the auto.queue.nestjs.bullmq mechanism type.

    Requires @nestjs/bullmq v10.0.0 or later.

... (truncated)

Commits
  • 408bf7c release: 10.44.0
  • 19552fb Merge pull request #19843 from getsentry/prepare-release/10.44.0
  • 8510695 meta(changelog): Update changelog for 10.44.0
  • ca1a724 chore(effect): Add Effect to craft, README and issue templates (#19837)
  • 13f6e8b feat(effect): Remove effectLayer auto composition (#19823)
  • 1bfc154 feat(effect): Export layers for browser | setTracer in buildEffectTracer (#19...
  • e44ba32 feat(effect): Use options in buildEffectLayer without overriding (#19794)
  • fd921e5 feat(effect): Add E2E tests for the @​sentry/effect SDK (#19763)
  • a8a6bdd feat(effect): Add extra opt-in for logs and metrics (#19755)
  • ea6526d feat(effect): Add metrics to Sentry.effectLayer (#19709)
  • Additional commits viewable in compare view

Updates @tanstack/react-query from 5.90.21 to 5.91.0

Release notes

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

@​tanstack/react-query@​5.91.0

Minor Changes

  • feat: environmentManager (#10199)

Patch Changes

  • Updated dependencies [6fa901b]:
    • @​tanstack/query-core@​5.91.0

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

Patch Changes

  • Updated dependencies [6fa901b]:
    • @​tanstack/react-query@​5.91.0
    • @​tanstack/query-persist-client-core@​5.92.2

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

Patch Changes

  • Updated dependencies [978fc52]:
    • @​tanstack/query-persist-client-core@​5.92.0
    • @​tanstack/react-query@​5.90.21

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

Patch Changes

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

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

5.91.0

Minor Changes

  • feat: environmentManager (#10199)

Patch Changes

  • Updated dependencies [6fa901b]:
    • @​tanstack/query-core@​5.91.0
Commits
  • 3761d2b ci: Version Packages (#10290)
  • 6fa901b feat/environmentManager (#10199)
  • 3fac499 test(react-query/useSuspenseInfiniteQuery): add test for basic suspend and re...
  • 6d0a2a9 test(react-query/useSuspenseQuery): remove unnecessary 'act' from background ...
  • 9ec0fc6 test(react-query/useSuspenseQueries): remove unnecessary 'act' from backgroun...
  • 67cf8b6 ref: ts cutoff (#10253)
  • 8a59b2d test({react,preact}-query/useSuspenseQueries): add test for suspending when t...
  • 0eca134 test({react,preact}-query/useSuspenseQueries): add test for not suspending bu...
  • 6af63a7 test({react,preact}-query/useSuspenseQueries): add test for not suspending wh...
  • 282cdc2 test(react-query/useQueries): add test for not fetching during restoring peri...
  • Additional commits viewable in compare view

Updates @tanstack/react-router from 1.167.4 to 1.167.5

Changelog

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

1.167.5

Patch Changes

  • Updated dependencies [5ff4f0b]:
    • @​tanstack/router-core@​1.167.5
Commits

Updates @tanstack/eslint-plugin-query from 5.91.4 to 5.91.5

Release notes

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

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

Patch Changes

  • Fix exhaustive-deps to detect dependencies used inside nested queryFn callbacks/control flow, and avoid false positives when those dependencies are already present in complex queryKey expressions. (#10258)
Changelog

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

5.91.5

Patch Changes

  • Fix exhaustive-deps to detect dependencies used inside nested queryFn callbacks/control flow, and avoid false positives when those dependencies are already present in complex queryKey expressions. (#10258)
Commits

Updates @vanilla-extract/css from 1.19.0 to 1.19.1

Release notes

Sourced from @​vanilla-extract/css's releases.

@​vanilla-extract/css@​1.19.1

Patch Changes

  • #1558 9b1bfd0 Thanks @​andjsrk! - style: Fixed a bug where nested arrays of classnames could cause missing or malformed CSS during style composition in certain situations.

    For example, the following style composition would not generate CSS for the backgroundColor: 'orange' style, and would also generate malformed CSS:

    const styleWithNestedComposition = style([
      [style1, style2],
      { backgroundColor: 'orange' },
      [style3]
    ]);
Changelog

Sourced from @​vanilla-extract/css's changelog.

1.19.1

Patch Changes

  • #1558 9b1bfd0 Thanks @​andjsrk! - style: Fixed a bug where nested arrays of classnames could cause missing or malformed CSS during style composition in certain situations.

    For example, the following style composition would not generate CSS for the backgroundColor: 'orange' style, and would also generate malformed CSS:

    const styleWithNestedComposition = style([
      [style1, style2],
      { backgroundColor: 'orange' },
      [style3]
    ]);
Commits

Updates msw from 2.12.12 to 2.12.13

Release notes

Sourced from msw's releases.

v2.12.13 (2026-03-17)

Bug Fixes

  • GraphQL: support application/graphql-response+json response content-type (#2513) (4b8c330ac0dec25a61d21693ac38a097250f1255) @​phryneas @​kettanaito
  • HttpResponse: mark implicit content-type headers with a symbol (#2675) (98716e7b337aba0090695c2f70895f2f97afa3ee) @​kettanaito
Commits
  • 5f4ccce chore(release): v2.12.13
  • 4b8c330 fix(GraphQL): support application/graphql-response+json response `content-t...
  • 98716e7 fix(HttpResponse): mark implicit content-type headers with a symbol (#2675)
  • See full diff in compare view

Updates webpack-cli from 7.0.1 to 7.0.2

Release notes

Sourced from webpack-cli's releases.

webpack-cli@7.0.2

Patch Changes

Changelog

Sourced from webpack-cli's changelog.

7.0.2

Patch Changes

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the npm-all group with 7 updates in the /frontend directory:

| Package | From | To |
| --- | --- | --- |
| [@sentry/browser](https://github.com/getsentry/sentry-javascript) | `10.43.0` | `10.44.0` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.90.21` | `5.91.0` |
| [@tanstack/react-router](https://github.com/TanStack/router/tree/HEAD/packages/react-router) | `1.167.4` | `1.167.5` |
| [@tanstack/eslint-plugin-query](https://github.com/TanStack/query/tree/HEAD/packages/eslint-plugin-query) | `5.91.4` | `5.91.5` |
| [@vanilla-extract/css](https://github.com/vanilla-extract-css/vanilla-extract/tree/HEAD/packages/css) | `1.19.0` | `1.19.1` |
| [msw](https://github.com/mswjs/msw) | `2.12.12` | `2.12.13` |
| [webpack-cli](https://github.com/webpack/webpack-cli) | `7.0.1` | `7.0.2` |



Updates `@sentry/browser` from 10.43.0 to 10.44.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.43.0...10.44.0)

Updates `@tanstack/react-query` from 5.90.21 to 5.91.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.91.0/packages/react-query)

Updates `@tanstack/react-router` from 1.167.4 to 1.167.5
- [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.167.5/packages/react-router)

Updates `@tanstack/eslint-plugin-query` from 5.91.4 to 5.91.5
- [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.91.5/packages/eslint-plugin-query)

Updates `@vanilla-extract/css` from 1.19.0 to 1.19.1
- [Release notes](https://github.com/vanilla-extract-css/vanilla-extract/releases)
- [Changelog](https://github.com/vanilla-extract-css/vanilla-extract/blob/master/packages/css/CHANGELOG.md)
- [Commits](https://github.com/vanilla-extract-css/vanilla-extract/commits/@vanilla-extract/css@1.19.1/packages/css)

Updates `msw` from 2.12.12 to 2.12.13
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v2.12.12...v2.12.13)

Updates `webpack-cli` from 7.0.1 to 7.0.2
- [Release notes](https://github.com/webpack/webpack-cli/releases)
- [Changelog](https://github.com/webpack/webpack-cli/blob/main/CHANGELOG.md)
- [Commits](https://github.com/webpack/webpack-cli/compare/webpack-cli@7.0.1...webpack-cli@7.0.2)

---
updated-dependencies:
- dependency-name: "@sentry/browser"
  dependency-version: 10.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-all
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.91.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-all
- dependency-name: "@tanstack/react-router"
  dependency-version: 1.167.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-all
- dependency-name: "@tanstack/eslint-plugin-query"
  dependency-version: 5.91.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-all
- dependency-name: "@vanilla-extract/css"
  dependency-version: 1.19.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-all
- dependency-name: msw
  dependency-version: 2.12.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-all
- dependency-name: webpack-cli
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-all
...

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 Mar 19, 2026
@rodlukas rodlukas enabled auto-merge (squash) March 19, 2026 07:42
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 20, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Mar 20, 2026
auto-merge was automatically disabled March 20, 2026 02:25

Pull request was closed

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/frontend/npm-all-dc59700949 branch March 20, 2026 02:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants