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): update npm #1514

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open

chore(deps): update npm #1514

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 22, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/preset-react (source) ^7.25.9 -> ^7.26.3 age adoption passing confidence
@​splunk/dashboard-action-buttons ^27.5.0 -> ^27.5.1 age adoption passing confidence
@​splunk/dashboard-context ^27.5.0 -> ^27.5.1 age adoption passing confidence
@​splunk/dashboard-core ^27.5.0 -> ^27.5.1 age adoption passing confidence
@​splunk/dashboard-presets ^27.5.0 -> ^27.5.1 age adoption passing confidence
@​splunk/dashboard-state ^27.5.0 -> ^27.5.1 age adoption passing confidence
@​splunk/dashboard-types ^27.5.0 -> ^27.5.1 age adoption passing confidence
@​splunk/react-icons ^4.8.0 -> ^4.9.0 age adoption passing confidence
@​splunk/react-ui ^4.39.0 -> ^4.40.0 age adoption passing confidence
@storybook/addon-a11y (source) ^8.4.2 -> ^8.4.7 age adoption passing confidence
@storybook/addon-essentials (source) ^8.4.2 -> ^8.4.7 age adoption passing confidence
@storybook/addon-interactions (source) ^8.4.2 -> ^8.4.7 age adoption passing confidence
@storybook/addon-links (source) ^8.4.2 -> ^8.4.7 age adoption passing confidence
@storybook/addon-webpack5-compiler-babel ^3.0.3 -> ^3.0.5 age adoption passing confidence
@storybook/blocks (source) ^8.4.2 -> ^8.4.7 age adoption passing confidence
@storybook/react (source) ^8.4.2 -> ^8.4.7 age adoption passing confidence
@storybook/react-webpack5 (source) ^8.4.2 -> ^8.4.7 age adoption passing confidence
@storybook/test (source) ^8.4.2 -> ^8.4.7 age adoption passing confidence
@storybook/test-runner ^0.19.1 -> ^0.21.0 age adoption passing confidence
eslint-import-resolver-typescript ^3.6.3 -> ^3.7.0 age adoption passing confidence
eslint-plugin-jest ^28.9.0 -> ^28.10.0 age adoption passing confidence
eslint-plugin-react ^7.37.2 -> ^7.37.3 age adoption passing confidence
eslint-plugin-storybook ^0.11.0 -> ^0.11.1 age adoption passing confidence
msw (source) 2.6.2 -> 2.7.0 age adoption passing confidence
postcss (source) ^8.4.47 -> ^8.4.49 age adoption passing confidence
storybook (source) ^8.4.2 -> ^8.4.7 age adoption passing confidence
typescript (source) ^5.6.3 -> ^5.7.2 age adoption passing confidence
uuid ^11.0.2 -> ^11.0.3 age adoption passing confidence
webpack ^5.96.1 -> ^5.97.1 age adoption passing confidence
webpack-dev-server ^5.1.0 -> ^5.2.0 age adoption passing confidence
zod (source) ^3.23.8 -> ^3.24.1 age adoption passing confidence

Release Notes

babel/babel (@​babel/preset-react)

v7.26.3

Compare Source

🐛 Bug Fix
🏠 Internal
  • babel-helper-builder-binary-assignment-operator-visitor, babel-plugin-transform-exponentiation-operator
🏃‍♀️ Performance
storybookjs/storybook (@​storybook/addon-a11y)

v8.4.7

Compare Source

v8.4.6

Compare Source

v8.4.5

Compare Source

v8.4.4

Compare Source

  • Addon Test: Only optimize react deps if applicable in vitest-plugin - #​29617, thanks @​yannbf!

v8.4.3

Compare Source

storybookjs/addon-webpack5-compiler-babel (@​storybook/addon-webpack5-compiler-babel)

v3.0.5

Compare Source

🐛 Bug Fix
Authors: 1

v3.0.4

Compare Source

🐛 Bug Fix
Authors: 2

storybookjs/test-runner (@​storybook/test-runner)

v0.21.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
Authors: 3

v0.20.1

Compare Source

🐛 Bug Fix
Authors: 1

v0.20.0

Compare Source

Release Notes
Refactor: Align with Storybook 8.2 core package layout

This is a structural change that shouldn't really affect you. As long as you have the storybook dependency in your app (which you should), you're good! This change makes it so that the test-runner deduplicates Storybook dependencies, and therefore, slims down your node_modules size.

Feature: Run postVisit on failures (#​494)

The test-runner's postVisit hook now runs even if there are failures. This allows you to, for instance, take snapshots on component failures. You can check whether the test has failed via the hasFailure property in the context passed to the hook:

const config: TestRunnerConfig = {
  async postVisit(_page, context) {
    if(context.hasFailure) {
      console.log('problems!')
      // do a snapshot, write a log, or anything you like
    }
  },
}

🚀 Enhancement
📝 Documentation
Authors: 6
import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v3.7.0

Compare Source

Minor Changes
  • #​326 93ea130 Thanks @​SukkaW! - This version has implemented the eslint-plugin-import-x's v3 resolver interface. This allows you to use import/require to reference eslint-import-resolver-typescript directly in your ESLint flat config:

    Previously

    // eslint.config.js
    module.exports = {
      settings: {
        'import-x/resolver': {
          typescript: {
            alwaysTryTypes: true,
          },
          // or
          require.resolve('eslint-import-resolver-typescript'):
            alwaysTryTypes: true,
          }
        }
      }
    }

    Now

    // eslint.config.js
    const {
      createTypeScriptImportResolver,
    } = require('eslint-import-resolver-typescript')
    
    module.exports = {
      settings: {
        'import-x/resolver-next': [
          createTypeScriptImportResolver({
            alwaysTryTypes: true,
          }),
        ],
      },
    }

    Note that this only works with eslint-plugin-import-x@>=4.5.0. You can't use createTypeScriptImportResolver with the older versions of eslint-plugin-import-x or any existing versions of eslint-plugin-import.

jest-community/eslint-plugin-jest (eslint-plugin-jest)

v28.10.0

Compare Source

Features
  • unbound-method: ignore functions passed to jest.mocked (#​1681) (d868636)
jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.37.3

Compare Source

Fixed
  • [no-danger][no-danger]: avoid a crash on a nested component name ([#​3833][] @​ljharb)
  • [Fix] types: correct generated type declaration ([#​3840][] @​ocavue)
  • [no-unknown-property][no-unknown-property]: support precedence prop in react 19 ([#​3829][] @​acusti)
  • [prop-types][prop-types]: props missing in validation when using generic types from a namespace import ([#​3859][] @​rbondoc96)
Changed
  • [Tests] [jsx-no-script-url][jsx-no-script-url]: Improve tests ([#​3849][] @​radu2147)
  • [Docs] fix broken links: [default-props-match-prop-types][default-props-match-prop-types], [jsx-boolean-value][jsx-boolean-value], [jsx-curly-brace-presence][jsx-curly-brace-presence], [jsx-no-bind][jsx-no-bind], [no-array-index-key][no-array-index-key], [no-is-mounted][no-is-mounted], [no-render-return-value][no-render-return-value], [require-default-props][require-default-props] ([#​3841][] @​bastiendmt)

Configuration

📅 Schedule: Branch creation - "every 2 weeks on Sunday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner December 22, 2024 00:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants