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

chore(deps): bump the minor group across 1 directory with 21 updates #2608

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
@changesets/cli 2.27.11 2.27.12
@playwright/experimental-ct-vue 1.49.1 1.50.0
@playwright/test 1.49.1 1.50.0
@storybook/addon-essentials 8.5.0 8.5.1
@storybook/blocks 8.5.0 8.5.1
@storybook/vue3 8.5.0 8.5.1
@storybook/vue3-vite 8.5.0 8.5.1
@types/node 22.10.7 22.10.10
@vitest/coverage-v8 3.0.2 3.0.4
eslint-plugin-playwright 2.1.0 2.2.0
lint-staged 15.4.1 15.4.2
storybook 8.5.0 8.5.1
turbo 2.3.3 2.3.4
vitest 3.0.2 3.0.4
@vueuse/core 12.4.0 12.5.0
vitepress 1.6.1 1.6.3
@nuxtjs/i18n 9.1.1 9.1.3
vite 6.0.7 6.0.11
@storybook/addon-a11y 8.5.0 8.5.1
@storybook/addon-actions 8.5.0 8.5.1
deepmerge-ts 7.1.3 7.1.4

Updates @changesets/cli from 2.27.11 to 2.27.12

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.27.12

Patch Changes

Commits

Updates @playwright/experimental-ct-vue from 1.49.1 to 1.50.0

Release notes

Sourced from @​playwright/experimental-ct-vue's releases.

v1.50.0

Test runner

  • New option timeout allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.

    test('some test', async ({ page }) => {
      await test.step('a step', async () => {
        // This step can time out separately from the test
      }, { timeout: 1000 });
    });
  • New method test.step.skip() to disable execution of a test step.

    test('some test', async ({ page }) => {
      await test.step('before running step', async () => {
        // Normal step
      });
    await test.step.skip('not yet ready', async () => {
    // This step is skipped
    });
    await test.step('after running step', async () => {
    // This step still runs even though the previous one was skipped
    });
    });

  • Expanded expect(locator).toMatchAriaSnapshot() to allow storing of aria snapshots in separate YAML files.

  • Added method expect(locator).toHaveAccessibleErrorMessage() to assert the Locator points to an element with a given aria errormessage.

  • Option testConfig.updateSnapshots added the configuration enum changed. changed updates only the snapshots that have changed, whereas all now updates all snapshots, regardless of whether there are any differences.

  • New option testConfig.updateSourceMethod defines the way source code is updated when testConfig.updateSnapshots is configured. Added overwrite and 3-way modes that write the changes into source code, on top of existing patch mode that creates a patch file.

    npx playwright test --update-snapshots=changed --update-source-method=3way
  • Option testConfig.webServer added a gracefulShutdown field for specifying a process kill signal other than the default SIGKILL.

  • Exposed testStep.attachments from the reporter API to allow retrieval of all attachments created by that step.

UI updates

  • Updated default HTML reporter to improve display of attachments.
  • New button for picking elements to produce aria snapshots.
  • Additional details (such as keys pressed) are now displayed alongside action API calls in traces.
  • Display of canvas content in traces is error-prone. Display is now disabled by default, and can be enabled via the Display canvas content UI setting.
  • Call and Network panels now display additional time information.

Breaking

... (truncated)

