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

build(dev-deps): bump the non-major-dev-dependencies group across 1 directory with 25 updates #1492

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 9, 2024

Bumps the non-major-dev-dependencies group with 25 updates in the / directory:

Package From To
@babel/preset-react 7.25.9 7.26.3
@faker-js/faker 9.2.0 9.3.0
@sentry/react 8.40.0 8.42.0
@storybook/addon-a11y 8.4.5 8.4.7
@storybook/addon-actions 8.4.5 8.4.7
@storybook/addon-essentials 8.4.5 8.4.7
@storybook/addon-storysource 8.4.5 8.4.7
@storybook/blocks 8.4.5 8.4.7
@storybook/react 8.4.5 8.4.7
@storybook/react-vite 8.4.5 8.4.7
@storybook/test 8.4.5 8.4.7
@storybook/test-runner 0.19.1 0.20.1
@swc/core 1.9.3 1.10.0
@testing-library/react 16.0.1 16.1.0
@typescript-eslint/parser 8.15.0 8.17.0
@vitejs/plugin-react 4.3.3 4.3.4
chromatic 11.18.1 11.20.0
cypress 13.16.0 13.16.1
eslint-plugin-react-hooks 5.0.0 5.1.0
prettier 3.3.3 3.4.2
rollup 4.27.4 4.28.1
storybook 8.4.5 8.4.7
type-fest 4.28.0 4.30.0
vite-tsconfig-paths 5.1.3 5.1.4
yup 1.4.0 1.5.0

Updates @babel/preset-react from 7.25.9 to 7.26.3

Release notes

Sourced from @​babel/preset-react's releases.

v7.26.3 (2024-12-04)

🐛 Bug Fix

🏠 Internal

  • babel-helper-builder-binary-assignment-operator-visitor, babel-plugin-transform-exponentiation-operator

🏃‍♀️ Performance

Committers: 4

v7.26.2 (2024-10-30)

🐛 Bug Fix

Committers: 6

v7.26.1 (2024-10-25)

🐛 Bug Fix

Committers: 3

... (truncated)

Changelog

Sourced from @​babel/preset-react's changelog.

v7.26.3 (2024-12-04)

🐛 Bug Fix

🏠 Internal

  • babel-helper-builder-binary-assignment-operator-visitor, babel-plugin-transform-exponentiation-operator

🏃‍♀️ Performance

v7.26.2 (2024-10-30)

🐛 Bug Fix

v7.26.1 (2024-10-25)

🐛 Bug Fix

v7.26.0 (2024-10-25)

🚀 New Feature

  • babel-core, babel-generator, babel-parser, babel-plugin-syntax-import-assertions, babel-plugin-syntax-import-attributes, babel-preset-env, babel-standalone, babel-types
  • babel-core
  • babel-compat-data, babel-plugin-proposal-regexp-modifiers, babel-plugin-transform-regexp-modifiers, babel-preset-env, babel-standalone
  • babel-parser
  • babel-generator, babel-parser, babel-plugin-syntax-flow
  • babel-helpers, babel-preset-typescript, babel-runtime-corejs3
  • babel-generator, babel-parser

🐛 Bug Fix

... (truncated)

Commits

Updates @faker-js/faker from 9.2.0 to 9.3.0

Release notes

Sourced from @​faker-js/faker's releases.

v9.3.0

What's Changed

... (truncated)

Changelog

Sourced from @​faker-js/faker's changelog.

9.3.0 (2024-12-02)

