Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 9, 2023

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@storybook/test-runner ^0.16.0^0.24.0 age confidence devDependencies minor
eslint-plugin-no-secrets ^0.8.9^0.9.0 age confidence devDependencies minor
eslint-plugin-sonarjs (source) ^0.24.0^0.25.0 age confidence devDependencies minor
eslint-plugin-storybook (source) ^0.8.0^0.12.0 age confidence devDependencies minor
eslint-plugin-tsdoc (source) ^0.2.17^0.5.0 age confidence devDependencies minor
node (source) 18.16.018.20.8 age confidence minor
pnpm (source) 7.33.07.33.7 age confidence packageManager patch
unplugin-auto-import ^0.17.5^0.19.0 age confidence devDependencies minor

Release Notes

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

v0.24.2

Compare Source

🐛 Bug Fix
Authors: 1

v0.24.1

Compare Source

🐛 Bug Fix
Authors: 3

v0.24.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
Authors: 3

v0.23.0

Compare Source

🚀 Enhancement

In Storybook 9, the accessibility addon has been enhanced with automated reporting capabilities and the Test-runner has out of the box support for it. If you have @storybook/addon-a11y installed, as long as you enable them via parameters, you will get a11y checks for every story:

// .storybook/preview.ts

const preview = {
  parameters: {
    a11y: {
      // 'error' will cause a11y violations to fail tests
      test: 'error', // or 'todo' or 'off'
    },
  },
};

export default preview;

If you had a11y tests set up previously for Storybook 8 (using axe-playwright and the test-runner hooks), you can uninstall axe-playwright and remove all the code from the test-runner hooks, as they are not necessary anymore.

🐛 Bug Fix
Authors: 2

v0.22.1

Compare Source

🐛 Bug Fix
Authors: 1

v0.22.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
Authors: 4

v0.21.3

Compare Source

🐛 Bug Fix
Authors: 1

v0.21.2

Compare Source

🐛 Bug Fix
Authors: 1

v0.21.1

Compare Source

🐛 Bug Fix
Authors: 2

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
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

v0.19.1

Compare Source

🐛 Bug Fix
Authors: 2

v0.19.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
Authors: 3

v0.18.2

Compare Source

🐛 Bug Fix
Authors: 3

v0.18.1

Compare Source

🐛 Bug Fix
Authors: 1

v0.18.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
Authors: 2

v0.17.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
📝 Documentation
Authors: 6

nickdeis/eslint-plugin-no-secrets (eslint-plugin-no-secrets)

v0.9.1

Compare Source

Patch
  • Pre-release before adding support for eslint flag config and to fix versioning

v0.9.0

Compare Source

SonarSource/SonarJS (eslint-plugin-sonarjs)

v0.25.1

Compare Source

v0.25.0

Compare Source

storybookjs/storybook (eslint-plugin-storybook)

v0.12.0

Compare Source

v0.11.6

Compare Source

v0.11.5

Compare Source

v0.11.4

Compare Source

v0.11.3

Compare Source

v0.11.2

Compare Source

v0.11.1

Compare Source

v0.11.0

Compare Source

v0.10.2

Compare Source

v0.10.1

Compare Source

v0.10.0

Compare Source

v0.9.0

Compare Source

microsoft/tsdoc (eslint-plugin-tsdoc)

v0.5.0

Compare Source

Tue, 11 Nov 2025 00:51:42 GMT

Minor changes
  • Normalize builtin imports.
  • Use a more robust method to find the project root.

v0.4.0

Compare Source

Sat, 23 Nov 2024 00:23:35 GMT

Minor changes
  • Leverage parserOptions.tsConfigRootDir to reduce file system probing. This field is commonly used when eslint is configured with @typescript-eslint/parser.
Patches
  • Include CHANGELOG.md in published releases again

v0.3.0

Tue, 28 May 2024 21:34:19 GMT

Minor changes
  • Minor package cleanup.
Patches
  • Upgrade dev toolchain (Heft, Webpack, TypeScript, ESLint)
nodejs/node (node)

v18.20.8: 2025-03-27, Version 18.20.8 'Hydrogen' (LTS), @​richardlau

Compare Source

