-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
Upgrade to Node 12.x #47968
Comments
Pinging @elastic/kibana-operations (Team:Operations) |
I think there is a strong likelihood that Node 10 will be EOL before we release 9.0, so I think we need to upgrade to Node 12 in both 7.x and 8.0. It would need to block 8.0 unless we were OK with rolling out a major node upgrade in a 7.x patch, which I don't think we should be. |
Node.js 12 thoughts from a security perspective: TL;DR: 👍 OpenSSLNode.js 12 updates OpenSSL to v1.1.1b (nodejs/node#26327). TLSNode.js 12 adds support for TLSv1.3 (nodejs/node#26209). llhttpNode.js 12 ships with a brand new HTTP parser called llhttp (nodejs/node#24870). The old http_parser was a bit of a mess and wasn't spec-compliant and had historically contained a few security bugs. And since nobody wanted to touch it there was a higer-than-normal risk of security-related issues hiding inside it. You can tell Node.js 12 to keep using the old parser using the command line flag |
I think there is a strong likelihood that Node.js 12 will no longer be Active LTS once we release 8.0. So we should consider jumping directly to Node.js 14 if this is targeted for the v8.0 release. Node.js 14 initial release: 2020-04-21 |
So to be clear, we're expecting to use Node 14.x LTS in both 8.0 and 7.10? |
@joshdover that is correct since 7.10 is a long supported release, assuming 7.10 stays the last minor. |
I see this is being planned on for the near-term. Just wanted to point out that v14 is supposed to be released on April 21st, so it may make sense to wait just a few more weeks to avoid two major upgrades in the 7.x series? |
I'll give this one a try now just to see if I can get an overview of how much work there is. It's probably going to be easier to take this in two steps and go to v12 first and then to v14. |
Node 12 is the next LTS release. It contains quite a few changes which will effect our project, including the changes to how heap limits are set. We need to understand the effect this upgrade has on Kibana and work to upgrade.
The text was updated successfully, but these errors were encountered: