@@ -461,6 +461,10 @@ connection is open.
461
461
### new tls.TLSSocket(socket[ , options] )
462
462
<!-- YAML
463
463
added: v0.11.4
464
+ changes:
465
+ - version: v5.0.0
466
+ pr-url: https://github.com/nodejs/node/pull/2564
467
+ description: ALPN options are supported now.
464
468
-->
465
469
466
470
* ` socket ` {net.Socket} An instance of [ ` net.Socket ` ] [ ]
@@ -770,6 +774,13 @@ argument.
770
774
## tls.connect(options[ , callback] )
771
775
<!-- YAML
772
776
added: v0.11.3
777
+ changes:
778
+ - version: v5.3.0, v4.7.0
779
+ pr-url: https://github.com/nodejs/node/pull/4246
780
+ description: The `secureContext` option is supported now.
781
+ - version: v5.0.0
782
+ pr-url: https://github.com/nodejs/node/pull/2564
783
+ description: ALPN options are supported now.
773
784
-->
774
785
775
786
* ` options ` {Object}
@@ -883,6 +894,16 @@ socket.on('end', () => {
883
894
## tls.createSecureContext(options)
884
895
<!-- YAML
885
896
added: v0.11.13
897
+ changes:
898
+ - version: v7.3.0
899
+ pr-url: https://github.com/nodejs/node/pull/10294
900
+ description: If the `key` option is an array, individual entries do not
901
+ need a `passphrase` property anymore. Array entries can also
902
+ just be `string`s or `Buffer`s now.
903
+ - version: v5.2.0
904
+ pr-url: https://github.com/nodejs/node/pull/4099
905
+ description: The `ca` option can now be a single string containing multiple
906
+ CA certificates.
886
907
-->
887
908
888
909
* ` options ` {Object}
@@ -972,6 +993,10 @@ publicly trusted list of CAs as given in
972
993
## tls.createServer([ options] [ , secureConnectionListener ] )
973
994
<!-- YAML
974
995
added: v0.3.2
996
+ changes:
997
+ - version: v5.0.0
998
+ pr-url: https://github.com/nodejs/node/pull/2564
999
+ description: ALPN options are supported now.
975
1000
-->
976
1001
977
1002
* ` options ` {Object}
@@ -1146,6 +1171,10 @@ certificate used is properly authorized.
1146
1171
<!-- YAML
1147
1172
added: v0.3.2
1148
1173
deprecated: v0.11.3
1174
+ changes:
1175
+ - version: v5.0.0
1176
+ pr-url: https://github.com/nodejs/node/pull/2564
1177
+ description: ALPN options are supported now.
1149
1178
-->
1150
1179
1151
1180
> Stability: 0 - Deprecated: Use [ ` tls.TLSSocket ` ] [ ] instead.
0 commit comments