-
-
Notifications
You must be signed in to change notification settings - Fork 70
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
New: Drop supports for Node.js 8.x and 11.x #44
Conversation
Hi.
Those may be useful for our asynchronous API #40. On the other hand, |
It looks like 10.17.0 was only released on October 22, 2019, whereas 10.12.0 was released October 10, 2018 (more than 1 year before). This does feel like a significant difference. I would probably lean towards "10.17.0 is too new", unless there are huge benefits to consuming that version in 7.0.0. You mentioned async ESLint, but how important are these changes to async ESLint? Is there another path forward that we could use with 10.12.0 (even if it's a little more painful to write)? |
My impression in the past has been that we look at any features we might want to use in the latest release of each supported major version, and then support the lowest minor version in which those features exist. Since we at least won't release our next major until January when Node.js v8 is EOL, that gives people ~2.5 months minimum since 10.17 was released, which doesn't seem too quick. |
A few months is exceedingly quick for companies, for whom upgrading node is often a slow and expensive - and thus infrequent - process. |
Thank you.
Since streams got async iteration support, I thought that to use streams rather than just async iterators is more suitable for However, because Node provides interop APIs such as I will keep this RFC as-is. |
This RFC is for ESLint 7.0.0 (probably we will start to publish alpha in December 2019 or January 2020).
Summary
This RFC drops supports for Node.js 8.x and 11.x because of end-of-life. (See nodejs/release to check the release schedule of Node.js)
Related Issues