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
diff options
context:
space:
mode:
authorShelley Vohr <shelley.vohr@gmail.com>2020-08-10 08:10:24 +0300
committerShelley Vohr <shelley.vohr@gmail.com>2020-08-11 19:40:48 +0300
commit6e1f6ec57398689740ab29acb6ce49bc94b95c79 (patch)
treed00a19ef678e4b9b6aeb38933dcda2cb542d120a /doc/api/async_hooks.md
parent9f47e5a7f74c866571512bef91e661b69a18a03e (diff)
2020-08-11, Version 14.8.0 (Current)
Notable changes: async_hooks: * (SEMVER-MINOR) add AsyncResource.bind utility (James M Snell) https://github.com/nodejs/node/pull/34574 doc: * add Ricky Zhou to collaborators (rickyes) https://github.com/nodejs/node/pull/34676 * add release key for Ruy Adorno (Ruy Adorno) https://github.com/nodejs/node/pull/34628 * add DerekNonGeneric to collaborators (Derek Lewis) https://github.com/nodejs/node/pull/34602 module: * (SEMVER-MINOR) unflag Top-Level Await (Myles Borins) https://github.com/nodejs/node/pull/34558 n-api: * (SEMVER-MINOR) support type-tagging objects (Gabriel Schulhof) https://github.com/nodejs/node/pull/28237 n-api,src: * (SEMVER-MINOR) provide asynchronous cleanup hooks (Anna Henningsen) https://github.com/nodejs/node/pull/34572 PR-URL: https://github.com/nodejs/node/pull/34704
Diffstat (limited to 'doc/api/async_hooks.md')
-rw-r--r--doc/api/async_hooks.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md
index 1c8c733069e..7b535db3d4f 100644
--- a/doc/api/async_hooks.md
+++ b/doc/api/async_hooks.md
@@ -731,7 +731,7 @@ class DBQuery extends AsyncResource {
#### Static method: `AsyncResource.bind(fn[, type])`
<!-- YAML
-added: REPLACEME
+added: v14.8.0
-->
* `fn` {Function} The function to bind to the current execution context.
@@ -745,7 +745,7 @@ the `AsyncResource` to which the function is bound.
#### `asyncResource.bind(fn)`
<!-- YAML
-added: REPLACEME
+added: v14.8.0
-->
* `fn` {Function} The function to bind to the current `AsyncResource`.