Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the patch-and-minor group across 1 directory with 41 updates #3687

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 10, 2025

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

Package From To
@formatjs/intl-datetimeformat 6.17.2 6.17.3
@formatjs/intl-numberformat 8.15.2 8.15.3
@grafana/faro-web-sdk 1.12.3 1.14.1
@grafana/faro-web-tracing 1.12.3 1.14.1
@sentry/cli 2.41.1 2.42.2
@tanstack/react-query 5.66.0 5.67.2
axios 1.7.9 1.8.2
uuid 11.0.5 11.1.0
@babel/core 7.26.7 7.26.9
@babel/plugin-transform-runtime 7.25.9 7.26.9
@babel/preset-env 7.26.7 7.26.9
@chromatic-com/storybook 3.2.4 3.2.5
@eslint/compat 1.2.6 1.2.7
@eslint/eslintrc 3.2.0 3.3.0
@eslint/js 9.19.0 9.22.0
@playwright/test 1.50.1 1.51.0
@storybook/addon-essentials 8.5.3 8.6.4
@storybook/addon-interactions 8.5.3 8.6.4
@storybook/addon-links 8.5.3 8.6.4
@storybook/addon-onboarding 8.5.3 8.6.4
@storybook/addon-webpack5-compiler-swc 2.0.0 2.1.0
@storybook/blocks 8.5.3 8.6.4
@storybook/react 8.5.3 8.6.4
@storybook/react-webpack5 8.5.3 8.6.4
@storybook/test 8.5.3 8.6.4
@tanstack/react-query-devtools 5.66.0 5.67.2
@typescript-eslint/eslint-plugin 8.22.0 8.26.1
@typescript-eslint/parser 8.22.0 8.26.1
autoprefixer 10.4.20 10.4.21
chai 5.1.2 5.2.0
css-minimizer-webpack-plugin 7.0.0 7.0.2
eslint 9.19.0 9.22.0
eslint-import-resolver-typescript 3.7.0 3.8.3
eslint-plugin-react-hooks 5.1.0 5.2.0
eslint-plugin-storybook 0.11.2 0.11.4
msw 2.7.0 2.7.3
prettier 3.4.2 3.5.3
storybook 8.5.3 8.6.4
terser-webpack-plugin 5.3.11 5.3.14
typescript 5.7.3 5.8.2
webpack 5.97.1 5.98.0

Updates @formatjs/intl-datetimeformat from 6.17.2 to 6.17.3

Release notes

Sourced from @​formatjs/intl-datetimeformat's releases.

@​formatjs/intl-datetimeformat@​6.17.3

6.17.3 (2025-02-09)

Note: Version bump only for package @​formatjs/intl-datetimeformat

