summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorRuben Bridgewater <ruben@bridgewater.de>2018-12-05 21:29:36 +0100
committerRuben Bridgewater <ruben@bridgewater.de>2018-12-07 18:50:20 +0100
commitbcef949c931f54e3d8ae2a1701f2538262e6bec9 (patch)
tree8ec31e8c68d7b23f962771e938a37263f318fa79 /doc/api
parent4eee55d354549d08c8224f151159fbcd7d6b2b6e (diff)
downloadandroid-node-v8-bcef949c931f54e3d8ae2a1701f2538262e6bec9.tar.gz
android-node-v8-bcef949c931f54e3d8ae2a1701f2538262e6bec9.tar.bz2
android-node-v8-bcef949c931f54e3d8ae2a1701f2538262e6bec9.zip
2018-12-07, Version 11.4.0 (Current)
Notable Changes: * console,util: * `console` functions now handle symbols as defined in the spec. https://github.com/nodejs/node/pull/23708 * The inspection `depth` default is now back at 2. https://github.com/nodejs/node/pull/24326 * dgram,net: * Added ipv6Only option for `net` and `dgram`. https://github.com/nodejs/node/pull/23798 * http: * Chosing between the http parser is now possible per runtime flag. https://github.com/nodejs/node/pull/24739 * readline: * The `readline` module now supports async iterators. https://github.com/nodejs/node/pull/23916 * repl: * The multiline history feature is removed. https://github.com/nodejs/node/pull/24804 * tls: * Added min/max protocol version options. https://github.com/nodejs/node/pull/24405 * The X.509 public key info now includes the RSA bit size and the elliptic curve. https://github.com/nodejs/node/pull/24358 * url: * `pathToFileURL()` now supports LF, CR and TAB. https://github.com/nodejs/node/pull/23720 * Windows: * Tools are not installed using Boxstarter anymore. https://github.com/nodejs/node/pull/24677 * The install-tools scripts or now included in the dist. https://github.com/nodejs/node/pull/24233 * Added new collaborator: * [antsmartian](https://github.com/antsmartian) - Anto Aravinth. https://github.com/nodejs/node/pull/24655 PR-URL: https://github.com/nodejs/node/pull/24854
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/cli.md2
-rw-r--r--doc/api/dgram.md2
-rw-r--r--doc/api/errors.md2
-rw-r--r--doc/api/net.md2
-rw-r--r--doc/api/readline.md2
-rw-r--r--doc/api/stream.md4
-rw-r--r--doc/api/tls.md4
-rw-r--r--doc/api/util.md7
8 files changed, 14 insertions, 11 deletions
diff --git a/doc/api/cli.md b/doc/api/cli.md
index aa4d28c9fe..0e8442b336 100644
--- a/doc/api/cli.md
+++ b/doc/api/cli.md
@@ -121,7 +121,7 @@ Force FIPS-compliant crypto on startup. (Cannot be disabled from script code.)
### `--http-parser=library`
<!-- YAML
-added: REPLACEME
+added: v11.4.0
-->
Chooses an HTTP parser library. Available values are:
diff --git a/doc/api/dgram.md b/doc/api/dgram.md
index 644dd3b15c..01ec28e63c 100644
--- a/doc/api/dgram.md
+++ b/doc/api/dgram.md
@@ -601,7 +601,7 @@ changes:
pr-url: https://github.com/nodejs/node/pull/13623
description: The `recvBufferSize` and `sendBufferSize` options are
supported now.
- - version: REPLACEME
+ - version: v11.4.0
pr-url: https://github.com/nodejs/node/pull/23798
description: The `ipv6Only` option is supported.
-->
diff --git a/doc/api/errors.md b/doc/api/errors.md
index a766999e43..6c255d0710 100644
--- a/doc/api/errors.md
+++ b/doc/api/errors.md
@@ -1874,7 +1874,7 @@ Creation of a [`zlib`][] object failed due to incorrect configuration.
### HPE_HEADER_OVERFLOW
<!-- YAML
changes:
- - version: REPLACEME
+ - version: v11.4.0
pr-url: https://github.com/nodejs/node/commit/186035243fad247e3955f
description: Max header size in `http_parser` was set to 8KB.
-->
diff --git a/doc/api/net.md b/doc/api/net.md
index e634ef4bf3..4243d68f87 100644
--- a/doc/api/net.md
+++ b/doc/api/net.md
@@ -253,7 +253,7 @@ Listening on a file descriptor is not supported on Windows.
<!-- YAML
added: v0.11.14
changes:
- - version: REPLACEME
+ - version: v11.4.0
pr-url: https://github.com/nodejs/node/pull/23798
description: The `ipv6Only` option is supported.
-->
diff --git a/doc/api/readline.md b/doc/api/readline.md
index 17640ae170..41e1da0a6a 100644
--- a/doc/api/readline.md
+++ b/doc/api/readline.md
@@ -311,7 +311,7 @@ The `rl.write()` method will write the data to the `readline` `Interface`'s
### rl\[Symbol.asyncIterator\]()
<!-- YAML
-added: REPLACEME
+added: v11.4.0
-->
> Stability: 1 - Experimental
diff --git a/doc/api/stream.md b/doc/api/stream.md
index 81f3823f44..5441cb0372 100644
--- a/doc/api/stream.md
+++ b/doc/api/stream.md
@@ -465,7 +465,7 @@ See also: [`writable.cork()`][].
##### writable.writable
<!-- YAML
-added: REPLACEME
+added: v11.4.0
-->
* {boolean}
@@ -1024,7 +1024,7 @@ been emitted will return `null`. No runtime error will be raised.
##### readable.readable
<!-- YAML
-added: REPLACEME
+added: v11.4.0
-->
* {boolean}
diff --git a/doc/api/tls.md b/doc/api/tls.md
index 619f89c429..bd098b98d4 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -651,7 +651,7 @@ certificate.
#### Certificate Object
<!-- YAML
changes:
- - version: REPLACEME
+ - version: v11.4.0
pr-url: https://github.com/nodejs/node/pull/24358
description: Support Elliptic Curve public key info.
-->
@@ -1054,7 +1054,7 @@ argument.
<!-- YAML
added: v0.11.13
changes:
- - version: REPLACEME
+ - version: v11.4.0
pr-url: https://github.com/nodejs/node/pull/24405
description: The `minVersion` and `maxVersion` can be used to restrict
the allowed TLS protocol versions.
diff --git a/doc/api/util.md b/doc/api/util.md
index cbbeb9183b..49e3f32289 100644
--- a/doc/api/util.md
+++ b/doc/api/util.md
@@ -183,7 +183,7 @@ property take precedence over `--trace-deprecation` and
<!-- YAML
added: v0.5.3
changes:
- - version: REPLACEME
+ - version: v11.4.0
pr-url: https://github.com/nodejs/node/pull/23708
description: The `%d`, `%f` and `%i` specifiers now support Symbols
properly.
@@ -198,6 +198,9 @@ changes:
first argument. This change removes previously present quotes
from strings that were being output when the first argument
was not a string.
+ - version: v11.4.0
+ pr-url: https://github.com/nodejs/node/pull/24806
+ description: The `%o` specifier's `depth` has default depth of 4 again.
- version: v11.0.0
pr-url: https://github.com/nodejs/node/pull/17907
description: The `%o` specifier's `depth` option will now fall back to the
@@ -386,7 +389,7 @@ stream.write('With ES6');
<!-- YAML
added: v0.3.0
changes:
- - version: REPLACEME
+ - version: v11.4.0
pr-url: https://github.com/nodejs/node/pull/24326
description: The `depth` default changed back to `2`.
- version: v11.0.0