-
Notifications
You must be signed in to change notification settings - Fork 18
chore: Update eslint-plugin-jsdoc from v50 to v61
#429
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,7 +42,7 @@ | |
| "eslint": "^9.11.0", | ||
| "eslint-config-prettier": "^9.1.0", | ||
| "eslint-plugin-import-x": "^4.3.0", | ||
| "eslint-plugin-jsdoc": "^50.2.4", | ||
| "eslint-plugin-jsdoc": "^61.4.1", | ||
| "eslint-plugin-prettier": "^5.2.1", | ||
| "eslint-plugin-promise": "^7.1.0", | ||
| "prettier": "^3.3.3", | ||
|
|
@@ -52,7 +52,7 @@ | |
| "eslint": "^9.11.0", | ||
| "eslint-config-prettier": "^9.1.0", | ||
| "eslint-plugin-import-x": "^4.3.0", | ||
| "eslint-plugin-jsdoc": "^50.2.4", | ||
| "eslint-plugin-jsdoc": "^61.4.1", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Node.js version incompatibility with updated peer dependencyThe Additional Locations (2) |
||
| "eslint-plugin-prettier": "^5.2.1", | ||
| "eslint-plugin-promise": "^7.1.0", | ||
| "prettier": "^3.3.3" | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Node.js version incompatibility with eslint-plugin-jsdoc peer dependency
The
enginesfield claims support for Node.js^18.18 || >=20, but according to the PR description,eslint-plugin-jsdocv51.0.0+ (now updated to v61.4.1) requires Node.js v20.11.0+. Users on Node.js 18.x or Node.js 20.0.0-20.10.x will see the package claims compatibility but encounter runtime failures when the jsdoc plugin loads. The engines field needs to be updated to reflect the actual minimum Node.js requirement of v20.11.0.Additional Locations (1)
packages/typescript/package.json#L63-L66There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point. I even listed this in the change notes.
We'll have to put this on pause and drop support for v18 first then.