chore(deps): update all non-major dependencies#86
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
Conversation
❌ Deploy Preview for timjames failed.
|
78e759b to
e2b77e5
Compare
cdbc2c8 to
ea3df82
Compare
4fadbbc to
394dff2
Compare
1b953bb to
a99951b
Compare
651078e to
e9cf060
Compare
ced1ff2 to
e63d8a6
Compare
e63d8a6 to
3534715
Compare
940b194 to
115dfb9
Compare
95fe5f8 to
805e233
Compare
09bed04 to
fcd37cd
Compare
fcd37cd to
805b9f5
Compare
366aafa to
73ed81b
Compare
73ed81b to
0d62d70
Compare
c085818 to
e7ae79a
Compare
5d1415c to
71ccde1
Compare
71ccde1 to
585bee0
Compare
585bee0 to
3c4770d
Compare
3c4770d to
8e0eaa0
Compare
8e0eaa0 to
483a7b8
Compare
483a7b8 to
f34208f
Compare
f34208f to
7fee3aa
Compare
b700e61 to
5343145
Compare
c104d7d to
ffa8a89
Compare
ffa8a89 to
2cc3348
Compare
Contributor
Author
|
2cc3348 to
17e5086
Compare
17e5086 to
b8b32d4
Compare
b8b32d4 to
72b5af0
Compare
72b5af0 to
fcb91aa
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.16.0→^0.24.0^0.8.9→^0.9.0^0.4.5→^0.5.0^0.24.0→^0.25.0^0.8.0→^0.12.0^0.2.17→^0.5.018.16.0→18.20.87.33.0→7.33.7^0.17.5→^0.19.0Release Notes
storybookjs/test-runner (@storybook/test-runner)
v0.24.2Compare Source
🐛 Bug Fix
Authors: 1
v0.24.1Compare Source
🐛 Bug Fix
Authors: 3
v0.24.0Compare Source
🚀 Enhancement
🐛 Bug Fix
--testTimeoutexamples #579 (@IanVS)Authors: 3
v0.23.0Compare 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-a11yinstalled, as long as you enable them via parameters, you will get a11y checks for every story: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.1Compare Source
🐛 Bug Fix
Authors: 1
v0.22.0Compare Source
🚀 Enhancement
🐛 Bug Fix
Authors: 4
v0.21.3Compare Source
🐛 Bug Fix
Authors: 1
v0.21.2Compare Source
🐛 Bug Fix
Authors: 1
v0.21.1Compare Source
🐛 Bug Fix
Authors: 2
v0.21.0Compare Source
🚀 Enhancement
🐛 Bug Fix
Authors: 3
v0.20.1Compare Source
🐛 Bug Fix
Authors: 1
v0.20.0Compare 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
hasFailureproperty in the context passed to the hook:🚀 Enhancement
📝 Documentation
Authors: 6
v0.19.1Compare Source
🐛 Bug Fix
@storybook/csfto v0.1.11 #491 (@paulgv)Authors: 2
v0.19.0Compare Source
🚀 Enhancement
🐛 Bug Fix
Authors: 3
v0.18.2Compare Source
🐛 Bug Fix
@swc/coreto 1.5.7 #474 (@shilman)Authors: 3
v0.18.1Compare Source
🐛 Bug Fix
Authors: 1
v0.18.0Compare Source
🚀 Enhancement
🐛 Bug Fix
--testTimeoutcli option from jest #409 (@skratchdot @yannbf)Authors: 2
v0.17.0Compare Source
🚀 Enhancement
🐛 Bug Fix
📝 Documentation
Authors: 6
nickdeis/eslint-plugin-no-secrets (eslint-plugin-no-secrets)
v0.9.1Compare Source
Patch
v0.9.0Compare Source
ArnaudBarre/eslint-plugin-react-refresh (eslint-plugin-react-refresh)
v0.5.0Compare Source
Breaking changes
reactRefreshexport is available and prefered over the default export. It's an object with two properties:plugin: The plugin object with the rulesconfigs: An object containing configuration presets, each exposed as a function. These functions accept your custom options, merge them with sensible defaults for that config, and return the final config object.customHOCsoption was renamed toextraHOCsextraHOCsoptionConfig example:
Config example without config:
Why
This version follows a revamp of the internal logic to better make the difference between random call expressions like
export const Enum = Object.keys(Record)and actual React HOC calls likeexport const MemoComponent = memo(Component). (fixes #93)The rule now handles ternaries and patterns like
export default customHOC(props)(Component)which makes it able to correctly support files like this one given this config:{ "react-refresh/only-export-components": [ "warn", { "extraHOCs": ["createRootRouteWithContext"] } ] }Because I'm not 100% sure this new logic doesn't introduce any false positive, this is done in a major-like version. This also give me the occasion to remove the hardcoded
connectfrom the rule. If you are usingconnectfromreact-redux, you should now add it toextraHOCslike this:{ "react-refresh/only-export-components": ["warn", { "extraHOCs": ["connect"] }] }v0.4.26Compare Source
v0.4.25Compare Source
export const ENUM = Object.keys(TABLE) as EnumType[];(fixes #93)_in component names (#94)v0.4.24Compare Source
"generateImageMetadata","generateSitemaps"&"generateStaticParams"toallowExportNamesin Next configv0.4.23Compare Source
"metadata","generateMetadata"&"generateViewport"toallowExportNamesin Next configv0.4.22Compare Source
"viewport"toallowExportNamesin Next config (#89)v0.4.21Compare Source
This allows exports like
fetchCacheandrevalidatewhich are used in Page or Layout components and don't trigger a full page reload.v0.4.20Compare Source
as const(fixes #80)v0.4.19Compare Source
Add name to configs for ESLint Config Inspector
v0.4.18Compare Source
ESM/CJS interop is the worse that happened to this ecosystem, this is all I have to say.
v0.4.17Compare Source
.defaultproperty access under TS node16 module resolution (fixes #70)v0.4.16Compare Source
Fix CJS/ESM interop issue. Sorry everyone for the trouble.
v0.4.15Compare Source
Add support for custom HOCs (#60)
By default, the rule only knows that
memo&forwardReffunction calls with return a React component. With this option, you can also allow extra function names like Mobx observer to make this code valid:{ "react-refresh/only-export-components": [ "error", { "customHOCs": ["observer"] } ] }Thanks @HorusGoul!
Add recommended config and simple types (#67)
You can now add the recommended config to your ESLint config like this:
To follow ESLint recommandations, the rule is added with the
errorseverity.Some simple types ensure that people typecheking their config won't need
@ts-expect-erroranymore.Bump ESLint peer dependency to 8.40
This was actually done by mistake in the previous release when moving from a deprecated API to a new one.
Given that ESLint 8 is officialy end-of-life and the only report (#56) didn't get likes, I'm going forward and documenting the expected minimum version from ESLin in the package JSON so that people can get warning from their package manager.
v0.4.14Compare Source
v0.4.13Compare Source
react-reduxconnect (export default connect(mapStateToProps, mapDispatchToProps)(MyComponent)) (fixes #51)v0.4.12Compare Source
v0.4.11Compare Source
export type foo = string;) (fixes #47)v0.4.10Compare Source
function Foo() {}; export default React.memo(Foo)(#46) (thanks @SukkaW!)v0.4.9Compare Source
function Foo() {}; export default memo(Foo)(fixes #44) (thanks @SukkaW!)v0.4.8Compare Source
export const foo = -1withallowConstantExport(fixes #43)v0.4.7Compare Source
export { Component as default }(fixes #41)v0.4.6Compare Source
SonarSource/SonarJS (eslint-plugin-sonarjs)
v0.25.1Compare Source
v0.25.0Compare Source
storybookjs/storybook (eslint-plugin-storybook)
v0.12.0Compare Source
v0.11.6Compare Source
v0.11.5Compare Source
v0.11.4Compare Source
v0.11.3Compare Source
v0.11.2Compare Source
v0.11.1Compare Source
v0.11.0Compare Source
v0.10.2Compare Source
v0.10.1Compare Source
v0.10.0Compare Source
v0.9.0Compare Source
microsoft/tsdoc (eslint-plugin-tsdoc)
v0.5.0Compare Source
Tue, 11 Nov 2025 00:51:42 GMT
Minor changes
v0.4.0Compare Source
Sat, 23 Nov 2024 00:23:35 GMT
Minor changes
parserOptions.tsConfigRootDirto reduce file system probing. This field is commonly used when eslint is configured with@typescript-eslint/parser.Patches
v0.3.0Tue, 28 May 2024 21:34:19 GMT
Minor changes
Patches
nodejs/node (node)
v18.20.8: 2025-03-27, Version 18.20.8 'Hydrogen' (LTS), @richardlauCompare Source
Notable Changes
This release updates OpenSSL to 3.0.16 and root certificates to NSS 3.108.
Commits
f737a79073] - async_hooks,inspector: implement inspector api without async_wrap (Gabriel Bota) #51501fce923ba69] - build: update gcovr to 7.2 and codecov config (Benjamin E. Coe) #540198b7ffd807c] - build: fix compatibility with V8'sdepot_tools(Richard Lau) #57330ee9a343413] - crypto: update root certificates to NSS 3.108 (Node.js GitHub Bot) #57381738bf8aea4] - crypto: update root certificates to NSS 3.104 (Richard Lau) #5568169d661d591] - deps: update undici to v5.29.0 (Matteo Collina) #5755759fcf43b0e] - deps: update corepack to 0.32.0 (Node.js GitHub Bot) #572651b72869503] - deps: update archs files for openssl-3.0.16 (Node.js GitHub Bot) #57335a566560235] - deps: upgrade openssl sources to quictls/openssl-3.0.16 (Node.js GitHub Bot) #5733550c4e1da2f] - doc: add missingdeprecatedbadges infs.md(Yukihiro Hasegawa) #57384c3babb4671] - doc: update Xcode version used for arm64 and pkg (Michaël Zasso) #57104784da606a6] - doc: fix link and history ofSourceMapsections (Antoine du Hamel) #57098f5dbceccbe] - test: update error code in tls-psk-circuit for for OpenSSL 3.4 (sebastianas) #56420v18.20.7: 2025-02-20, Version 18.20.7 'Hydrogen' (LTS), @aduh95Compare Source
Notable Changes
ea5eb0e98b] - crypto: update root certificates to NSS 3.107 (Node.js GitHub Bot) #56566Commits
bb2977ca6c] - build: use glob for dependencies of out/Makefile (Richard Lau) #5578992896945b8] - build: support python 3.13 (Chengzhong Wu) #53190ea5eb0e98b] - crypto: update root certificates to NSS 3.107 (Node.js GitHub Bot) #56566d03a23577d] - deps: V8: cherry-pick26fd1df(Shu-yu Guo) #5587353bb21b093] - deps: V8: backportae5a4db(Shu-yu Guo) #558735eb6dfe284] - deps: update zlib to 1.3.0.1-motley-82a5fec (Node.js GitHub Bot) #55980734515a0f7] - deps: update zlib to 1.3.0.1-motley-7e2e4d7 (Node.js GitHub Bot) #54432d64cc98324] - deps: update simdutf to 5.6.4 (Node.js GitHub Bot) #562559eab21dd1d] - deps: update simdutf to 5.6.3 (Node.js GitHub Bot) #559732e3367b46a] - deps: update simdutf to 5.6.2 (Node.js GitHub Bot) #55889df74d66207] - deps: update simdutf to 5.6.1 (Node.js GitHub Bot) #55850ade37ee0b3] - deps: update acorn to 8.14.0 (Node.js GitHub Bot) #55699a3c367adbd] - deps: update corepack to 0.31.0 (Node.js GitHub Bot) #567952cff6a8428] - deps: update corepack to 0.30.0 (Node.js GitHub Bot) #559778b8c9a2cf5] - doc: update macOS and Xcode versions for releases (Michaël Zasso) #56337706af28113] - doc: add "Skip to content" button (Antoine du Hamel) #56750634a6b3a14] - doc: improve accessibility of expandable lists (Antoine du Hamel) #56749f0b60c5bf9] - doc: fix arrow vertical alignment in HTML version (Akash Yeole) #5219391cce27ebb] - doc: remove flicker on page load on dark theme (Dima Demakov) #50942522fbb00a8] - doc: make theme consistent across api and other docs (Dima Demakov) #508771486465520] - doc: save user preference for JS flavor (Vidar Eldøy) #49526d74cff7e59] - doc: rename possibly confusing variable and CSS class (Antoine du Hamel) #495364829d976fe] - doc: add main ARIA landmark to API docs (Rich Trott) #498826c4ce1f1d4] - doc: add navigation ARIA landmark to doc ToC (Rich Trott) #4988233548f8c1f] - doc: add history entries for JSON modules stabilization (Antoine du Hamel) #55855e12bdf6141] - meta: bumpactions/upload-artifactfrom 4.4.3 to 4.6.0 (dependabot[bot]) #568616f44ef388b] - meta: bump actions/upload-artifact from 4.4.0 to 4.4.3 (dependabot[bot]) #55685ae39211117] - meta: bump actions/upload-artifact from 4.3.4 to 4.4.0 (dependabot[bot]) #547034cf80b37c7] - meta: bumpactions/upload-artifactfrom 4.3.3 to 4.3.4 (dependabot[bot]) #541664d402b79cb] - meta: bumpactions/download-artifactfrom 4.1.7 to 4.1.8 (dependabot[bot]) #541671c01f93497] - meta: bump actions/upload-artifact from 4.3.1 to 4.3.3 (dependabot[bot]) #527856558a516ec] - meta: bump actions/download-artifact from 4.1.4 to 4.1.7 (dependabot[bot]) #52784dd70860ec8] - meta: bump actions/download-artifact from 4.1.3 to 4.1.4 (dependabot[bot]) #523144a24d92a45] - meta: bump actions/upload-artifact from 4.3.0 to 4.3.1 (dependabot[bot]) #51941655b9071b9] - meta: bump actions/download-artifact from 4.1.1 to 4.1.3 (dependabot[bot]) #519380e6ad795aa] - meta: bump actions/download-artifact from 4.1.0 to 4.1.1 (dependabot[bot]) #5164461babc5037] - meta: bump actions/upload-artifact from 4.0.0 to 4.3.0 (dependabot[bot]) #516438b16d80029] -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.
This PR was generated by Mend Renovate. View the repository job log.