Commits
  • 6d6cb64 build: publish
  • 222a485 chore: bazel to 8.0.1
  • 812cd48 feat(@​formatjs/intl-localematcher): fix distance calculation bugs from expand...
  • c6c41cc chore(deps): update pnpm to v9.15.5 (#4857)
  • 1a0df91 chore(deps): update dependency content-tag to v3.1.1 (#4856)
  • d69e4cf chore(deps): update dependency @​swc/core to v1.10.15 (#4852)
  • 2a35a9b build: publish
  • b1da9d6 fix(@​formatjs/utils): add currencyScale, rm currencyMinorUnits
  • c490497 chore: rm npmrc gen
  • 6b10171 build: publish
  • Additional commits viewable in compare view

Updates @formatjs/intl-numberformat from 8.15.2 to 8.15.3

Release notes

Sourced from @​formatjs/intl-numberformat's releases.

@​formatjs/intl-numberformat@​8.15.3

8.15.3 (2025-02-09)

Note: Version bump only for package @​formatjs/intl-numberformat

Commits
  • 6d6cb64 build: publish
  • 222a485 chore: bazel to 8.0.1
  • 812cd48 feat(@​formatjs/intl-localematcher): fix distance calculation bugs from expand...
  • c6c41cc chore(deps): update pnpm to v9.15.5 (#4857)
  • 1a0df91 chore(deps): update dependency content-tag to v3.1.1 (#4856)
  • d69e4cf chore(deps): update dependency @​swc/core to v1.10.15 (#4852)
  • 2a35a9b build: publish
  • b1da9d6 fix(@​formatjs/utils): add currencyScale, rm currencyMinorUnits
  • c490497 chore: rm npmrc gen
  • 6b10171 build: publish
  • Additional commits viewable in compare view

Updates @grafana/faro-web-sdk from 1.12.3 to 1.14.1

Changelog

Sourced from @​grafana/faro-web-sdk's changelog.

1.14.1

  • Improvement (@grafana/faro-web-sdk): The ignored errors parser now also parses stack traces. This is helpful, for example, to exclude all errors thrown by extensions (#1000).

1.14.0

  • Feature (@grafana/faro-web-sdk): Provide a webVitalsInstrumentation.reportAllChanges option to report all changes for web vitals (#981)
  • Feature (@grafana/faro-web-sdk): Enhance user meta properties to align with OTEL semantic conventions for user attributes (#990)
  • Feature (@grafana/faro-web-tracing): Add user attributes to spans (#990)

Breaking

  • Improvement (@grafana/faro-web-tracing): Removed @opentelemetry/context-zone as it is not required for the default instrumentations.

    Users who need ZoneContextManager for additional OTEL instrumentations can inject it via the web-tracing configuration.

    initializeFaro({
      // ...
      instrumentations: [
        // ...
        new TracingInstrumentation({
          contextManager: new ZoneContextManager(),
          instrumentations: [
            /* custom instruments */
          ],
        }),
      ],
      // ...
    });

1.13.3

  • Chore (@grafana/faro-web-sdk): Ensure all properties in attributes and context objects are stringified when sending custom signals (#952)

1.13.2

  • Fix (@grafana/faro-web-sdk): The optional context object in the pushError API now correctly stringifies all provided values (#944)

1.13.1

  • Fix (@grafana/faro-web-sdk): Corrected the setPage() API to update the page.id properly and

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by grafanabot, a new releaser for @​grafana/faro-web-sdk since your current version.


Updates @grafana/faro-web-tracing from 1.12.3 to 1.14.1

Changelog

Sourced from @​grafana/faro-web-tracing's changelog.

1.14.1

  • Improvement (@grafana/faro-web-sdk): The ignored errors parser now also parses stack traces. This is helpful, for example, to exclude all errors thrown by extensions (#1000).

1.14.0

  • Feature (@grafana/faro-web-sdk): Provide a webVitalsInstrumentation.reportAllChanges option to report all changes for web vitals (#981)
  • Feature (@grafana/faro-web-sdk): Enhance user meta properties to align with OTEL semantic conventions for user attributes (#990)
  • Feature (@grafana/faro-web-tracing): Add user attributes to spans (#990)

Breaking

  • Improvement (@grafana/faro-web-tracing): Removed @opentelemetry/context-zone as it is not required for the default instrumentations.

    Users who need ZoneContextManager for additional OTEL instrumentations can inject it via the web-tracing configuration.

    initializeFaro({
      // ...
      instrumentations: [
        // ...
        new TracingInstrumentation({
          contextManager: new ZoneContextManager(),
          instrumentations: [
            /* custom instruments */
          ],
        }),
      ],
      // ...
    });

1.13.3

  • Chore (@grafana/faro-web-sdk): Ensure all properties in attributes and context objects are stringified when sending custom signals (#952)

1.13.2

  • Fix (@grafana/faro-web-sdk): The optional context object in the pushError API now correctly stringifies all provided values (#944)

1.13.1

  • Fix (@grafana/faro-web-sdk): Corrected the setPage() API to update the page.id properly and

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by grafanabot, a new releaser for @​grafana/faro-web-tracing since your current version.


Updates @sentry/cli from 2.41.1 to 2.42.2

Release notes

Sourced from @​sentry/cli's releases.

2.42.2

Various fixes & improvements

2.42.1

This release is a re-release of 2.42.0. There are no code changes to the CLI. We are performing this re-release because 2.42.0 failed to publish to Docker Hub.

Various fixes & improvements

2.42.0

With this release, we now build and publish multi-architecture (arm64 and aarch64) Docker images for Sentry CLI.

Various fixes & improvements

... (truncated)

Changelog

Sourced from @​sentry/cli's changelog.

2.42.2

Various fixes & improvements

2.42.1

This release is a re-release of 2.42.0. There are no code changes to the CLI. We are performing this re-release because 2.42.0 failed to publish to Docker Hub.

Various fixes & improvements

2.42.0

With this release, we now build and publish multi-architecture (arm64 and aarch64) Docker images for Sentry CLI.

Various fixes & improvements

... (truncated)

Commits

Updates @tanstack/react-query from 5.66.0 to 5.67.2

Release notes

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

v5.67.2

Version 5.67.2 - 3/7/25, 10:56 AM

Changes

Fix

Chore

  • deps: update dependency vitest to v2.1.9 [security] (#8605) (f31eeda) by renovate[bot]
  • sync CONTRIBUTING.md between projects (#8767) (c4cb285) by Lachlan Collins
  • deps: update autofix-ci/action digest to 551dded (#8549) (8c03bd0) by renovate[bot]
  • ts 5.8 (161f534) by Dominik Dorfmeister

Docs

  • svelte-query: add the devtools page to the svelte-query docs (#8149) (c82362e) by Nicolai Calinin
  • Fix relative links in Advanced Server Rendering guide (#8765) (a4f3956) by Ilia Evseev
  • react-query: fix broken links in QueryClient docs (#8748) (2406435) by Kristian
  • fix Advanced Server Rendering guide link (#8762) (e67b6f6) by JiSeong Park
  • update links to ESLint rules (#8758) (b975d89) by @​MariaSolOs

Packages

  • @​tanstack/eslint-plugin-query@​5.67.2
  • @​tanstack/query-async-storage-persister@​5.67.2
  • @​tanstack/query-broadcast-client-experimental@​5.67.2
  • @​tanstack/query-core@​5.67.2
  • @​tanstack/query-devtools@​5.67.2
  • @​tanstack/query-persist-client-core@​5.67.2
  • @​tanstack/query-sync-storage-persister@​5.67.2
  • @​tanstack/react-query@​5.67.2
  • @​tanstack/react-query-devtools@​5.67.2
  • @​tanstack/react-query-persist-client@​5.67.2
  • @​tanstack/react-query-next-experimental@​5.67.2
  • @​tanstack/solid-query@​5.67.2
  • @​tanstack/solid-query-devtools@​5.67.2
  • @​tanstack/solid-query-persist-client@​5.67.2
  • @​tanstack/svelte-query@​5.67.2
  • @​tanstack/svelte-query-devtools@​5.67.2
  • @​tanstack/svelte-query-persist-client@​5.67.2
  • @​tanstack/vue-query@​5.67.2
  • @​tanstack/angular-query-devtools-experimental@​5.67.2
  • @​tanstack/angular-query-experimental@​5.67.2
  • @​tanstack/vue-query-devtools@​5.67.2

v5.67.1

Version 5.67.1 - 3/3/25, 3:57 PM

... (truncated)

Commits
  • 40543e9 release: v5.67.2
  • 161f534 chore: ts 5.8
  • 3ccfa6e release: v5.67.1
  • c0f27f6 release: v5.67.0
  • 0bd5240 release: v5.66.11
  • 2bf7ec6 fix(react-query): add warning when useBaseQuery is called without a queryFn (...
  • 0f7510d release: v5.66.10
  • ac4c56c fix(react-query): fix type breaking when using useSuspenseQueries with spread...
  • e474f73 release: v5.66.9
  • f63ba16 fix(types): prevent type errors and improve inference for dynamic queries on ...
  • Additional commits viewable in compare view

Updates axios from 1.7.9 to 1.8.2

Release notes

Sourced from axios's releases.

Release v1.8.2

Release notes:

Bug Fixes

  • http-adapter: add allowAbsoluteUrls to path building (#6810) (fb8eec2)

Contributors to this release

Release v1.8.1

Release notes:

Bug Fixes

  • utils: move generateString to platform utils to avoid importing crypto module into client builds; (#6789) (36a5a62)

Contributors to this release

Release v1.8.0

Release notes:

Bug Fixes

  • examples: application crashed when navigating examples in browser (#5938) (1260ded)
  • missing word in SUPPORT_QUESTION.yml (#6757) (1f890b1)
  • utils: replace getRandomValues with crypto module (#6788) (23a25af)

Features

Reverts

BREAKING CHANGES

  • code relying on the above will now combine the URLs instead of prefer request URL

  • feat: add config option for allowing absolute URLs

  • fix: add default value for allowAbsoluteUrls in buildFullPath

  • fix: typo in flow control when setting allowAbsoluteUrls

Contributors to this release

... (truncated)

Changelog

Sourced from axios's changelog.

1.8.2 (2025-03-07)

Bug Fixes

  • http-adapter: add allowAbsoluteUrls to path building (#6810) (fb8eec2)

Contributors to this release

1.8.1 (2025-02-26)

Bug Fixes

  • utils: move generateString to platform utils to avoid importing crypto module into client builds; (#6789) (36a5a62)

Contributors to this release

1.8.0 (2025-02-25)

Bug Fixes

  • examples: application crashed when navigating examples in browser (#5938) (1260ded)
  • missing word in SUPPORT_QUESTION.yml (#6757) (1f890b1)
  • utils: replace getRandomValues with crypto module (#6788) (23a25af)

Features

Reverts

BREAKING CHANGES

  • code relying on the above will now combine the URLs instead of prefer request URL

  • feat: add config option for allowing absolute URLs

  • fix: add default value for allowAbsoluteUrls in buildFullPath

... (truncated)

Commits
  • a9f7689 chore(release): v1.8.2 (#6812)
  • fb8eec2 fix(http-adapter): add allowAbsoluteUrls to path building (#6810)
  • 9812045 chore(sponsor): update sponsor block (#6804)
  • 72acf75 chore(sponsor): update sponsor block (#6794)
  • 2e64afd chore(release): v1.8.1 (#6800)
  • 36a5a62 fix(utils): move generateString to platform utils to avoid importing crypto...
  • cceb7b1 chore(release): v1.8.0 (#6795)
  • 23a25af fix(utils): replace getRandomValues with crypto module (#6788)
  • 32c7bcc feat: Add config for ignoring absolute URLs (#5902) (#6192)
  • 4a3e26c chore(config): adjust rollup config to preserve license header to minified Ja...
  • Additional commits viewable in compare view

Updates uuid from 11.0.5 to 11.1.0

Release notes

Sourced from uuid's releases.

v11.1.0

11.1.0 (2025-02-19)

Features

  • update TS types to allowUint8Array subtypes for buffer option (#865) (a5231e7)
Changelog

Sourced from uuid's changelog.

11.1.0 (2025-02-19)

Features

  • update TS types to allowUint8Array subtypes for buffer option (#865) (a5231e7)
Commits

Updates @babel/core from 7.26.7 to 7.26.9

Release notes

Sourced from @​babel/core's releases.

v7.26.9 (2025-02-14)

🐛 Bug Fix

🏠 Internal

Committers: 5

v7.26.8 (2025-02-08)

🏠 Internal

  • babel-preset-env
    • #17097 Update dependency babel-plugin-polyfill-corejs3 to ^0.11.0
Changelog

Sourced from @​babel/core's changelog.

v7.26.9 (2025-02-14)

🐛 Bug Fix

🏠 Internal

Commits

Updates @babel/plugin-transform-runtime from 7.25.9 to 7.26.9

Release notes

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

v7.26.9 (2025-02-14)

🐛 Bug Fix

🏠 Internal

Committers: 5

v7.26.8 (2025-02-08)

🏠 Internal

  • babel-preset-env
    • #17097 Update dependency babel-plugin-polyfill-corejs3 to ^0.11.0

v7.26.7 (2025-01-24)

Thanks @​branchseer and @​tquetano-netflix for your first PRs!

🐛 Bug Fix

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 10, 2025
@dependabot dependabot bot requested a review from a team as a code owner March 10, 2025 19:34
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/patch-and-minor-e15f8ca39b branch from d34ea3a to ad227fb Compare March 11, 2025 09:35
@vebnor
Copy link
Contributor

vebnor commented Mar 11, 2025

@dependabot rebase

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

| Package | From | To |
| --- | --- | --- |
| [@formatjs/intl-datetimeformat](https://github.com/formatjs/formatjs) | `6.17.2` | `6.17.3` |
| [@formatjs/intl-numberformat](https://github.com/formatjs/formatjs) | `8.15.2` | `8.15.3` |
| [@grafana/faro-web-sdk](https://github.com/grafana/faro-web-sdk/tree/HEAD/packages/web-sdk) | `1.12.3` | `1.14.1` |
| [@grafana/faro-web-tracing](https://github.com/grafana/faro-web-sdk/tree/HEAD/packages/web-tracing) | `1.12.3` | `1.14.1` |
| [@sentry/cli](https://github.com/getsentry/sentry-cli) | `2.41.1` | `2.42.2` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.66.0` | `5.67.2` |
| [axios](https://github.com/axios/axios) | `1.7.9` | `1.8.2` |
| [uuid](https://github.com/uuidjs/uuid) | `11.0.5` | `11.1.0` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.26.7` | `7.26.9` |
| [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime) | `7.25.9` | `7.26.9` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.26.7` | `7.26.9` |
| [@chromatic-com/storybook](https://github.com/chromaui/addon-visual-tests) | `3.2.4` | `3.2.5` |
| [@eslint/compat](https://github.com/eslint/rewrite) | `1.2.6` | `1.2.7` |
| [@eslint/eslintrc](https://github.com/eslint/eslintrc) | `3.2.0` | `3.3.0` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.19.0` | `9.22.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.50.1` | `1.51.0` |
| [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.5.3` | `8.6.4` |
| [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.5.3` | `8.6.4` |
| [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `8.5.3` | `8.6.4` |
| [@storybook/addon-onboarding](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/onboarding) | `8.5.3` | `8.6.4` |
| [@storybook/addon-webpack5-compiler-swc](https://github.com/storybookjs/addon-webpack5-compiler-swc) | `2.0.0` | `2.1.0` |
| [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.5.3` | `8.6.4` |
| [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `8.5.3` | `8.6.4` |
| [@storybook/react-webpack5](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-webpack5) | `8.5.3` | `8.6.4` |
| [@storybook/test](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test) | `8.5.3` | `8.6.4` |
| [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools) | `5.66.0` | `5.67.2` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.22.0` | `8.26.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.22.0` | `8.26.1` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.20` | `10.4.21` |
| [chai](https://github.com/chaijs/chai) | `5.1.2` | `5.2.0` |
| [css-minimizer-webpack-plugin](https://github.com/webpack-contrib/css-minimizer-webpack-plugin) | `7.0.0` | `7.0.2` |
| [eslint](https://github.com/eslint/eslint) | `9.19.0` | `9.22.0` |
| [eslint-import-resolver-typescript](https://github.com/import-js/eslint-import-resolver-typescript) | `3.7.0` | `3.8.3` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `5.1.0` | `5.2.0` |
| [eslint-plugin-storybook](https://github.com/storybookjs/eslint-plugin-storybook) | `0.11.2` | `0.11.4` |
| [msw](https://github.com/mswjs/msw) | `2.7.0` | `2.7.3` |
| [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.5.3` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.5.3` | `8.6.4` |
| [terser-webpack-plugin](https://github.com/webpack-contrib/terser-webpack-plugin) | `5.3.11` | `5.3.14` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.2` |
| [webpack](https://github.com/webpack/webpack) | `5.97.1` | `5.98.0` |



Updates `@formatjs/intl-datetimeformat` from 6.17.2 to 6.17.3
- [Release notes](https://github.com/formatjs/formatjs/releases)
- [Commits](https://github.com/formatjs/formatjs/compare/@formatjs/[email protected]...@formatjs/[email protected])

Updates `@formatjs/intl-numberformat` from 8.15.2 to 8.15.3
- [Release notes](https://github.com/formatjs/formatjs/releases)
- [Commits](https://github.com/formatjs/formatjs/compare/@formatjs/[email protected]...@formatjs/[email protected])

Updates `@grafana/faro-web-sdk` from 1.12.3 to 1.14.1
- [Changelog](https://github.com/grafana/faro-web-sdk/blob/main/CHANGELOG.md)
- [Commits](https://github.com/grafana/faro-web-sdk/commits/v1.14.1/packages/web-sdk)

Updates `@grafana/faro-web-tracing` from 1.12.3 to 1.14.1
- [Changelog](https://github.com/grafana/faro-web-sdk/blob/main/CHANGELOG.md)
- [Commits](https://github.com/grafana/faro-web-sdk/commits/v1.14.1/packages/web-tracing)

Updates `@sentry/cli` from 2.41.1 to 2.42.2
- [Release notes](https://github.com/getsentry/sentry-cli/releases)
- [Changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-cli@2.41.1...2.42.2)

Updates `@tanstack/react-query` from 5.66.0 to 5.67.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.67.2/packages/react-query)

Updates `axios` from 1.7.9 to 1.8.2
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.7.9...v1.8.2)

Updates `uuid` from 11.0.5 to 11.1.0
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v11.0.5...v11.1.0)

Updates `@babel/core` from 7.26.7 to 7.26.9
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.26.9/packages/babel-core)

Updates `@babel/plugin-transform-runtime` from 7.25.9 to 7.26.9
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.26.9/packages/babel-plugin-transform-runtime)

Updates `@babel/preset-env` from 7.26.7 to 7.26.9
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.26.9/packages/babel-preset-env)

Updates `@chromatic-com/storybook` from 3.2.4 to 3.2.5
- [Release notes](https://github.com/chromaui/addon-visual-tests/releases)
- [Changelog](https://github.com/chromaui/addon-visual-tests/blob/main/CHANGELOG.md)
- [Commits](chromaui/addon-visual-tests@v3.2.4...v3.2.5)

Updates `@eslint/compat` from 1.2.6 to 1.2.7
- [Release notes](https://github.com/eslint/rewrite/releases)
- [Changelog](https://github.com/eslint/rewrite/blob/main/release-please-config.json)
- [Commits](eslint/rewrite@compat-v1.2.6...compat-v1.2.7)

Updates `@eslint/eslintrc` from 3.2.0 to 3.3.0
- [Release notes](https://github.com/eslint/eslintrc/releases)
- [Changelog](https://github.com/eslint/eslintrc/blob/main/CHANGELOG.md)
- [Commits](eslint/eslintrc@v3.2.0...v3.3.0)

Updates `@eslint/js` from 9.19.0 to 9.22.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/commits/v9.22.0/packages/js)

Updates `@playwright/test` from 1.50.1 to 1.51.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.50.1...v1.51.0)

Updates `@storybook/addon-essentials` from 8.5.3 to 8.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.4/code/addons/essentials)

Updates `@storybook/addon-interactions` from 8.5.3 to 8.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.4/code/addons/interactions)

Updates `@storybook/addon-links` from 8.5.3 to 8.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.4/code/addons/links)

Updates `@storybook/addon-onboarding` from 8.5.3 to 8.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.4/code/addons/onboarding)

Updates `@storybook/addon-webpack5-compiler-swc` from 2.0.0 to 2.1.0
- [Release notes](https://github.com/storybookjs/addon-webpack5-compiler-swc/releases)
- [Changelog](https://github.com/storybookjs/addon-webpack5-compiler-swc/blob/main/CHANGELOG.md)
- [Commits](storybookjs/addon-webpack5-compiler-swc@v2.0.0...v2.1.0)

Updates `@storybook/blocks` from 8.5.3 to 8.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.4/code/lib/blocks)

Updates `@storybook/react` from 8.5.3 to 8.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.4/code/renderers/react)

Updates `@storybook/react-webpack5` from 8.5.3 to 8.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.4/code/frameworks/react-webpack5)

Updates `@storybook/test` from 8.5.3 to 8.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/v8.6.4/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.4/code/lib/test)

Updates `@tanstack/react-query-devtools` from 5.66.0 to 5.67.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.67.2/packages/react-query-devtools)

Updates `@typescript-eslint/eslint-plugin` from 8.22.0 to 8.26.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.26.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.22.0 to 8.26.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.26.1/packages/parser)

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

Updates `chai` from 5.1.2 to 5.2.0
- [Release notes](https://github.com/chaijs/chai/releases)
- [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
- [Commits](chaijs/chai@v5.1.2...v5.2.0)

Updates `css-minimizer-webpack-plugin` from 7.0.0 to 7.0.2
- [Release notes](https://github.com/webpack-contrib/css-minimizer-webpack-plugin/releases)
- [Changelog](https://github.com/webpack-contrib/css-minimizer-webpack-plugin/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/css-minimizer-webpack-plugin@v7.0.0...v7.0.2)

Updates `eslint` from 9.19.0 to 9.22.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.19.0...v9.22.0)

Updates `eslint-import-resolver-typescript` from 3.7.0 to 3.8.3
- [Release notes](https://github.com/import-js/eslint-import-resolver-typescript/releases)
- [Changelog](https://github.com/import-js/eslint-import-resolver-typescript/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-import-resolver-typescript@v3.7.0...v3.8.3)

Updates `eslint-plugin-react-hooks` from 5.1.0 to 5.2.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks)

Updates `eslint-plugin-storybook` from 0.11.2 to 0.11.4
- [Release notes](https://github.com/storybookjs/eslint-plugin-storybook/releases)
- [Changelog](https://github.com/storybookjs/eslint-plugin-storybook/blob/main/CHANGELOG.md)
- [Commits](storybookjs/eslint-plugin-storybook@v0.11.2...v0.11.4)

Updates `msw` from 2.7.0 to 2.7.3
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v2.7.0...v2.7.3)

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

Updates `storybook` from 8.5.3 to 8.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/v8.6.4/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.4/code/lib/cli)

Updates `terser-webpack-plugin` from 5.3.11 to 5.3.14
- [Release notes](https://github.com/webpack-contrib/terser-webpack-plugin/releases)
- [Changelog](https://github.com/webpack-contrib/terser-webpack-plugin/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/terser-webpack-plugin@v5.3.11...v5.3.14)

Updates `typescript` from 5.7.3 to 5.8.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.3...v5.8.2)

Updates `webpack` from 5.97.1 to 5.98.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.97.1...v5.98.0)

---
updated-dependencies:
- dependency-name: "@formatjs/intl-datetimeformat"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@formatjs/intl-numberformat"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@grafana/faro-web-sdk"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@grafana/faro-web-tracing"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@sentry/cli"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@tanstack/react-query"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@babel/plugin-transform-runtime"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@chromatic-com/storybook"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@eslint/compat"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@eslint/eslintrc"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@eslint/js"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@storybook/addon-essentials"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@storybook/addon-interactions"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@storybook/addon-links"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@storybook/addon-onboarding"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@storybook/addon-webpack5-compiler-swc"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@storybook/blocks"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@storybook/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@storybook/react-webpack5"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@storybook/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@tanstack/react-query-devtools"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: chai
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: css-minimizer-webpack-plugin
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: eslint-import-resolver-typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: eslint-plugin-react-hooks
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: eslint-plugin-storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: msw
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: terser-webpack-plugin
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: webpack
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/patch-and-minor-e15f8ca39b branch from ad227fb to a0ba978 Compare March 11, 2025 09:56
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 11, 2025

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

@dependabot dependabot bot closed this Mar 11, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/patch-and-minor-e15f8ca39b branch March 11, 2025 10:03
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.

1 participant