Uh oh!
There was an error while loading. Please reload this page.
crypto: fix error in deprecation message - #6344
Conversation
jasnell
commented
Apr 22, 2016
LGTM |
7da4fd4 to
c7066fbCompareThe deprecation message for `crypto.Credentials` says to use `tls.createSecureContext` but the correct property to use is `tls.SecureContext()`. Fix the deprecation message and add a test that checks the mappings of deprecated properties and their warning messages.
Trott
commented
Apr 27, 2016
Trott
commented
Apr 28, 2016
CI failures are one buildbot failure and the current problematic tick processor issue on OS X. Unrelated, of course. |
The deprecation message for `crypto.Credentials` says to use `tls.createSecureContext` but the correct property to use is `tls.SecureContext()`. Fix the deprecation message and add a test that checks the mappings of deprecated properties and their warning messages. PR-URL: nodejs#6344 Reviewed-By: James M Snell <jasnell@gmail.com>
Trott
commented
Apr 28, 2016
Landed in 296bfd2 |
The deprecation message for `crypto.Credentials` says to use `tls.createSecureContext` but the correct property to use is `tls.SecureContext()`. Fix the deprecation message and add a test that checks the mappings of deprecated properties and their warning messages. PR-URL: #6344 Reviewed-By: James M Snell <jasnell@gmail.com>
MylesBorins
commented
Jun 1, 2016
@Trott lts? |
Trott
commented
Jun 1, 2016
@thealphanerd Yes. |
@Trott test failure on v4.x-staging, can you manually backport? edit: please include all original meta data |
Trott
commented
Jun 2, 2016
@thealphanerd Is the test failing because |
MylesBorins
commented
Jun 2, 2016
|
Trott
commented
Jun 2, 2016
This depends on So the test needs to be re-written for LTS. Or we could choose not to land. Or you could just land the deprecation message text change and not land the test. |
MylesBorins
commented
Jul 11, 2016
@Trott I'm leaving this as don't land for now. Please feel free to open a new PR |
Checklist
Affected core subsystem(s)
crypto test
Description of change
The deprecation message for
crypto.Credentialssays to usetls.createSecureContextbut the correct property to use istls.SecureContext().Fix the deprecation message and add a test that checks the mappings of
deprecated properties and their warning messages.
@nodejs/crypto