Notable Changes

This release updates OpenSSL to 3.0.16 and root certificates to NSS 3.108.

Commits

v18.20.7: 2025-02-20, Version 18.20.7 'Hydrogen' (LTS), @​aduh95

Compare Source

Notable Changes
Commits

v18.20.6: 2025-01-21, Version 18.20.6 'Hydrogen' (LTS), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes
  • CVE-2025-23085 - src: fix HTTP2 mem leak on premature close and ERR_PROTO (Medium)
  • CVE-2025-23084 - path: fix path traversal in normalize() on Windows (Medium)

Dependency update:

  • CVE-2025-22150 - Use of Insufficiently Random Values in undici fetch() (Medium)
Commits

v18.20.5: 2024-11-12, Version 18.20.5 'Hydrogen' (LTS), @​aduh95

Compare Source

Notable Changes
  • [ac37e554a5] - esm: mark import attributes and JSON module as stable (Nicolò Ribaudo) #​55333
Commits

Configuration

📅 Schedule: Branch creation - "before 5am on Saturday" in timezone Australia/Sydney, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 added the dependencies label Jun 9, 2023
@netlify
Copy link

netlify bot commented Jun 9, 2023

Deploy Preview for timjames canceled.

Name Link
🔨 Latest commit 72b5af0
🔍 Latest deploy log https://app.netlify.com/projects/timjames/deploys/695dc340a28c38000816d8df

@renovate renovate bot changed the title chore(deps): update dependency typescript to ~5.1.0 chore(deps): update all non-major dependencies Jun 9, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 78e759b to e2b77e5 Compare June 15, 2023 03:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from cdbc2c8 to ea3df82 Compare June 26, 2023 14:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 4fadbbc to 394dff2 Compare July 9, 2023 15:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 1b953bb to a99951b Compare July 25, 2023 11:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 651078e to e9cf060 Compare July 30, 2023 16:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from ced1ff2 to e63d8a6 Compare August 9, 2023 19:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e63d8a6 to 3534715 Compare August 11, 2023 20:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 940b194 to 115dfb9 Compare August 27, 2023 05:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 95fe5f8 to 805e233 Compare September 2, 2023 09:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2b7f870 to 61a7ac1 Compare June 25, 2024 14:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 09bed04 to fcd37cd Compare July 8, 2024 18:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fcd37cd to 805b9f5 Compare July 14, 2024 18:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 366aafa to 73ed81b Compare September 29, 2024 15:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 73ed81b to 0d62d70 Compare October 24, 2024 13:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c085818 to e7ae79a Compare November 13, 2024 01:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 5d1415c to 71ccde1 Compare December 1, 2024 12:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 71ccde1 to 585bee0 Compare December 16, 2024 06:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 585bee0 to 3c4770d Compare December 23, 2024 11:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3c4770d to 8e0eaa0 Compare January 21, 2025 17:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8e0eaa0 to 483a7b8 Compare February 11, 2025 05:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 483a7b8 to f34208f Compare February 20, 2025 11:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f34208f to 7fee3aa Compare March 3, 2025 10:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b700e61 to 5343145 Compare March 28, 2025 15:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from c104d7d to ffa8a89 Compare May 3, 2025 01:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ffa8a89 to 2cc3348 Compare June 14, 2025 17:39
@renovate
Copy link
Contributor Author

renovate bot commented Jun 14, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
Progress: resolved 0, reused 1, downloaded 0, added 0
 ERR_PNPM_UNSUPPORTED_ENGINE  Unsupported environment (bad pnpm and/or Node.js version)

This error happened while installing a direct dependency of /tmp/renovate/repos/github/Tim-W-James/timjames.dev

Your Node version is incompatible with "registry.npmjs.org/@storybook/test-runner/0.24.2".

Expected version: >=20.0.0
Got: v18.20.8

This is happening because the package's manifest has an engines.node field specified.
To fix this issue, install the required Node version.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2cc3348 to 17e5086 Compare October 31, 2025 19:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 17e5086 to b8b32d4 Compare November 14, 2025 04:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b8b32d4 to 72b5af0 Compare January 7, 2026 02:21
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.

1 participant