Commits
  • 9d22178 chore: mark v1.50.0 (#34447)
  • 5d6ac96 cherry-pick(#34442): fix(test runner): respect updateSourceMethod from the co...
  • 97b76b4 cherry-pick(#34440): chore(driver): roll driver to recent Node.js LTS version
  • 7bbcc3c cherry-pick(#34353): chore: move attachment link back to tree item, make it f...
  • 2811a1d cherry-pick(#34430): docs: switch gracefulShutdown to primarily mention SIGTE...
  • 2b8d1ce cherry-pick(#34380): docs: release notes for v1.50 js (#34425)
  • 715eb25 cherry-pick(#34409): fix(aria snapshot): make rebase work when options are sp...
  • 6106ef0 cherry-pick(#34410): fix(list reporter): do not break after output without tr...
  • 09cd74f cherry-pick(#34407): fix(step.skip): show a skipped indicator in UI mode (#34...
  • cc6eb09 cherry-pick(#34386): chore: step timeout improvements (#34387)
  • Additional commits viewable in compare view

Updates @playwright/test from 1.49.1 to 1.50.0

Release notes

Sourced from @​playwright/test's releases.

v1.50.0

Test runner

  • New option timeout allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.

    test('some test', async ({ page }) => {
      await test.step('a step', async () => {
        // This step can time out separately from the test
      }, { timeout: 1000 });
    });
  • New method test.step.skip() to disable execution of a test step.

    test('some test', async ({ page }) => {
      await test.step('before running step', async () => {
        // Normal step
      });
    await test.step.skip('not yet ready', async () => {
    // This step is skipped
    });
    await test.step('after running step', async () => {
    // This step still runs even though the previous one was skipped
    });
    });

  • Expanded expect(locator).toMatchAriaSnapshot() to allow storing of aria snapshots in separate YAML files.

  • Added method expect(locator).toHaveAccessibleErrorMessage() to assert the Locator points to an element with a given aria errormessage.

  • Option testConfig.updateSnapshots added the configuration enum changed. changed updates only the snapshots that have changed, whereas all now updates all snapshots, regardless of whether there are any differences.

  • New option testConfig.updateSourceMethod defines the way source code is updated when testConfig.updateSnapshots is configured. Added overwrite and 3-way modes that write the changes into source code, on top of existing patch mode that creates a patch file.

    npx playwright test --update-snapshots=changed --update-source-method=3way
  • Option testConfig.webServer added a gracefulShutdown field for specifying a process kill signal other than the default SIGKILL.

  • Exposed testStep.attachments from the reporter API to allow retrieval of all attachments created by that step.

UI updates

  • Updated default HTML reporter to improve display of attachments.
  • New button for picking elements to produce aria snapshots.
  • Additional details (such as keys pressed) are now displayed alongside action API calls in traces.
  • Display of canvas content in traces is error-prone. Display is now disabled by default, and can be enabled via the Display canvas content UI setting.
  • Call and Network panels now display additional time information.

Breaking

... (truncated)

Commits
  • 9d22178 chore: mark v1.50.0 (#34447)
  • 5d6ac96 cherry-pick(#34442): fix(test runner): respect updateSourceMethod from the co...
  • 97b76b4 cherry-pick(#34440): chore(driver): roll driver to recent Node.js LTS version
  • 7bbcc3c cherry-pick(#34353): chore: move attachment link back to tree item, make it f...
  • 2811a1d cherry-pick(#34430): docs: switch gracefulShutdown to primarily mention SIGTE...
  • 2b8d1ce cherry-pick(#34380): docs: release notes for v1.50 js (#34425)
  • 715eb25 cherry-pick(#34409): fix(aria snapshot): make rebase work when options are sp...
  • 6106ef0 cherry-pick(#34410): fix(list reporter): do not break after output without tr...
  • 09cd74f cherry-pick(#34407): fix(step.skip): show a skipped indicator in UI mode (#34...
  • cc6eb09 cherry-pick(#34386): chore: step timeout improvements (#34387)
  • Additional commits viewable in compare view

Updates @storybook/addon-essentials from 8.5.0 to 8.5.1

Release notes

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

v8.5.1

8.5.1

Changelog

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

8.5.1

Commits

Updates @storybook/blocks from 8.5.0 to 8.5.1

Release notes

Sourced from @​storybook/blocks's releases.

v8.5.1

8.5.1

Changelog

Sourced from @​storybook/blocks's changelog.

8.5.1

Commits

Updates @storybook/vue3 from 8.5.0 to 8.5.1

Release notes

Sourced from @​storybook/vue3's releases.

v8.5.1

8.5.1

Changelog

Sourced from @​storybook/vue3's changelog.

8.5.1

Commits
  • 600af05 Bump version from "8.5.0" to "8.5.1" [skip ci]
  • 032a765 Merge pull request #30333 from storybookjs/interactions-to-component-2
  • See full diff in compare view

Updates @storybook/vue3-vite from 8.5.0 to 8.5.1

Release notes

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

v8.5.1

8.5.1

Changelog

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

8.5.1

Commits

Updates @types/node from 22.10.7 to 22.10.10

Commits

Updates @vitest/coverage-v8 from 3.0.2 to 3.0.4

Release notes

Sourced from @​vitest/coverage-v8's releases.

v3.0.4

   🐞 Bug Fixes

    View changes on GitHub

v3.0.3

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub
Commits

Updates eslint-plugin-playwright from 2.1.0 to 2.2.0

Release notes

Sourced from eslint-plugin-playwright's releases.

v2.2.0

2.2.0 (2025-01-23)

Features

Bug Fixes

  • expect-expert: report on test function identifier rather than body (#337) (35e37a1)
  • prefer-comparison-matcher: Fix typo in docs (c269371), closes #343
Commits
  • 956fe62 feat: Add support for Playwright 1.50 (#347)
  • c269371 fix(prefer-comparison-matcher): Fix typo in docs
  • 53df693 feat: Add no-slow-tests rule (#302)
  • 35e37a1 fix(expect-expert): report on test function identifier rather than body (#337)
  • See full diff in compare view

Updates lint-staged from 15.4.1 to 15.4.2

Release notes

Sourced from lint-staged's releases.

v15.4.2

Patch Changes

  • #1509 8827ebf Thanks @​iiroj! - Change lint-staged's dependencies to use caret (^) ranges instead of tilde (~). This makes it easier for package managers to perform dependency management when minor-level updates are also permitted instead of just patch-level.
Changelog

Sourced from lint-staged's changelog.

15.4.2

Patch Changes

  • #1509 8827ebf Thanks @​iiroj! - Change lint-staged's dependencies to use caret (^) ranges instead of tilde (~). This makes it easier for package managers to perform dependency management when minor-level updates are also permitted instead of just patch-level.
Commits

Updates storybook from 8.5.0 to 8.5.1

Release notes

Sourced from storybook's releases.

v8.5.1

8.5.1

Changelog

Sourced from storybook's changelog.

8.5.1

Commits

Updates turbo from 2.3.3 to 2.3.4

Release notes

Sourced from turbo's releases.

Turborepo v2.3.4

What's Changed

Docs

create-turbo

@​turbo/codemod

eslint

@​turbo/repository

Examples

... (truncated)

Commits
  • c24d99d publish 2.3.4 to registry
  • 8f87dea chore: dependabot.yml weekly, not daily (#9775)
  • f577739 fix(watch): correctly derive opts from watch mode args (#9761)
  • a3c3cad chore(deps): bump the non-monorepo group across 1 directory with 8 updates (#...
  • 41e965f ci: remove dependabot automation that doesn't work (#9763)
  • 44c9d56 chore(deps): bump the with-tailwind group across 1 directory with 14 updates ...
  • 31ddee8 chore(packages): update picocolors import (#9753)
  • 94febba docs: update CONTRIBUTING.md (#9759)
  • 7828e2c feat: boundaries (#9634)
  • 8a09c59 chore(deps-dev): bump turbo from 2.0.3 to 2.3.3 in /examples/with-shell-comma...
  • Additional commits viewable in compare view

Updates vitest from 3.0.2 to 3.0.4

Release notes

Sourced from vitest's releases.

v3.0.4

   🐞 Bug Fixes

    View changes on GitHub

v3.0.3

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub
Commits
  • 9e40437 chore: release v3.0.4
  • ef1464f fix: apply development|production condition on Vite 6 (#7301)
  • 38ea8ea fix(deps): update all non-major dependencies (#7297)
  • dff4406 fix: filter projects eagerly during config resolution (#7313)
  • ce6af70 fix(types): fix public types (#7328)
  • bff70be fix(typechecking): support typechecking parsing with Vite 6 (#7335)
  • a8d123c chore(deps): update eslint packages (#7086)
  • 33ab8a2 chore: release v3.0.3
  • e43a8f5 fix(browser): don't fail when running --browser.headless if the browser proje...
  • fa4634b fix(browser): don't throw a validation error if v8 coverage is used with filt...
  • Additional commits viewable in compare view

Updates @vueuse/core from 12.4.0 to 12.5.0

Release notes

Sourced from @​vueuse/core's releases.

v12.5.0

   🚀 Features

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

| Package | From | To |
| --- | --- | --- |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.27.11` | `2.27.12` |
| [@playwright/experimental-ct-vue](https://github.com/microsoft/playwright) | `1.49.1` | `1.50.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.49.1` | `1.50.0` |
| [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.5.0` | `8.5.1` |
| [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.5.0` | `8.5.1` |
| [@storybook/vue3](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/vue3) | `8.5.0` | `8.5.1` |
| [@storybook/vue3-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/vue3-vite) | `8.5.0` | `8.5.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.7` | `22.10.10` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `3.0.2` | `3.0.4` |
| [eslint-plugin-playwright](https://github.com/playwright-community/eslint-plugin-playwright) | `2.1.0` | `2.2.0` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.4.1` | `15.4.2` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.5.0` | `8.5.1` |
| [turbo](https://github.com/vercel/turborepo) | `2.3.3` | `2.3.4` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.0.2` | `3.0.4` |
| [@vueuse/core](https://github.com/vueuse/vueuse/tree/HEAD/packages/core) | `12.4.0` | `12.5.0` |
| [vitepress](https://github.com/vuejs/vitepress) | `1.6.1` | `1.6.3` |
| [@nuxtjs/i18n](https://github.com/nuxt-modules/i18n) | `9.1.1` | `9.1.3` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.0.7` | `6.0.11` |
| [@storybook/addon-a11y](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/a11y) | `8.5.0` | `8.5.1` |
| [@storybook/addon-actions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/actions) | `8.5.0` | `8.5.1` |
| [deepmerge-ts](https://github.com/RebeccaStevens/deepmerge-ts) | `7.1.3` | `7.1.4` |



Updates `@changesets/cli` from 2.27.11 to 2.27.12
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/docs/modifying-changelog-format.md)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/cli@2.27.11...@changesets/cli@2.27.12)

Updates `@playwright/experimental-ct-vue` from 1.49.1 to 1.50.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.49.1...v1.50.0)

Updates `@playwright/test` from 1.49.1 to 1.50.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.49.1...v1.50.0)

Updates `@storybook/addon-essentials` from 8.5.0 to 8.5.1
- [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.5.1/code/addons/essentials)

Updates `@storybook/blocks` from 8.5.0 to 8.5.1
- [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.5.1/code/lib/blocks)

Updates `@storybook/vue3` from 8.5.0 to 8.5.1
- [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.5.1/code/renderers/vue3)

Updates `@storybook/vue3-vite` from 8.5.0 to 8.5.1
- [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.5.1/code/frameworks/vue3-vite)

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

Updates `@vitest/coverage-v8` from 3.0.2 to 3.0.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.4/packages/coverage-v8)

Updates `eslint-plugin-playwright` from 2.1.0 to 2.2.0
- [Release notes](https://github.com/playwright-community/eslint-plugin-playwright/releases)
- [Changelog](https://github.com/playwright-community/eslint-plugin-playwright/blob/main/CHANGELOG.md)
- [Commits](playwright-community/eslint-plugin-playwright@v2.1.0...v2.2.0)

Updates `lint-staged` from 15.4.1 to 15.4.2
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.4.1...v15.4.2)

Updates `storybook` from 8.5.0 to 8.5.1
- [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.5.1/code/lib/cli)

Updates `turbo` from 2.3.3 to 2.3.4
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/release.md)
- [Commits](vercel/turborepo@v2.3.3...v2.3.4)

Updates `vitest` from 3.0.2 to 3.0.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.4/packages/vitest)

Updates `@vueuse/core` from 12.4.0 to 12.5.0
- [Release notes](https://github.com/vueuse/vueuse/releases)
- [Commits](https://github.com/vueuse/vueuse/commits/v12.5.0/packages/core)

Updates `vitepress` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/vuejs/vitepress/releases)
- [Changelog](https://github.com/vuejs/vitepress/blob/main/CHANGELOG.md)
- [Commits](vuejs/vitepress@v1.6.1...v1.6.3)

Updates `@nuxtjs/i18n` from 9.1.1 to 9.1.3
- [Release notes](https://github.com/nuxt-modules/i18n/releases)
- [Changelog](https://github.com/nuxt-modules/i18n/blob/main/CHANGELOG.md)
- [Commits](nuxt-modules/i18n@v9.1.1...v9.1.3)

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

Updates `@storybook/addon-a11y` from 8.5.0 to 8.5.1
- [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.5.1/code/addons/a11y)

Updates `@storybook/addon-actions` from 8.5.0 to 8.5.1
- [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.5.1/code/addons/actions)

Updates `deepmerge-ts` from 7.1.3 to 7.1.4
- [Release notes](https://github.com/RebeccaStevens/deepmerge-ts/releases)
- [Changelog](https://github.com/RebeccaStevens/deepmerge-ts/blob/main/CHANGELOG.md)
- [Commits](RebeccaStevens/deepmerge-ts@v7.1.3...v7.1.4)

---
updated-dependencies:
- dependency-name: "@changesets/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@playwright/experimental-ct-vue"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@storybook/addon-essentials"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@storybook/blocks"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@storybook/vue3"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@storybook/vue3-vite"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@vitest/coverage-v8"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: eslint-plugin-playwright
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: turbo
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@vueuse/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: vitepress
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@nuxtjs/i18n"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: vite
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@storybook/addon-a11y"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@storybook/addon-actions"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: deepmerge-ts
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner January 24, 2025 10:36
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 24, 2025
Copy link

changeset-bot bot commented Jan 24, 2025

⚠️ No Changeset found

Latest commit: 382f09e

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 24, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-6d135b9459 branch January 24, 2025 13:42
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