-
Notifications
You must be signed in to change notification settings - Fork 167
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
doc: update Windows and VS support tables #3049
Conversation
This removes rows for unsupported Node.js versions and removes support for building addons with VS2015 starting with Node.js 19.0.0.
I think this is something we should do regardless of issues with V8, to prepare users for Node.js 20. Visual Studio 2015 will be out of support on Oct 14, 2025, before the 20.x EoL. |
@nodejs/build |
@Trott Can you merge this ? thx |
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.
For the CI to reflect this VersionSelectorScript.groovy will need to be updated to exclude the configurations for VS2015
build/jenkins/scripts/VersionSelectorScript.groovy
Lines 87 to 92 in b169b80
// VS versions supported to build add-ons | |
[ /vs2013-COMPILED_BY/, testType, gte(9) ], | |
[ /vs2015-COMPILED_BY/, testType, noVer ], | |
[ /vcbt2015-COMPILED_BY/, testType, noVer ], | |
[ /vs2017-COMPILED_BY/, testType, lt(8) ], | |
[ /vs2019-COMPILED_BY/, testType, lt(12) ], |
@richardlau I just updated that file. |
I this deployed to jenkins automatically? |
The CI always pulls the version of the selector script from main of this repository. |
This removes rows for unsupported Node.js versions and removes support
for building addons with VS2015 starting with Node.js 19.0.0.