Features

  • add initial seed parameter to constructors (#3220) (1633c8d)

Changed Locales

Bug Fixes

  • internet: ensure domainWord always returns a valid value in all locales (#3253) (525fedc)
  • locale: add Isadora to female names in pt_BR for consistency (#3282) (b390432)
  • locale: fix incorrect accents in it first_name (#3281) (e0fb23e)
Commits

Updates @sentry/react from 8.40.0 to 8.42.0

Release notes

Sourced from @​sentry/react's releases.

8.42.0

Important Changes

Deprecations

  • feat: Warn about source-map generation (#14533)

    In the next major version of the SDK we will change how source maps are generated when the SDK is added to an application. Currently, the implementation varies a lot between different SDKs and can be difficult to understand. Moving forward, our goal is to turn on source maps for every framework, unless we detect that they are explicitly turned off. Additionally, if we end up enabling source maps, we will emit a log message that we did so.

    With this particular release, we are emitting warnings that source map generation will change in the future and we print instructions on how to prepare for the next major.

  • feat(nuxt): Deprecate tracingOptions in favor of vueIntegration (#14530)

    Currently it is possible to configure tracing options in two places in the Sentry Nuxt SDK:

    • In Sentry.init()
    • Inside tracingOptions in Sentry.init()

    For tree-shaking purposes and alignment with the Vue SDK, it is now recommended to instead use the newly exported vueIntegration() and its tracingOptions option to configure tracing options in the Nuxt SDK:

    // sentry.client.config.ts
    import * as Sentry from '@sentry/nuxt';
    Sentry.init({
    // ...
    integrations: [
    Sentry.vueIntegration({
    tracingOptions: {
    trackComponents: true,
    },
    }),
    ],
    });

Other Changes

  • feat(browser-utils): Update web-vitals to v4.2.4 (#14439)
  • feat(nuxt): Expose vueIntegration (#14526)
  • fix(feedback): Handle css correctly in screenshot mode (#14535)

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

8.42.0

Important Changes

Deprecations

  • feat: Warn about source-map generation (#14533)

    In the next major version of the SDK we will change how source maps are generated when the SDK is added to an application. Currently, the implementation varies a lot between different SDKs and can be difficult to understand. Moving forward, our goal is to turn on source maps for every framework, unless we detect that they are explicitly turned off. Additionally, if we end up enabling source maps, we will emit a log message that we did so.

    With this particular release, we are emitting warnings that source map generation will change in the future and we print instructions on how to prepare for the next major.

  • feat(nuxt): Deprecate tracingOptions in favor of vueIntegration (#14530)

    Currently it is possible to configure tracing options in two places in the Sentry Nuxt SDK:

    • In Sentry.init()
    • Inside tracingOptions in Sentry.init()

    For tree-shaking purposes and alignment with the Vue SDK, it is now recommended to instead use the newly exported vueIntegration() and its tracingOptions option to configure tracing options in the Nuxt SDK:

    // sentry.client.config.ts
    import * as Sentry from '@sentry/nuxt';
    Sentry.init({
    // ...
    integrations: [
    Sentry.vueIntegration({
    tracingOptions: {
    trackComponents: true,
    },
    }),
    ],
    });

Other Changes

  • feat(browser-utils): Update web-vitals to v4.2.4 (#14439)
  • feat(nuxt): Expose vueIntegration (#14526)
  • fix(feedback): Handle css correctly in screenshot mode (#14535)

... (truncated)

Commits

Updates @storybook/addon-a11y from 8.4.5 to 8.4.7

Release notes

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

v8.4.7

8.4.7

v8.4.6

8.4.6

Changelog

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

8.4.7

8.4.6

Commits
  • 0466712 Bump version from "8.4.6" to "8.4.7" [skip ci]
  • b58b3ee Bump version from "8.4.5" to "8.4.6" [skip ci]
  • See full diff in compare view

Updates @storybook/addon-actions from 8.4.5 to 8.4.7

Release notes

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

v8.4.7

8.4.7

v8.4.6

8.4.6

Changelog

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

8.4.7

8.4.6

Commits
  • 0466712 Bump version from "8.4.6" to "8.4.7" [skip ci]
  • b58b3ee Bump version from "8.4.5" to "8.4.6" [skip ci]
  • See full diff in compare view

Updates @storybook/addon-essentials from 8.4.5 to 8.4.7

Release notes

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

v8.4.7

8.4.7

v8.4.6

8.4.6

Changelog

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

8.4.7

8.4.6

Commits
  • 0466712 Bump version from "8.4.6" to "8.4.7" [skip ci]
  • b58b3ee Bump version from "8.4.5" to "8.4.6" [skip ci]
  • See full diff in compare view

Updates @storybook/addon-storysource from 8.4.5 to 8.4.7

Release notes

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

v8.4.7

8.4.7

v8.4.6

8.4.6

Changelog

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

8.4.7

8.4.6

Commits
  • 0466712 Bump version from "8.4.6" to "8.4.7" [skip ci]
  • b58b3ee Bump version from "8.4.5" to "8.4.6" [skip ci]
  • See full diff in compare view

Updates @storybook/blocks from 8.4.5 to 8.4.7

Release notes

Sourced from @​storybook/blocks's releases.

v8.4.7

8.4.7

v8.4.6

8.4.6

Changelog

Sourced from @​storybook/blocks's changelog.

8.4.7

8.4.6

Commits
  • 0466712 Bump version from "8.4.6" to "8.4.7" [skip ci]
  • b58b3ee Bump version from "8.4.5" to "8.4.6" [skip ci]
  • See full diff in compare view

Updates @storybook/react from 8.4.5 to 8.4.7

Release notes

Sourced from @​storybook/react's releases.

v8.4.7

8.4.7

v8.4.6

8.4.6

Changelog

Sourced from @​storybook/react's changelog.

8.4.7

8.4.6

  • Addon Test: Use pathe for better windows support - #29676, thanks @​yannbf!
  • Angular: Default to standalone components in Angular v19 -

…irectory with 25 updates

Bumps the non-major-dev-dependencies group with 25 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react) | `7.25.9` | `7.26.3` |
| [@faker-js/faker](https://github.com/faker-js/faker) | `9.2.0` | `9.3.0` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `8.40.0` | `8.42.0` |
| [@storybook/addon-a11y](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/a11y) | `8.4.5` | `8.4.7` |
| [@storybook/addon-actions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/actions) | `8.4.5` | `8.4.7` |
| [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.4.5` | `8.4.7` |
| [@storybook/addon-storysource](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/storysource) | `8.4.5` | `8.4.7` |
| [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.4.5` | `8.4.7` |
| [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `8.4.5` | `8.4.7` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `8.4.5` | `8.4.7` |
| [@storybook/test](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test) | `8.4.5` | `8.4.7` |
| [@storybook/test-runner](https://github.com/storybookjs/test-runner) | `0.19.1` | `0.20.1` |
| [@swc/core](https://github.com/swc-project/swc) | `1.9.3` | `1.10.0` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.0.1` | `16.1.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.15.0` | `8.17.0` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.3.3` | `4.3.4` |
| [chromatic](https://github.com/chromaui/chromatic-cli) | `11.18.1` | `11.20.0` |
| [cypress](https://github.com/cypress-io/cypress) | `13.16.0` | `13.16.1` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `5.0.0` | `5.1.0` |
| [prettier](https://github.com/prettier/prettier) | `3.3.3` | `3.4.2` |
| [rollup](https://github.com/rollup/rollup) | `4.27.4` | `4.28.1` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.4.5` | `8.4.7` |
| [type-fest](https://github.com/sindresorhus/type-fest) | `4.28.0` | `4.30.0` |
| [vite-tsconfig-paths](https://github.com/aleclarson/vite-tsconfig-paths) | `5.1.3` | `5.1.4` |
| [yup](https://github.com/jquense/yup) | `1.4.0` | `1.5.0` |



Updates `@babel/preset-react` from 7.25.9 to 7.26.3
- [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.3/packages/babel-preset-react)

Updates `@faker-js/faker` from 9.2.0 to 9.3.0
- [Release notes](https://github.com/faker-js/faker/releases)
- [Changelog](https://github.com/faker-js/faker/blob/next/CHANGELOG.md)
- [Commits](faker-js/faker@v9.2.0...v9.3.0)

Updates `@sentry/react` from 8.40.0 to 8.42.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@8.40.0...8.42.0)

Updates `@storybook/addon-a11y` from 8.4.5 to 8.4.7
- [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.4.7/code/addons/a11y)

Updates `@storybook/addon-actions` from 8.4.5 to 8.4.7
- [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.4.7/code/addons/actions)

Updates `@storybook/addon-essentials` from 8.4.5 to 8.4.7
- [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.4.7/code/addons/essentials)

Updates `@storybook/addon-storysource` from 8.4.5 to 8.4.7
- [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.4.7/code/addons/storysource)

Updates `@storybook/blocks` from 8.4.5 to 8.4.7
- [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.4.7/code/lib/blocks)

Updates `@storybook/react` from 8.4.5 to 8.4.7
- [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.4.7/code/renderers/react)

Updates `@storybook/react-vite` from 8.4.5 to 8.4.7
- [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.4.7/code/frameworks/react-vite)

Updates `@storybook/test` from 8.4.5 to 8.4.7
- [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.4.7/code/lib/test)

Updates `@storybook/test-runner` from 0.19.1 to 0.20.1
- [Release notes](https://github.com/storybookjs/test-runner/releases)
- [Changelog](https://github.com/storybookjs/test-runner/blob/v0.20.1/CHANGELOG.md)
- [Commits](storybookjs/test-runner@v0.19.1...v0.20.1)

Updates `@swc/core` from 1.9.3 to 1.10.0
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.9.3...v1.10.0)

Updates `@testing-library/react` from 16.0.1 to 16.1.0
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v16.0.1...v16.1.0)

Updates `@typescript-eslint/parser` from 8.15.0 to 8.17.0
- [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.17.0/packages/parser)

Updates `@vitejs/plugin-react` from 4.3.3 to 4.3.4
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/v4.3.4/packages/plugin-react)

Updates `chromatic` from 11.18.1 to 11.20.0
- [Release notes](https://github.com/chromaui/chromatic-cli/releases)
- [Changelog](https://github.com/chromaui/chromatic-cli/blob/main/CHANGELOG.md)
- [Commits](chromaui/chromatic-cli@v11.18.1...v11.20.0)

Updates `cypress` from 13.16.0 to 13.16.1
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v13.16.0...v13.16.1)

Updates `eslint-plugin-react-hooks` from 5.0.0 to 5.1.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 `prettier` from 3.3.3 to 3.4.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.3...3.4.2)

Updates `rollup` from 4.27.4 to 4.28.1
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.27.4...v4.28.1)

Updates `storybook` from 8.4.5 to 8.4.7
- [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.4.7/code/lib/cli)

Updates `type-fest` from 4.28.0 to 4.30.0
- [Release notes](https://github.com/sindresorhus/type-fest/releases)
- [Commits](sindresorhus/type-fest@v4.28.0...v4.30.0)

Updates `vite-tsconfig-paths` from 5.1.3 to 5.1.4
- [Release notes](https://github.com/aleclarson/vite-tsconfig-paths/releases)
- [Commits](aleclarson/vite-tsconfig-paths@v5.1.3...v5.1.4)

Updates `yup` from 1.4.0 to 1.5.0
- [Release notes](https://github.com/jquense/yup/releases)
- [Changelog](https://github.com/jquense/yup/blob/master/CHANGELOG.md)
- [Commits](jquense/yup@v1.4.0...v1.5.0)

---
updated-dependencies:
- dependency-name: "@babel/preset-react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
- dependency-name: "@faker-js/faker"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
- dependency-name: "@sentry/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
- dependency-name: "@storybook/addon-a11y"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: "@storybook/addon-actions"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: "@storybook/addon-essentials"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: "@storybook/addon-storysource"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: "@storybook/blocks"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: "@storybook/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: "@storybook/react-vite"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: "@storybook/test"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: "@storybook/test-runner"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
- dependency-name: "@swc/core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
- dependency-name: "@testing-library/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
- dependency-name: "@vitejs/plugin-react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: chromatic
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
- dependency-name: cypress
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: eslint-plugin-react-hooks
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
- dependency-name: rollup
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: type-fest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
- dependency-name: vite-tsconfig-paths
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: yup
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link

sonarcloud bot commented Dec 9, 2024

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 10, 2024

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

@dependabot dependabot bot closed this Dec 10, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/non-major-dev-dependencies-4f170ed4e2 branch December 10, 2024 17:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants