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(components): bump the minorandpatch group in /components with 20 updates #544

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 25, 2024

Bumps the minorandpatch group in /components with 20 updates:

Package From To
preact 10.24.3 10.25.0
@playwright/test 1.48.2 1.49.0
@storybook/addon-actions 8.4.4 8.4.5
@storybook/addon-essentials 8.4.4 8.4.5
@storybook/addon-interactions 8.4.4 8.4.5
@storybook/addon-links 8.4.4 8.4.5
@storybook/blocks 8.4.4 8.4.5
@storybook/preact 8.4.4 8.4.5
@storybook/preact-vite 8.4.4 8.4.5
@storybook/test 8.4.4 8.4.5
@storybook/types 8.4.4 8.4.5
@storybook/web-components 8.4.4 8.4.5
@storybook/web-components-vite 8.4.4 8.4.5
@types/node 22.9.0 22.9.3
@typescript-eslint/eslint-plugin 8.14.0 8.15.0
@typescript-eslint/parser 8.14.0 8.15.0
eslint-plugin-storybook 0.11.0 0.11.1
msw 2.6.5 2.6.6
storybook 8.4.4 8.4.5
typescript 5.6.3 5.7.2

Updates preact from 10.24.3 to 10.25.0

Release notes

Sourced from preact's releases.

10.25.0

Features

