-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
process: move process.features initialization into node.js #25239
Conversation
277a2ea
to
a7f3f89
Compare
Use `internalBinding('config')` to shim the legacy `process.features`.
a7f3f89
to
bc1ceb8
Compare
debug: isDebugBuild, | ||
uv: true, | ||
ipv6: true, // TODO(bnoordhuis) ping libuv | ||
tls_alpn: hasOpenSSL, |
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.
This should also be available as process.versions.openssl
even though that's not the purpose of that property - I wonder if we should just use that instead?
Resume CI: https://ci.nodejs.org/job/node-test-pull-request/19835/ ✔️ |
Landed in 39a2ac4 |
Use `internalBinding('config')` to shim the legacy `process.features`. PR-URL: #25239 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]>
Should this be backported to |
Use `internalBinding('config')` to shim the legacy `process.features`. PR-URL: nodejs#25239 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]>
This applies cleanly now :) |
Use `internalBinding('config')` to shim the legacy `process.features`. PR-URL: #25239 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]>
Use `internalBinding('config')` to shim the legacy `process.features`. PR-URL: nodejs#25239 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]>
Use `internalBinding('config')` to shim the legacy `process.features`. PR-URL: nodejs#25239 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]>
Use
internalBinding('config')
to shim the legacyprocess.features
.Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes