summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorMyles Borins <mylesborins@google.com>2017-12-12 03:09:37 -0500
committerMyles Borins <mylesborins@google.com>2017-12-12 15:59:29 -0500
commita893e79a69dd92a979d8a3a9282e59120cb27a69 (patch)
tree99ac62d39ec552e4b1b2e17c9698bf96a5c27546 /doc/api
parentf3cd53751ba3f917a0996a8f38c991242a8fbc76 (diff)
downloadandroid-node-v8-a893e79a69dd92a979d8a3a9282e59120cb27a69.tar.gz
android-node-v8-a893e79a69dd92a979d8a3a9282e59120cb27a69.tar.bz2
android-node-v8-a893e79a69dd92a979d8a3a9282e59120cb27a69.zip
2017-12-12 Version 9.3.0 (Current)
Notable changes: * async\_hooks: - add trace events to async_hooks (Andreas Madsen) https://github.com/nodejs/node/pull/15538 - add provider types for net server (Andreas Madsen) https://github.com/nodejs/node/pull/17157 * console: - console.debug can now be used outside of the inspector (Benjamin Zaslavsky) https://github.com/nodejs/node/pull/17033 * deps: - upgrade libuv to 1.18.0 (cjihrig) https://github.com/nodejs/node/pull/17282 - patch V8 to 6.2.414.46 (Myles Borins) https://github.com/nodejs/node/pull/17206 * module: - module.builtinModules will return a list of built in modules (Jon Moss) https://github.com/nodejs/node/pull/16386 * n-api: - add helper for addons to get the event loop (Anna Henningsen) https://github.com/nodejs/node/pull/17109 * process: - process.setUncaughtExceptionCaptureCallback can now be used to customize behavior for `--abort-on-uncaught-exception` (Anna Henningsen) https://github.com/nodejs/node/pull/17159 - A signal handler is now able to receive the signal code that triggered the handler. (Robert Rossmann) https://github.com/nodejs/node/pull/15606 * src: - embedders can now use Node::CreatePlatform to create an instance of NodePlatform (Cheng Zhao) https://github.com/nodejs/node/pull/16981 * stream: - writable.writableHighWaterMark and readable.readableHighWaterMark will return the values the stream object was instantiated with (Calvin Metcalf) https://github.com/nodejs/node/pull/12860 * **Added new collaborators** * [maclover7](https://github.com/maclover7) Jon Moss * [guybedford](https://github.com/guybedford) Guy Bedford * [hashseed](https://github.com/hashseed) Yang Guo PR-URL: https://github.com/nodejs/node/pull/17631
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/console.md4
-rw-r--r--doc/api/https.md2
-rw-r--r--doc/api/modules.md2
-rw-r--r--doc/api/n-api.md2
-rw-r--r--doc/api/process.md4
-rw-r--r--doc/api/stream.md4
-rw-r--r--doc/api/tls.md4
7 files changed, 11 insertions, 11 deletions
diff --git a/doc/api/console.md b/doc/api/console.md
index 6dac2a8a5e..5722f36284 100644
--- a/doc/api/console.md
+++ b/doc/api/console.md
@@ -241,7 +241,7 @@ undefined
<!-- YAML
added: v8.0.0
changes:
- - version: REPLACEME
+ - version: 9.3.0
pr-url: https://github.com/nodejs/node/pull/17033
description: "`console.debug` is now an alias for `console.log`."
-->
@@ -280,7 +280,7 @@ Defaults to `false`. Colors are customizable; see
<!-- YAML
added: v8.0.0
changes:
- - version: REPLACEME
+ - version: 9.3.0
pr-url: https://github.com/nodejs/node/pull/17152
description: "`console.dirxml` now calls `console.log` for its arguments."
-->
diff --git a/doc/api/https.md b/doc/api/https.md
index 18b6f40305..cb22873a01 100644
--- a/doc/api/https.md
+++ b/doc/api/https.md
@@ -150,7 +150,7 @@ Global instance of [`https.Agent`][] for all HTTPS client requests.
<!-- YAML
added: v0.3.6
changes:
- - version: REPLACEME
+ - version: v9.3.0
pr-url: https://github.com/nodejs/node/pull/14903
description: The `options` parameter can now include `clientCertEngine`.
- version: v7.5.0
diff --git a/doc/api/modules.md b/doc/api/modules.md
index cdb591563c..bf3af6373d 100644
--- a/doc/api/modules.md
+++ b/doc/api/modules.md
@@ -833,7 +833,7 @@ via `require('module')`.
### module.builtinModules
<!-- YAML
-added: REPLACEME
+added: v9.3.0
-->
* {string[]}
diff --git a/doc/api/n-api.md b/doc/api/n-api.md
index 0843165f07..ad6e3c7eea 100644
--- a/doc/api/n-api.md
+++ b/doc/api/n-api.md
@@ -3695,7 +3695,7 @@ a specific `napi_env`.
### napi_get_uv_event_loop
<!-- YAML
-added: REPLACEME
+added: v9.3.0
-->
```C
NAPI_EXTERN napi_status napi_get_uv_event_loop(napi_env env,
diff --git a/doc/api/process.md b/doc/api/process.md
index 8c91a6c9d7..60545ff062 100644
--- a/doc/api/process.md
+++ b/doc/api/process.md
@@ -1137,7 +1137,7 @@ or Android).
## process.hasUncaughtExceptionCaptureCallback()
<!-- YAML
-added: REPLACEME
+added: v9.3.0
-->
* Returns: {boolean}
@@ -1647,7 +1647,7 @@ or Android).
## process.setUncaughtExceptionCaptureCallback(fn)
<!-- YAML
-added: REPLACEME
+added: v9.3.0
-->
* `fn` {Function|null}
diff --git a/doc/api/stream.md b/doc/api/stream.md
index dec3820222..f3780ee4c4 100644
--- a/doc/api/stream.md
+++ b/doc/api/stream.md
@@ -439,7 +439,7 @@ See also: [`writable.cork()`][].
##### writable.writableHighWaterMark
<!-- YAML
-added: REPLACEME
+added: v9.3.0
-->
Return the value of `highWaterMark` passed when constructing this
@@ -889,7 +889,7 @@ options.
##### readable.readableHighWaterMark
<!-- YAML
-added: REPLACEME
+added: v9.3.0
-->
Return the value of `highWaterMark` passed when constructing this
diff --git a/doc/api/tls.md b/doc/api/tls.md
index bcf2b5b34c..50535150c2 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -961,7 +961,7 @@ port or host argument.
<!-- YAML
added: v0.11.13
changes:
- - version: REPLACEME
+ - version: v9.3.0
pr-url: https://github.com/nodejs/node/pull/14903
description: The `options` parameter can now include `clientCertEngine`.
- version: v7.3.0
@@ -1076,7 +1076,7 @@ publicly trusted list of CAs as given in
<!-- YAML
added: v0.3.2
changes:
- - version: REPLACEME
+ - version: v9.3.0
pr-url: https://github.com/nodejs/node/pull/14903
description: The `options` parameter can now include `clientCertEngine`.
- version: v8.0.0