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-dev): bump the development-dependencies group with 14 updates #357

Merged
merged 2 commits into from
Oct 22, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 21, 2024

Bumps the development-dependencies group with 14 updates:

Package From To
@storybook/addon-essentials 8.3.5 8.3.6
@storybook/addon-interactions 8.3.5 8.3.6
@storybook/addon-links 8.3.5 8.3.6
@storybook/addon-onboarding 8.3.5 8.3.6
@storybook/blocks 8.3.5 8.3.6
@storybook/builder-vite 8.3.5 8.3.6
@storybook/react 8.3.5 8.3.6
@storybook/react-vite 8.3.5 8.3.6
@storybook/test 8.3.5 8.3.6
@types/node 20.16.11 20.16.13
@vitejs/plugin-react 4.3.2 4.3.3
eslint-plugin-react-refresh 0.4.12 0.4.13
sass 1.79.5 1.79.6
storybook 8.3.5 8.3.6

Updates @storybook/addon-essentials from 8.3.5 to 8.3.6

Release notes

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

v8.3.6

8.3.6

Changelog

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

8.3.6

Commits

Updates @storybook/addon-interactions from 8.3.5 to 8.3.6

Release notes

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

v8.3.6

8.3.6

Changelog

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

8.3.6

Commits

Updates @storybook/addon-links from 8.3.5 to 8.3.6

Release notes

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

v8.3.6

8.3.6

Changelog

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

8.3.6

Commits

Updates @storybook/addon-onboarding from 8.3.5 to 8.3.6

Release notes

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

v8.3.6

8.3.6

Changelog

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

8.3.6

Commits

Updates @storybook/blocks from 8.3.5 to 8.3.6

Release notes

Sourced from @​storybook/blocks's releases.

v8.3.6

8.3.6

Changelog

Sourced from @​storybook/blocks's changelog.

8.3.6

Commits

Updates @storybook/builder-vite from 8.3.5 to 8.3.6

Release notes

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

v8.3.6

8.3.6

Changelog

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

8.3.6

Commits

Updates @storybook/react from 8.3.5 to 8.3.6

Release notes

Sourced from @​storybook/react's releases.

v8.3.6

8.3.6

Changelog

Sourced from @​storybook/react's changelog.

8.3.6

Commits

Updates @storybook/react-vite from 8.3.5 to 8.3.6

Release notes

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

v8.3.6

8.3.6

Changelog

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

8.3.6

Commits

Updates @storybook/test from 8.3.5 to 8.3.6

Release notes

Sourced from @​storybook/test's releases.

v8.3.6

8.3.6

Changelog

Sourced from @​storybook/test's changelog.

8.3.6

Commits

Updates @types/node from 20.16.11 to 20.16.13

Commits

Updates @vitejs/plugin-react from 4.3.2 to 4.3.3

Release notes

Sourced from @​vitejs/plugin-react's releases.

v4.3.3

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}])
  }
return {
plugins: [react({ babel: { plugins: babelPlugins } })],
}
})

Changelog

Sourced from @​vitejs/plugin-react's changelog.

4.3.3 (2024-10-19)

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}])
  }
return {
plugins: [react({ babel: { plugins: babelPlugins } })],
}
})

Commits

Updates eslint-plugin-react-refresh from 0.4.12 to 0.4.13

Release notes

Sourced from eslint-plugin-react-refresh's releases.

