Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorMyles Borins <mylesborins@google.com>2018-02-21 19:28:13 +0300
committerMyles Borins <mylesborins@google.com>2018-02-22 02:14:41 +0300
commitcb18511275a4138c9db631b3e48a33c7143c5560 (patch)
treedff275cc0e98d7050dfcc49a9c486d5353d2eba1 /doc/api
parent6edf952628359a5e728b80db7b750e7801c3c7b6 (diff)
2018-02-22, Version 9.6.0 (Current)v9.6.0
Notable changes: * async_hooks: - deprecate unsafe emit{Before,After} (Ali Ijaz Sheikh) https://github.com/nodejs/node/pull/18513 - rename PromiseWrap.parentId to PromiseWrap.isChainedPromise (Ali Ijaz Sheikh) https://github.com/nodejs/node/pull/18633 * deps: - update node-inspect to 1.11.3 (Jan Krems) https://github.com/nodejs/node/pull/18354 - ICU 60.2 bump (Steven R. Loomis) https://github.com/nodejs/node/pull/17687 - Introduce ScriptOrModule and HostDefinedOptions to V8 (Jan Krems) https://github.com/nodejs/node/pull/16889 * http: - add options to http.createServer() for `IncomingMessage` and `ServerReponse` (Peter Marton) https://github.com/nodejs/node/pull/15752 * http2: - add http fallback options to .createServer (Peter Marton) https://github.com/nodejs/node/pull/15752 * https: - Adds the remaining options from tls.createSecureContext() to the string generated by Agent#getName(). This allows https.request() to accept the options and generate unique sockets appropriately. (Jeff Principe) https://github.com/nodejs/node/pull/16402 * inspector: - --inspect-brk for es modules (Guy Bedford) https://github.com/nodejs/node/pull/18194 * lib: - allow process kill by signal number (Sam Roberts) https://github.com/nodejs/node/pull/16944 * module: - enable dynamic import (Myles Borins) https://github.com/nodejs/node/pull/18387 - dynamic import is now supported (Jan Krems) https://github.com/nodejs/node/pull/15713 * napi: - add methods to open/close callback scope (Michael Dawson) https://github.com/nodejs/node/pull/18089 * src: - allow --perf-(basic-)?prof in NODE_OPTIONS (Leko) https://github.com/nodejs/node/pull/17600 * vm: - add support for es modules (Gus Caplan) https://github.com/nodejs/node/pull/17560 PR-URL: https://github.com/nodejs/node/pull/18902
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/async_hooks.md6
-rw-r--r--doc/api/http.md2
-rw-r--r--doc/api/http2.md2
-rw-r--r--doc/api/n-api.md4
-rw-r--r--doc/api/perf_hooks.md2
-rw-r--r--doc/api/vm.md2
6 files changed, 9 insertions, 9 deletions
diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md
index 99ee7f4f769..1cd962246b9 100644
--- a/doc/api/async_hooks.md
+++ b/doc/api/async_hooks.md
@@ -673,7 +673,7 @@ class DBQuery extends AsyncResource {
#### `asyncResource.runInAsyncScope(fn[, thisArg, ...args])`
<!-- YAML
-added: REPLACEME
+added: v9.6.0
-->
* `fn` {Function} The function to call in the execution context of this async
@@ -688,7 +688,7 @@ then restore the original execution context.
#### `asyncResource.emitBefore()`
<!-- YAML
-deprecated: REPLACEME
+deprecated: v9.6.0
-->
> Stability: 0 - Deprecated: Use [`asyncResource.runInAsyncScope()`][] instead.
@@ -706,7 +706,7 @@ alternative.
#### `asyncResource.emitAfter()`
<!-- YAML
-deprecated: REPLACEME
+deprecated: v9.6.0
-->
> Stability: 0 - Deprecated: Use [`asyncResource.runInAsyncScope()`][] instead.
diff --git a/doc/api/http.md b/doc/api/http.md
index d2a5f0ce43d..ae789a2886d 100644
--- a/doc/api/http.md
+++ b/doc/api/http.md
@@ -1667,7 +1667,7 @@ Found'`.
<!-- YAML
added: v0.1.13
changes:
- - version: REPLACEME
+ - version: v9.6.0
pr-url: https://github.com/nodejs/node/pull/15752
description: The `options` argument is supported now.
-->
diff --git a/doc/api/http2.md b/doc/api/http2.md
index d89609587f7..1f4eaa6fe55 100644
--- a/doc/api/http2.md
+++ b/doc/api/http2.md
@@ -1662,7 +1662,7 @@ changes:
pr-url: https://github.com/nodejs/node/pull/16676
description: Added the `maxHeaderListPairs` option with a default limit of
128 header pairs.
- - version: REPLACEME
+ - version: v9.6.0
pr-url: https://github.com/nodejs/node/pull/15752
description: Added the `Http1IncomingMessage` and `Http1ServerResponse`
option.
diff --git a/doc/api/n-api.md b/doc/api/n-api.md
index 1b94e71d1a1..59228592e1d 100644
--- a/doc/api/n-api.md
+++ b/doc/api/n-api.md
@@ -3433,7 +3433,7 @@ may be required when implementing custom async behavior that does not use
### *napi_open_callback_scope*
<!-- YAML
-added: REPLACEME
+added: v9.6.0
-->
```C
NAPI_EXTERN napi_status napi_open_callback_scope(napi_env env,
@@ -3458,7 +3458,7 @@ the required scope.
### *napi_close_callback_scope*
<!-- YAML
-added: REPLACEME
+added: v9.6.0
-->
```C
NAPI_EXTERN napi_status napi_close_callback_scope(napi_env env,
diff --git a/doc/api/perf_hooks.md b/doc/api/perf_hooks.md
index 608bee8d574..5bef91eafb7 100644
--- a/doc/api/perf_hooks.md
+++ b/doc/api/perf_hooks.md
@@ -127,7 +127,7 @@ to mark specific significant moments in the Performance Timeline.
### performance.maxEntries
<!-- YAML
-added: REPLACEME
+added: v9.6.0
-->
Value: {number}
diff --git a/doc/api/vm.md b/doc/api/vm.md
index 26ec6d62270..3981c5b76da 100644
--- a/doc/api/vm.md
+++ b/doc/api/vm.md
@@ -45,7 +45,7 @@ console.log(x); // 1; y is not defined.
## Class: vm.Module
<!-- YAML
-added: REPLACEME
+added: v9.6.0
-->
> Stability: 1 - Experimental