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:
authorDanielle Adams <adamzdanielle@gmail.com>2021-03-16 17:46:04 +0300
committerDanielle Adams <adamzdanielle@gmail.com>2021-03-18 01:16:45 +0300
commit3b3b02f8bbf99e2a746eb264ef4a0f864346a1a5 (patch)
treee3db59573d724bfdbd3e4acdfb41201f2acbb445 /doc/api/worker_threads.md
parent90008f8b35d3ff4c3e7c06950670c1d0ea3f22ef (diff)
2021-03-17, Version 15.12.0 (Current)
PR-URL: https://github.com/nodejs/node/pull/37766 Notable changes: * crypto: * add optional callback to crypto.sign and crypto.verify (Filip Skokan) https://github.com/nodejs/node/pull/37500 * support JWK objects in create\*Key (Filip Skokan) https://github.com/nodejs/node/pull/37254 * deps: * update to cjs-module-lexer@1.1.0 (Guy Bedford) https://github.com/nodejs/node/pull/37712 * switch openssl to quictls/openssl (James M Snell) https://github.com/nodejs/node/pull/37601 * fs: * improve fsPromises writeFile performance (Nitzan Uziely) https://github.com/nodejs/node/pull/37610 * improve fsPromises readFile performance (Nitzan Uziely) https://github.com/nodejs/node/pull/37608 * lib: * implement AbortSignal.abort() (James M Snell) https://github.com/nodejs/node/pull/37693 * node-api: * define version 8 (Gabriel Schulhof) https://github.com/nodejs/node/pull/37652 * worker: * add setEnvironmentData/getEnvironmentData (James M Snell) https://github.com/nodejs/node/pull/37486
Diffstat (limited to 'doc/api/worker_threads.md')
-rw-r--r--doc/api/worker_threads.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/worker_threads.md b/doc/api/worker_threads.md
index c8fc33750ee..417d4594654 100644
--- a/doc/api/worker_threads.md
+++ b/doc/api/worker_threads.md
@@ -63,7 +63,7 @@ specifically `argv` and `execArgv` options.
## `worker.getEnvironmentData(key)`
<!-- YAML
-added: REPLACEME
+added: v15.12.0
-->
> Stability: 1 - Experimental
@@ -212,7 +212,7 @@ if (isMainThread) {
<!-- YAML
added: v12.3.0
changes:
- - version: REPLACEME
+ - version: v15.12.0
pr-url: https://github.com/nodejs/node/pull/37535
description: The port argument can also refer to a `BroadcastChannel` now.
-->
@@ -280,7 +280,7 @@ new Worker('process.env.SET_IN_WORKER = "foo"', { eval: true, env: SHARE_ENV })
## `worker.setEnvironmentData(key[, value])`
<!--YAML
-added: REPLACEME
+added: v15.12.0
-->
> Stability: 1 - Experimental