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:
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