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 20 updates #7249

Merged

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
@sentry/browser 9.6.0 9.9.0
@sentry/react 9.6.0 9.9.0
axios 1.8.3 1.8.4
@playwright/test 1.51.0 1.51.1
@sentry/cli 2.42.3 2.42.4
@storybook/addon-a11y 8.6.7 8.6.8
@storybook/addon-actions 8.6.7 8.6.8
@storybook/addon-docs 8.6.7 8.6.8
@storybook/addon-essentials 8.6.7 8.6.8
@storybook/addon-interactions 8.6.7 8.6.8
@storybook/cli 8.6.7 8.6.8
@storybook/react 8.6.7 8.6.8
@storybook/react-vite 8.6.7 8.6.8
@storybook/test 8.6.7 8.6.8
@storybook/theming 8.6.7 8.6.8
eslint 9.22.0 9.23.0
storybook 8.6.7 8.6.8
typescript-eslint 8.26.1 8.27.0
vite 6.2.2 6.2.3
@tanstack/react-query 5.68.0 5.69.0

Updates @sentry/browser from 9.6.0 to 9.9.0

Release notes

Sourced from @​sentry/browser's releases.

9.9.0

Important Changes

  • feat(nextjs): Support instrumentation-client.ts (#15705)

    Next.js recently added a feature to support client-side (browser) instrumentation via the experimental.clientInstrumentationHook flag and the instrumentation-client.ts file.

    To be forwards compatible, the Sentry Next.js SDK will now pick up instrumentation-client.ts files even on older Next.js versions and add them to your client bundles. It is suggested that you either rename your sentry.client.config.ts file to instrumentation-client.ts, or if you already happen to have a instrumentation-client.ts file move the contents of sentry.client.config.ts to instrumentation-client.ts.

  • feat(browser): Add previous_trace span links (#15569)

    The @sentry/browser SDK and SDKs based on @sentry/browser now emits a link from the first root span of a newly started trace to the root span of a previously started trace. You can control this feature via an option in browserTracingIntegration():

    Sentry.init({
      dsn: 'your-dsn-here'
      integrations: [
        Sentry.browserTracingIntegration({
          // Available settings:
          // - 'in-memory' (default): Stores previous trace information in memory
          // - 'session-storage': Stores previous trace information in the browser's `sessionStorage`
          // - 'off': Disable storing and sending previous trace information
          linkPreviousTrace: 'in-memory',
        }),
      ],
    });
  • feat(browser): Add logger.X methods to browser SDK (#15763)

    For Sentry's upcoming logging product, the SDK now supports sending logs via dedicated

    Sentry.init({
      dsn: 'your-dsn-here',
      _experiments: {
        enableLogs: true, // This is required to use the logging features
      },
    });
    Sentry.logger.info('This is a trace message', { userId: 123 });
    // See PR for better documentation

    Please note that the logs product is still in early access. See the link above for more information.

Other Changes

  • feat(browser): Attach host as part of error message to "Failed to fetch" errors (#15729)

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

9.9.0

Important Changes

  • feat(nextjs): Support instrumentation-client.ts (#15705)

    Next.js recently added a feature to support client-side (browser) instrumentation via the experimental.clientInstrumentationHook flag and the instrumentation-client.ts file.

    To be forwards compatible, the Sentry Next.js SDK will now pick up instrumentation-client.ts files even on older Next.js versions and add them to your client bundles. It is suggested that you either rename your sentry.client.config.ts file to instrumentation-client.ts, or if you already happen to have a instrumentation-client.ts file move the contents of sentry.client.config.ts to instrumentation-client.ts.

  • feat(browser): Add previous_trace span links (#15569)

    The @sentry/browser SDK and SDKs based on @sentry/browser now emits a link from the first root span of a newly started trace to the root span of a previously started trace. You can control this feature via an option in browserTracingIntegration():

    Sentry.init({
      dsn: 'your-dsn-here'
      integrations: [
        Sentry.browserTracingIntegration({
          // Available settings:
          // - 'in-memory' (default): Stores previous trace information in memory
          // - 'session-storage': Stores previous trace information in the browser's `sessionStorage`
          // - 'off': Disable storing and sending previous trace information
          linkPreviousTrace: 'in-memory',
        }),
      ],
    });
  • feat(browser): Add logger.X methods to browser SDK (#15763)

    For Sentry's upcoming logging product, the SDK now supports sending logs via dedicated

    Sentry.init({
      dsn: 'your-dsn-here',
      _experiments: {
        enableLogs: true, // This is required to use the logging features
      },
    });
    Sentry.logger.info('This is a trace message', { userId: 123 });
    // See PR for better documentation

    Please note that the logs product is still in early access. See the link above for more information.

Other Changes

... (truncated)

Commits
  • 43c4c83 release: 9.9.0
  • 80e19f2 Merge pull request #15791 from getsentry/prepare-release/9.9.0
  • bb358cf meta: Update changelog for 9.9.0
  • 0cf8ec2 feat(browser): Attach host as part of error message to "Failed to fetch" erro...
  • 79ff8f2 fix(nuxt): Delete no longer needed Nitro 'close' hook (#15790)
  • 006479c ref(nextjs): Fix Next.js vercel-edge runtime package information (#15789)
  • 57f04e0 ref: Remove some usages of dropUndefinedKeys() (#15781)
  • 50d2514 feat(node): Add fastify shouldHandleError (#15771)
  • ba5993c feat(core): Add parseStringToURL method (#15768)
  • e55b8ee feat(browser): Add logger.X methods to browser SDK (#15763)
  • Additional commits viewable in compare view

Updates @sentry/react from 9.6.0 to 9.9.0

Release notes

Sourced from @​sentry/react's releases.

9.9.0

Important Changes

  • feat(nextjs): Support instrumentation-client.ts (#15705)

    Next.js recently added a feature to support client-side (browser) instrumentation via the experimental.clientInstrumentationHook flag and the instrumentation-client.ts file.

    To be forwards compatible, the Sentry Next.js SDK will now pick up instrumentation-client.ts files even on older Next.js versions and add them to your client bundles. It is suggested that you either rename your sentry.client.config.ts file to instrumentation-client.ts, or if you already happen to have a instrumentation-client.ts file move the contents of sentry.client.config.ts to instrumentation-client.ts.

  • feat(browser): Add previous_trace span links (#15569)

    The @sentry/browser SDK and SDKs based on @sentry/browser now emits a link from the first root span of a newly started trace to the root span of a previously started trace. You can control this feature via an option in browserTracingIntegration():

    Sentry.init({
      dsn: 'your-dsn-here'
      integrations: [
        Sentry.browserTracingIntegration({
          // Available settings:
          // - 'in-memory' (default): Stores previous trace information in memory
          // - 'session-storage': Stores previous trace information in the browser's `sessionStorage`
          // - 'off': Disable storing and sending previous trace information
          linkPreviousTrace: 'in-memory',
        }),
      ],
    });
  • feat(browser): Add logger.X methods to browser SDK (#15763)

    For Sentry's upcoming logging product, the SDK now supports sending logs via dedicated

    Sentry.init({
      dsn: 'your-dsn-here',
      _experiments: {
        enableLogs: true, // This is required to use the logging features
      },
    });
    Sentry.logger.info('This is a trace message', { userId: 123 });
    // See PR for better documentation

    Please note that the logs product is still in early access. See the link above for more information.

Other Changes

  • feat(browser): Attach host as part of error message to "Failed to fetch" errors (#15729)

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

9.9.0

Important Changes

  • feat(nextjs): Support instrumentation-client.ts (#15705)

    Next.js recently added a feature to support client-side (browser) instrumentation via the experimental.clientInstrumentationHook flag and the instrumentation-client.ts file.

    To be forwards compatible, the Sentry Next.js SDK will now pick up instrumentation-client.ts files even on older Next.js versions and add them to your client bundles. It is suggested that you either rename your sentry.client.config.ts file to instrumentation-client.ts, or if you already happen to have a instrumentation-client.ts file move the contents of sentry.client.config.ts to instrumentation-client.ts.

  • feat(browser): Add previous_trace span links (#15569)

    The @sentry/browser SDK and SDKs based on @sentry/browser now emits a link from the first root span of a newly started trace to the root span of a previously started trace. You can control this feature via an option in browserTracingIntegration():

    Sentry.init({
      dsn: 'your-dsn-here'
      integrations: [
        Sentry.browserTracingIntegration({
          // Available settings:
          // - 'in-memory' (default): Stores previous trace information in memory
          // - 'session-storage': Stores previous trace information in the browser's `sessionStorage`
          // - 'off': Disable storing and sending previous trace information
          linkPreviousTrace: 'in-memory',
        }),
      ],
    });
  • feat(browser): Add logger.X methods to browser SDK (#15763)

    For Sentry's upcoming logging product, the SDK now supports sending logs via dedicated

    Sentry.init({
      dsn: 'your-dsn-here',
      _experiments: {
        enableLogs: true, // This is required to use the logging features
      },
    });
    Sentry.logger.info('This is a trace message', { userId: 123 });
    // See PR for better documentation

    Please note that the logs product is still in early access. See the link above for more information.

Other Changes

... (truncated)

Commits
  • 43c4c83 release: 9.9.0
  • 80e19f2 Merge pull request #15791 from getsentry/prepare-release/9.9.0
  • bb358cf meta: Update changelog for 9.9.0
  • 0cf8ec2 feat(browser): Attach host as part of error message to "Failed to fetch" erro...
  • 79ff8f2 fix(nuxt): Delete no longer needed Nitro 'close' hook (#15790)
  • 006479c ref(nextjs): Fix Next.js vercel-edge runtime package information (#15789)
  • 57f04e0 ref: Remove some usages of dropUndefinedKeys() (#15781)
  • 50d2514 feat(node): Add fastify shouldHandleError (#15771)
  • ba5993c feat(core): Add parseStringToURL method (#15768)
  • e55b8ee feat(browser): Add logger.X methods to browser SDK (#15763)
  • Additional commits viewable in compare view

Updates axios from 1.8.3 to 1.8.4

Release notes

Sourced from axios's releases.

Release v1.8.4

Release notes:

Bug Fixes

  • buildFullPath: handle allowAbsoluteUrls: false without baseURL (#6833) (f10c2e0)

Contributors to this release

Changelog

Sourced from axios's changelog.

1.8.4 (2025-03-19)

Bug Fixes

  • buildFullPath: handle allowAbsoluteUrls: false without baseURL (#6833) (f10c2e0)

Contributors to this release

Commits
  • 9f6f97b chore(release): v1.8.4 (#6844)
  • f10c2e0 fix(buildFullPath): handle allowAbsoluteUrls: false without baseURL (#6833)
  • 1e6632c chore(deps): bump tj-actions/changed-files in the github-actions group (#6838)
  • See full diff in compare view

Updates @playwright/test from 1.51.0 to 1.51.1

Release notes

Sourced from @​playwright/test's releases.

v1.51.1

Highlights

microsoft/playwright#35093 - [Regression]: TimeoutOverflowWarning: 2149630296.634 does not fit into a 32-bit signed integer microsoft/playwright#35138 - [Regression]: TypeError: Cannot read properties of undefined (reading 'expectInfo')

Browser Versions

  • Chromium 134.0.6998.35
  • Mozilla Firefox 135.0
  • WebKit 18.4

This version was also tested against the following stable channels:

  • Google Chrome 133
  • Microsoft Edge 133
Commits

Updates @sentry/cli from 2.42.3 to 2.42.4

Release notes

Sourced from @​sentry/cli's releases.

2.42.4

Various fixes & improvements

Changelog

Sourced from @​sentry/cli's changelog.

2.42.4

Various fixes & improvements

Commits

Updates @storybook/addon-a11y from 8.6.7 to 8.6.8

Release notes

Sourced from @​storybook/addon-a11y's releases.

v8.6.8

8.6.8

Changelog

Sourced from @​storybook/addon-a11y's changelog.

8.6.8

Commits

Updates @storybook/addon-actions from 8.6.7 to 8.6.8

Release notes

Sourced from @​storybook/addon-actions's releases.

v8.6.8

8.6.8

Changelog

Sourced from @​storybook/addon-actions's changelog.

8.6.8

Commits

Updates @storybook/addon-docs from 8.6.7 to 8.6.8

Release notes

Sourced from @​storybook/addon-docs's releases.

v8.6.8

8.6.8

Changelog

Sourced from @​storybook/addon-docs's changelog.

8.6.8

Commits

Updates @storybook/addon-essentials from 8.6.7 to 8.6.8

Release notes

Sourced from @​storybook/addon-essentials's releases.

v8.6.8

8.6.8

Changelog

Sourced from @​storybook/addon-essentials's changelog.

8.6.8

Commits

Updates @storybook/addon-interactions from 8.6.7 to 8.6.8

Release notes

Sourced from @​storybook/addon-interactions's releases.

v8.6.8

8.6.8

Changelog

Sourced from @​storybook/addon-interactions's changelog.

8.6.8

Commits

Updates @storybook/cli from 8.6.7 to 8.6.8

Release notes

Sourced from @​storybook/cli's releases.

v8.6.8

8.6.8

Changelog

Sourced from @​storybook/cli's changelog.

8.6.8

Commits

Updates @storybook/react from 8.6.7 to 8.6.8

Release notes

Sourced from @​storybook/react's releases.

v8.6.8

8.6.8

Changelog

Sourced from @​storybook/react's changelog.

8.6.8

Commits
  • d4960ea Bump version from "8.6.7" to "8.6.8" [skip ci]
  • 623184b Merge pull request #30847 from storybookjs/kasper/ssr-portable-stories
  • See full diff in compare view

Updates @storybook/react-vite from 8.6.7 to 8.6.8

Release notes

Sourced from @​storybook/react-vite's releases.

v8.6.8

8.6.8

Changelog

Sourced from @​storybook/react-vite's changelog.

8.6.8

Commits

Updates @storybook/test from 8.6.7 to 8.6.8

Release notes

Sourced from @​storybook/test's releases.

v8.6.8

8.6.8

Changelog

Sourced from @​storybook/test's changelog.

8.6.8

Commits

Updates @storybook/theming from 8.6.7 to 8.6.8

Release notes

Sourced from @​storybook/theming's releases.

v8.6.8

8.6.8

Commits

Updates eslint from 9.22.0 to 9.23.0

Release notes

Sourced from eslint's releases.

v9.23.0

Features

  • 557a0d2 feat: support TypeScript syntax in no-useless-constructor (#19535) (Josh Goldberg ✨)
  • 8320241 feat: support TypeScript syntax in default-param-last (#19431) (Josh Goldberg ✨)
  • 833c4a3 feat: defineConfig() supports "flat/" config prefix (#19533) (Nicholas C. Zakas)
  • 4a0df16 feat: circular autofix/conflicting rules detection (#19514) (Milos Djermanovic)
  • be56a68 feat: support TypeScript syntax in class-methods-use-this (#19498) (Josh Goldberg ✨)

Bug Fixes

  • 0e20aa7 fix: move deprecated RuleContext methods to subtype (

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

| Package | From | To |
| --- | --- | --- |
| [@sentry/browser](https://github.com/getsentry/sentry-javascript) | `9.6.0` | `9.9.0` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `9.6.0` | `9.9.0` |
| [axios](https://github.com/axios/axios) | `1.8.3` | `1.8.4` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.51.0` | `1.51.1` |
| [@sentry/cli](https://github.com/getsentry/sentry-cli) | `2.42.3` | `2.42.4` |
| [@storybook/addon-a11y](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/a11y) | `8.6.7` | `8.6.8` |
| [@storybook/addon-actions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/actions) | `8.6.7` | `8.6.8` |
| [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs) | `8.6.7` | `8.6.8` |
| [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.6.7` | `8.6.8` |
| [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.6.7` | `8.6.8` |
| [@storybook/cli](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.6.7` | `8.6.8` |
| [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `8.6.7` | `8.6.8` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `8.6.7` | `8.6.8` |
| [@storybook/test](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test) | `8.6.7` | `8.6.8` |
| [@storybook/theming](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/theming) | `8.6.7` | `8.6.8` |
| [eslint](https://github.com/eslint/eslint) | `9.22.0` | `9.23.0` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.6.7` | `8.6.8` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.26.1` | `8.27.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.2.2` | `6.2.3` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.68.0` | `5.69.0` |



Updates `@sentry/browser` from 9.6.0 to 9.9.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@9.6.0...9.9.0)

Updates `@sentry/react` from 9.6.0 to 9.9.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@9.6.0...9.9.0)

Updates `axios` from 1.8.3 to 1.8.4
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.8.3...v1.8.4)

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

Updates `@sentry/cli` from 2.42.3 to 2.42.4
- [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.42.3...2.42.4)

Updates `@storybook/addon-a11y` from 8.6.7 to 8.6.8
- [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.8/code/addons/a11y)

Updates `@storybook/addon-actions` from 8.6.7 to 8.6.8
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/v8.6.8/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.8/code/addons/actions)

Updates `@storybook/addon-docs` from 8.6.7 to 8.6.8
- [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.8/code/addons/docs)

Updates `@storybook/addon-essentials` from 8.6.7 to 8.6.8
- [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.8/code/addons/essentials)

Updates `@storybook/addon-interactions` from 8.6.7 to 8.6.8
- [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.8/code/addons/interactions)

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

Updates `@storybook/react` from 8.6.7 to 8.6.8
- [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.8/code/renderers/react)

Updates `@storybook/react-vite` from 8.6.7 to 8.6.8
- [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.8/code/frameworks/react-vite)

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

Updates `@storybook/theming` from 8.6.7 to 8.6.8
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.8/code/lib/theming)

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

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

Updates `typescript-eslint` from 8.26.1 to 8.27.0
- [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.27.0/packages/typescript-eslint)

Updates `vite` from 6.2.2 to 6.2.3
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v6.2.3/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v6.2.3/packages/vite)

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

---
updated-dependencies:
- dependency-name: "@sentry/browser"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@sentry/react"
  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-patch
  dependency-group: patch-and-minor
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@sentry/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@storybook/addon-a11y"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@storybook/addon-actions"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@storybook/addon-docs"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@storybook/addon-essentials"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@storybook/addon-interactions"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@storybook/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@storybook/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@storybook/react-vite"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@storybook/test"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@storybook/theming"
  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: storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: typescript-eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 24, 2025
@dependabot dependabot bot requested a review from a team as a code owner March 24, 2025 14:33
@hallvardastark hallvardastark merged commit e9a92a4 into master Mar 25, 2025
4 checks passed
@hallvardastark hallvardastark deleted the dependabot/npm_and_yarn/patch-and-minor-38da78d74e branch March 25, 2025 07:27
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