summaryrefslogtreecommitdiff
path: root/doc/api/tls.md
diff options
context:
space:
mode:
authorRuben Bridgewater <ruben@bridgewater.de>2019-05-21 13:49:35 +0200
committerRuben Bridgewater <ruben@bridgewater.de>2019-05-21 15:28:56 +0200
commit20c11bed06dbcfa1b8e71f2ed1bee7c2164cc656 (patch)
treec5192e335cee0a6627ea9f4b8f00dff9dceaf68c /doc/api/tls.md
parent9f5b6900e788afce29d27b71d167f188064e4ede (diff)
downloadnode-new-20c11bed06dbcfa1b8e71f2ed1bee7c2164cc656.tar.gz
2019-05-21, Version 12.3.0 (Current)v12.3.0v12.3.0-proposal
Notable changes: * esm: * Added the `--experimental-wasm-modules` flag to support WebAssembly modules (Myles Borins & Guy Bedford) https://github.com/nodejs/node/pull/27659 * process: * Log errors using `util.inspect` in case of fatal exceptions (Ruben Bridgewater) https://github.com/nodejs/node/pull/27243 * repl: * Add `process.on('uncaughtException')` support (Ruben Bridgewater) https://github.com/nodejs/node/pull/27151 * stream: * Implemented `Readable.from` async iterator utility (Guy Bedford) https://github.com/nodejs/node/pull/27660 * tls: * Expose built-in root certificates (Ben Noordhuis) https://github.com/nodejs/node/pull/26415 * Support `net.Server` options (Luigi Pinca) https://github.com/nodejs/node/pull/27665 * Expose `keylog` event on TLSSocket (Alba Mendez) https://github.com/nodejs/node/pull/27654 * worker: * Added the ability to unshift messages from the `MessagePort` (Anna Henningsen) https://github.com/nodejs/node/pull/27294 PR-URL: https://github.com/nodejs/node/pull/27799
Diffstat (limited to 'doc/api/tls.md')
-rw-r--r--doc/api/tls.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/tls.md b/doc/api/tls.md
index 3edb604071..4e0122f11f 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -336,7 +336,7 @@ connections using TLS or SSL.
### Event: 'keylog'
<!-- YAML
-added: REPLACEME
+added: v12.3.0
-->
* `line` {Buffer} Line of ASCII text, in NSS `SSLKEYLOGFILE` format.
@@ -654,7 +654,7 @@ Construct a new `tls.TLSSocket` object from an existing TCP socket.
### Event: 'keylog'
<!-- YAML
-added: REPLACEME
+added: v12.3.0
-->
* `line` {Buffer} Line of ASCII text, in NSS `SSLKEYLOGFILE` format.
@@ -1486,7 +1486,7 @@ publicly trusted list of CAs as given in
<!-- YAML
added: v0.3.2
changes:
- - version: REPLACEME
+ - version: v12.3.0
pr-url: https://github.com/nodejs/node/pull/27665
description: The `options` parameter now supports `net.createServer()`
options.
@@ -1602,7 +1602,7 @@ console.log(tls.getCiphers()); // ['aes128-gcm-sha256', 'aes128-sha', ...]
## tls.rootCertificates
<!-- YAML
-added: REPLACEME
+added: v12.3.0
-->
* {string[]}