-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Drop node.js v8 support #4164
Drop node.js v8 support #4164
Conversation
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.
Please also adapt our linting rules in "mocha/.eslintrc.yml":
replace ecmaVersion: 2017
by ecmaVersion: 2018
Suggest by @juergba at mochajs#4164
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.
Please rebase, we made some changes to ".eslintrc.yml".
Suggest by @juergba at mochajs#4164
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.
@UlisesGascon thank you
We will wait with merging this PR to master
, Mocha is not yet ready for the next major release.
(You're everywhere, @UlisesGascon! :) |
Because of the bump in mocha version to 8.0, we can no longer run tests on Node.js v8.x and below: mochajs/mocha#4164 The fibers package at version 5.0 also doesn't support Node.js v10.x or lower, although it seems to work fine in my limited testing.
Because of the bump in mocha version to 8.0, we can no longer run tests on Node.js v8.x and below: mochajs/mocha#4164 The fibers package at version 5.0 also doesn't support Node.js v10.x or lower, although it seems to work fine in my limited testing. The commander package requires node 6 or greater: tj/commander.js#1053
Description of the Change
I removed support to v8 in CI and documentation as explained in #4163
Alternate Designs
N/A
Why should this be in core?
Bump minimum Nodejs version
Benefits
No need to worry about support for Node v8
Possible Drawbacks
N/A
Applicable issues
Close #4163