Move per-element type interfaces into core and more strictly type IntrinsicElements (#4546, thanks @​rschristian)

This adds per-element typings for every DOM-node type, this means that our types might become slightly stricter when you are using DOM attributes/properties where they are not allowed, an example of this might be <div src="x" />.

If you notice any issues when upgrading tell us about them, we can evaluate whether we have missed a case.

Recreate unkeyed functional components when they change position. (#4550, thanks @​JoviDeCroock)

This is a long time bugfix, when we have elements that look like

return (
	{condition ? <Element /> : null}
	{condition ? null : <Element />
)

We would reuse the state of the first VNode to render the second one when the condition switches. When you are using key, this issue was not present.

Support { handleEvent() {} } object interface as a listener (#4538, thanks @​lilnasy)

We've added support for attaching object/class event-handlers

let handler = {
	onclick,
	handleEvent() {
		this.onclick()
	}
}
<div onClick={handler} />

Fixes

Maintenance

... (truncated)

Commits

Updates @playwright/test from 1.48.2 to 1.49.0

Release notes

Sourced from @​playwright/test's releases.

v1.49.0

Aria snapshots

New assertion expect(locator).toMatchAriaSnapshot() verifies page structure by comparing to an expected accessibility tree, represented as YAML.

await page.goto('https://playwright.dev');
await expect(page.locator('body')).toMatchAriaSnapshot(`
  - banner:
    - heading /Playwright enables reliable/ [level=1]
    - link "Get started"
    - link "Star microsoft/playwright on GitHub"
  - main:
    - img "Browsers (Chromium, Firefox, WebKit)"
    - heading "Any browser • Any platform • One API"
`);

You can generate this assertion with Test Generator and update the expected snapshot with --update-snapshots command line flag.

Learn more in the aria snapshots guide.

Test runner

Breaking: channels chrome, msedge and similar switch to new headless

This change affects you if you're using one of the following channels in your playwright.config.ts:

  • chrome, chrome-dev, chrome-beta, or chrome-canary
  • msedge, msedge-dev, msedge-beta, or msedge-canary

What do I need to do?

After updating to Playwright v1.49, run your test suite. If it still passes, you're good to go. If not, you will probably need to update your snapshots, and adapt some of your test code around PDF viewers and extensions. See [issue #33566](microsoft/playwright#33566) for more details.

Other breaking changes

  • There will be no more updates for WebKit on Ubuntu 20.04 and Debian 11. We recommend updating your OS to a later version.
  • Package @playwright/experimental-ct-vue2 will no longer be updated.
  • Package @playwright/experimental-ct-solid will no longer be updated.

Try new Chromium headless

You can opt into the new headless mode by using 'chromium' channel. As official Chrome documentation puts it:

New Headless on the other hand is the real Chrome browser, and is thus more authentic, reliable, and offers more features. This makes it more suitable for high-accuracy end-to-end web app testing or browser extension testing.

... (truncated)

Commits
  • a70a96a chore: mark v1.49.0 (#33649)
  • 53f51a8 cherry-pick(#33638): chore: clear highlight when performing action
  • 2a00ca8 cherry-pick(#33635): chore: add cm placeholder text
  • 0e64340 cherry-pick(#33632): chore: highlight edited locator while recording
  • cb0f456 cherry-pick(#33629): fix(rebase): do not apply multiple rebaselines to the sa...
  • 698823a cherry-pick(#33627): fix(codegen): document.documentElement is null on early ...
  • c0fa804 cherry-pick(#33619): fix(aria): normalize whitespace in toMatchAccessible{Nam...
  • 7a32228 cherry-pick(#33614): docs: add ariaSnapshot.timeout for language ports (#33615)
  • 0e31ace cherry-pick(#33575): fix(canvas snapshots): position mismatch in headless mode
  • b2a39ff cherry-pick(#33604): docs: update docs about headless shell
  • Additional commits viewable in compare view

Updates @storybook/addon-actions from 8.4.4 to 8.4.5

Release notes

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

v8.4.5

8.4.5

Changelog

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

8.4.5

Commits
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/addon-actions since your current version.


Updates @storybook/addon-essentials from 8.4.4 to 8.4.5

Release notes

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

v8.4.5

8.4.5

Changelog

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

8.4.5

Commits
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/addon-essentials since your current version.


Updates @storybook/addon-interactions from 8.4.4 to 8.4.5

Release notes

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

v8.4.5

8.4.5

Changelog

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

8.4.5

Commits
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/addon-interactions since your current version.


Updates @storybook/addon-links from 8.4.4 to 8.4.5

Release notes

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

v8.4.5

8.4.5

Changelog

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

8.4.5

Commits
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/addon-links since your current version.


Updates @storybook/blocks from 8.4.4 to 8.4.5

Release notes

Sourced from @​storybook/blocks's releases.

v8.4.5

8.4.5

Changelog

Sourced from @​storybook/blocks's changelog.

8.4.5

Commits
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/blocks since your current version.


Updates @storybook/preact from 8.4.4 to 8.4.5

Release notes

Sourced from @​storybook/preact's releases.

v8.4.5

8.4.5

Changelog

Sourced from @​storybook/preact's changelog.

8.4.5

Commits
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/preact since your current version.


Updates @storybook/preact-vite from 8.4.4 to 8.4.5

Release notes

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

v8.4.5

8.4.5

Changelog

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

8.4.5

Commits
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/preact-vite since your current version.


Updates @storybook/test from 8.4.4 to 8.4.5

Release notes

Sourced from @​storybook/test's releases.

v8.4.5

8.4.5

Changelog

Sourced from @​storybook/test's changelog.

8.4.5

Commits
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/test since your current version.


Updates @storybook/types from 8.4.4 to 8.4.5

Release notes

Sourced from @​storybook/types's releases.

v8.4.5

8.4.5

Commits
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/types since your current version.


Updates @storybook/web-components from 8.4.4 to 8.4.5

Release notes

Sourced from @​storybook/web-components's releases.

v8.4.5

8.4.5

Changelog

Sourced from @​storybook/web-components's changelog.

8.4.5

Commits
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/web-components since your current version.


Updates @storybook/web-components-vite from 8.4.4 to 8.4.5

Release notes

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

v8.4.5

8.4.5

Changelog

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

8.4.5

Commits
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/web-components-vite since your current version.


Updates @types/node from 22.9.0 to 22.9.3

Commits

Updates @typescript-eslint/eslint-plugin from 8.14.0 to 8.15.0

Release notes

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

v8.15.0

8.15.0 (2024-11-18)

🚀 Features

  • eslint-plugin: added related-getter-setter-pairs rule (#10192)
  • eslint-plugin: new rule no-unsafe-type-assertion (#10051)
  • eslint-plugin: [prefer-nullish-coalescing] fix detection of ignoreConditionalTests involving boolean ! operator (#10299)
  • rule-tester: run method - avoid to infer type parameter from tests param (#10324)
  • typescript-eslint: allow infinitely deep array nesting in config function and extends (#10333)
  • utils: add new optional language field to FlatConfig.Config type (#10326)

🩹 Fixes

  • add missing peer dependencies (#9744)
  • eslint-plugin: [consistent-indexed-object-style] handle circular mapped types (#10301)
  • eslint-plugin: [await-thenable, return-await] don't flag awaiting unconstrained type parameter as unnecessary (#10314)
  • eslint-plugin: [explicit-module-boundary-types] and [explicit-function-return-type] don't report on as const satisfies (#10315)
  • eslint-plugin: report deprecations used in default export (#10330)
  • utils: add defaultOptions to meta in rule (#10339)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

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

8.15.0 (2024-11-18)

🚀 Features

  • eslint-plugin: [prefer-nullish-coalescing] fix detection of ignoreConditionalTests involving boolean ! operator (#10299)
  • eslint-plugin: new rule no-unsafe-type-assertion (#10051)
  • eslint-plugin: added related-getter-setter-pairs rule (#10192)

🩹 Fixes

  • utils: add defaultOptions to meta in rule (#10339)
  • eslint-plugin: report deprecations used in default export (#10330)
  • eslint-plugin: [explicit-module-boundary-types] and [explicit-function-return-type] don't report on as const satisfies (#10315)
  • eslint-plugin: [await-thenable, return-await] don't flag awaiting unconstrained type parameter as unnecessary (#10314)
  • eslint-plugin: [consistent-indexed-object-style] handle circular mapped types (#10301)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Commits
  • 2444351 chore(release): publish 8.15.0
  • 6c27d08 chore: bump eslint dependencies (#10354)
  • f5e23e2 fix(utils): add defaultOptions to meta in rule (#10339)
  • 12ce800 docs(eslint-plugin): [no-confusing-void-expression] add a default value for `...
  • ab83198 fix(eslint-plugin): report deprecations used in default export (#10330)
  • 66234d0 fix(eslint-plugin): [explicit-module-boundary-types] and [explicit-function-r...
  • 013c5cc fix(eslint-plugin): [await-thenable, return-await] don't flag awaiting uncons...
  • a7746fb feat(eslint-plugin): [prefer-nullish-coalescing] fix detection of `ignoreCond...
  • 57d343b docs: [no-deprecated] awkward wording about TypeScript visualizing deprecated...
  • 9ebdff4 feat(eslint-plugin): new rule no-unsafe-type-assertion (#10051)
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 8.14.0 to 8.15.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.15.0

8.15.0 (2024-11-18)

🚀 Features

  • eslint-plugin: added related-getter-setter-pairs rule (#10192)
  • eslint-plugin: new rule no-unsafe-type-assertion (#10051)
  • eslint-plugin: [prefer-nullish-coalescing] fix detection of ignoreConditionalTests involving boolean ! operator (#10299)
  • rule-tester: run method - avoid to infer type parameter from tests param (#10324)
  • typescript-eslint: allow infinitely deep array nesting in config function and extends (#10333)
  • utils: add new optional language field to FlatConfig.Config type (#10326)

🩹 Fixes

  • add missing peer dependencies (#9744)
  • eslint-plugin: [consistent-indexed-object-style] handle circular mapped types (#10301)
  • eslint-plugin: [await-thenable, return-await] don't flag awaiting unconstrained type parameter as unnecessary (#10314)
  • eslint-plugin: [explicit-module-boundary-types] and [explicit-function-return-type] don't report on as const satisfies (#10315)
  • eslint-plugin: report deprecations used in default export (#10330)
  • utils: add defaultOptions to meta in rule (#10339)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.15.0 (2024-11-18)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates eslint-plugin-storybook from 0.11.0 to 0.11.1

Release notes

Sourced from eslint-plugin-storybook's releases.

v0.11.1

🐛 Bug Fix

Authors: 1

Changelog

Sourced from eslint-plugin-storybook's changelog.

v0.11.1 (Tue Nov 19 2024)

🐛 Bug Fix

Authors: 1


Commits

Updates msw from 2.6.5 to 2.6.6

Release notes

Sourced from msw's releases.

v2.6.6 (2024-11-22)

Bug Fixes

  • types: support optional path parameters (#2368) (3b7b776e8c0de341185df4686a895c24326748d3) @​kettanaito
Commits

Updates storybook from 8.4.4 to 8.4.5

Release notes

Sourced from storybook's releases.

v8.4.5

8.4.5

Changelog

Sourced from storybook's changelog.

8.4.5

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 25, 2024
Copy link

vercel bot commented Nov 25, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
dashboard-components ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 26, 2024 9:50am

Copy link
Contributor

There is no change in the changelog. This PR will not produce a new releasable version.

Bumps the minorandpatch group in /components with 20 updates:

| Package | From | To |
| --- | --- | --- |
| [preact](https://github.com/preactjs/preact) | `10.24.3` | `10.25.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.48.2` | `1.49.0` |
| [@storybook/addon-actions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/actions) | `8.4.4` | `8.4.5` |
| [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.4.4` | `8.4.5` |
| [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.4.4` | `8.4.5` |
| [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `8.4.4` | `8.4.5` |
| [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.4.4` | `8.4.5` |
| [@storybook/preact](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/preact) | `8.4.4` | `8.4.5` |
| [@storybook/preact-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/preact-vite) | `8.4.4` | `8.4.5` |
| [@storybook/test](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test) | `8.4.4` | `8.4.5` |
| [@storybook/types](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/types) | `8.4.4` | `8.4.5` |
| [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components) | `8.4.4` | `8.4.5` |
| [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite) | `8.4.4` | `8.4.5` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.9.0` | `22.9.3` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.14.0` | `8.15.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.14.0` | `8.15.0` |
| [eslint-plugin-storybook](https://github.com/storybookjs/eslint-plugin-storybook) | `0.11.0` | `0.11.1` |
| [msw](https://github.com/mswjs/msw) | `2.6.5` | `2.6.6` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.4.4` | `8.4.5` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.3` | `5.7.2` |

Updates `preact` from 10.24.3 to 10.25.0
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](preactjs/preact@10.24.3...10.25.0)

Updates `@playwright/test` from 1.48.2 to 1.49.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.48.2...v1.49.0)

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

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

Updates `@storybook/addon-interactions` from 8.4.4 to 8.4.5
- [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.5/code/addons/interactions)

Updates `@storybook/addon-links` from 8.4.4 to 8.4.5
- [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.5/code/addons/links)

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

Updates `@storybook/preact` from 8.4.4 to 8.4.5
- [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.5/code/renderers/preact)

Updates `@storybook/preact-vite` from 8.4.4 to 8.4.5
- [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.5/code/frameworks/preact-vite)

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

Updates `@storybook/types` from 8.4.4 to 8.4.5
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.4.5/code/lib/types)

Updates `@storybook/web-components` from 8.4.4 to 8.4.5
- [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.5/code/renderers/web-components)

Updates `@storybook/web-components-vite` from 8.4.4 to 8.4.5
- [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.5/code/frameworks/web-components-vite)

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

Updates `@typescript-eslint/eslint-plugin` from 8.14.0 to 8.15.0
- [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.15.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.14.0 to 8.15.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.15.0/packages/parser)

Updates `eslint-plugin-storybook` from 0.11.0 to 0.11.1
- [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.0...v0.11.1)

Updates `msw` from 2.6.5 to 2.6.6
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v2.6.5...v2.6.6)

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

Updates `typescript` from 5.6.3 to 5.7.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.6.3...v5.7.2)

---
updated-dependencies:
- dependency-name: preact
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@storybook/addon-actions"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@storybook/addon-essentials"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@storybook/addon-interactions"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@storybook/addon-links"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@storybook/blocks"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@storybook/preact"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@storybook/preact-vite"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@storybook/test"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@storybook/types"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@storybook/web-components"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@storybook/web-components-vite"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: eslint-plugin-storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: msw
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
...

Signed-off-by: dependabot[bot] <support@github.com>
@fengelniederhammer fengelniederhammer force-pushed the dependabot/npm_and_yarn/components/minorandpatch-96a7666f86 branch from 5f0651b to d4ffefb Compare November 26, 2024 09:49
@fengelniederhammer fengelniederhammer merged commit 652058b into main Nov 26, 2024
7 checks passed
@fengelniederhammer fengelniederhammer deleted the dependabot/npm_and_yarn/components/minorandpatch-96a7666f86 branch November 26, 2024 09:52
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