v0.4.13

  • Support for react-redux connect (export default connect(mapStateToProps, mapDispatchToProps)(MyComponent)) (fixes #51)
  • Support for Arbitrary Module Identifiers syntax (fixes #52)
Changelog

Sourced from eslint-plugin-react-refresh's changelog.

0.4.13

  • Support for react-redux connect (export default connect(mapStateToProps, mapDispatchToProps)(MyComponent)) (fixes #51)
  • Support for Arbitrary Module Identifiers syntax (fixes #52)
Commits
  • 268df3b Support for Arbitrary Module Identifiers syntax (fixes #52) [publish]
  • cb7cecd Support for react-redux connect (fixes #51)
  • See full diff in compare view

Updates sass from 1.79.5 to 1.79.6

Release notes

Sourced from sass's releases.

Dart Sass 1.79.6

To install Sass 1.79.6, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Fix a bug where Sass would add an extra */ after loud comments with whitespace after an explicit */ in the indented syntax.

  • Potentially breaking bug fix: Adding text after an explicit */ in the indented syntax is now an error, rather than silently generating invalid CSS.

Embedded Host

  • Properly export the SassBoolean type.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.79.6

  • Fix a bug where Sass would add an extra */ after loud comments with whitespace after an explicit */ in the indented syntax.

  • Potentially breaking bug fix: Adding text after an explicit */ in the indented syntax is now an error, rather than silently generating invalid CSS.

Embedded Host

  • Properly export the SassBoolean type.
Commits

Updates storybook from 8.3.5 to 8.3.6

Release notes

Sourced from storybook's releases.

v8.3.6

8.3.6

Changelog

Sourced from storybook's changelog.

8.3.6

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the development-dependencies group with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.3.5` | `8.3.6` |
| [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.3.5` | `8.3.6` |
| [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `8.3.5` | `8.3.6` |
| [@storybook/addon-onboarding](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/onboarding) | `8.3.5` | `8.3.6` |
| [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.3.5` | `8.3.6` |
| [@storybook/builder-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/builders/builder-vite) | `8.3.5` | `8.3.6` |
| [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `8.3.5` | `8.3.6` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `8.3.5` | `8.3.6` |
| [@storybook/test](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test) | `8.3.5` | `8.3.6` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.16.11` | `20.16.13` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.3.2` | `4.3.3` |
| [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) | `0.4.12` | `0.4.13` |
| [sass](https://github.com/sass/dart-sass) | `1.79.5` | `1.79.6` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.3.5` | `8.3.6` |


Updates `@storybook/addon-essentials` from 8.3.5 to 8.3.6
- [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.3.6/code/addons/essentials)

Updates `@storybook/addon-interactions` from 8.3.5 to 8.3.6
- [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.3.6/code/addons/interactions)

Updates `@storybook/addon-links` from 8.3.5 to 8.3.6
- [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.3.6/code/addons/links)

Updates `@storybook/addon-onboarding` from 8.3.5 to 8.3.6
- [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.3.6/code/addons/onboarding)

Updates `@storybook/blocks` from 8.3.5 to 8.3.6
- [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.3.6/code/lib/blocks)

Updates `@storybook/builder-vite` from 8.3.5 to 8.3.6
- [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.3.6/code/builders/builder-vite)

Updates `@storybook/react` from 8.3.5 to 8.3.6
- [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.3.6/code/renderers/react)

Updates `@storybook/react-vite` from 8.3.5 to 8.3.6
- [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.3.6/code/frameworks/react-vite)

Updates `@storybook/test` from 8.3.5 to 8.3.6
- [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.3.6/code/lib/test)

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

Updates `@vitejs/plugin-react` from 4.3.2 to 4.3.3
- [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.3/packages/plugin-react)

Updates `eslint-plugin-react-refresh` from 0.4.12 to 0.4.13
- [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases)
- [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md)
- [Commits](ArnaudBarre/eslint-plugin-react-refresh@v0.4.12...v0.4.13)

Updates `sass` from 1.79.5 to 1.79.6
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.79.5...1.79.6)

Updates `storybook` from 8.3.5 to 8.3.6
- [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.3.6/code/lib/cli)

---
updated-dependencies:
- dependency-name: "@storybook/addon-essentials"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-interactions"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-links"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-onboarding"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/blocks"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/builder-vite"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/react-vite"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/test"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@vitejs/plugin-react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: eslint-plugin-react-refresh
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

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

@oyo oyo merged commit 463c53d into main Oct 22, 2024
6 checks passed
@oyo oyo deleted the dependabot/npm_and_yarn/development-dependencies-85bd16971f branch October 22, 2024 06:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: USER READY
Development

Successfully merging this pull request may close these issues.

1 participant