Skip to content

Commit 0dc6ff7

Browse files
committed
doc: add changelogs for tls
PR-URL: nodejs#11489 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
1 parent a70aa58 commit 0dc6ff7

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

doc/api/tls.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,10 @@ connection is open.
461461
### new tls.TLSSocket(socket[, options])
462462
<!-- YAML
463463
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.
464468
-->
465469

466470
* `socket` {net.Socket} An instance of [`net.Socket`][]
@@ -744,6 +748,13 @@ decrease overall server throughput.
744748
## tls.connect(options[, callback])
745749
<!-- YAML
746750
added: v0.11.3
751+
changes:
752+
- version: v5.3.0, v4.7.0
753+
pr-url: https://github.com/nodejs/node/pull/4246
754+
description: The `secureContext` option is supported now.
755+
- version: v5.0.0
756+
pr-url: https://github.com/nodejs/node/pull/2564
757+
description: ALPN options are supported now.
747758
-->
748759

749760
* `options` {Object}
@@ -888,6 +899,16 @@ or host argument.
888899
## tls.createSecureContext(options)
889900
<!-- YAML
890901
added: v0.11.13
902+
changes:
903+
- version: v7.3.0
904+
pr-url: https://github.com/nodejs/node/pull/10294
905+
description: If the `key` option is an array, individual entries do not
906+
need a `passphrase` property anymore. Array entries can also
907+
just be `string`s or `Buffer`s now.
908+
- version: v5.2.0
909+
pr-url: https://github.com/nodejs/node/pull/4099
910+
description: The `ca` option can now be a single string containing multiple
911+
CA certificates.
891912
-->
892913

893914
* `options` {Object}
@@ -977,6 +998,10 @@ publicly trusted list of CAs as given in
977998
## tls.createServer([options][, secureConnectionListener])
978999
<!-- YAML
9791000
added: v0.3.2
1001+
changes:
1002+
- version: v5.0.0
1003+
pr-url: https://github.com/nodejs/node/pull/2564
1004+
description: ALPN options are supported now.
9801005
-->
9811006

9821007
* `options` {Object}
@@ -1151,6 +1176,10 @@ certificate used is properly authorized.
11511176
<!-- YAML
11521177
added: v0.3.2
11531178
deprecated: v0.11.3
1179+
changes:
1180+
- version: v5.0.0
1181+
pr-url: https://github.com/nodejs/node/pull/2564
1182+
description: ALPN options are supported now.
11541183
-->
11551184

11561185
> Stability: 0 - Deprecated: Use [`tls.TLSSocket`][] instead.

0 commit comments

Comments
 (0)