From 8e681d51b403dd09045a391ed30e71d4a80bfd4d Mon Sep 17 00:00:00 2001 From: James M Snell Date: Tue, 21 Dec 2021 12:30:38 -0800 Subject: [PATCH] worker: graduate get/setEnvironmentData APIs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: James M Snell PR-URL: https://github.com/nodejs/node/pull/41272 Reviewed-By: Michaƫl Zasso --- doc/api/worker_threads.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/doc/api/worker_threads.md b/doc/api/worker_threads.md index d30205adfb19e0..2b971a7a4a046b 100644 --- a/doc/api/worker_threads.md +++ b/doc/api/worker_threads.md @@ -67,10 +67,12 @@ specifically `argv` and `execArgv` options. added: - v15.12.0 - v14.18.0 +changes: + - version: REPLACEME + pr-url: https://github.com/nodejs/node/pull/41272 + description: No longer experimental. --> -> Stability: 1 - Experimental - * `key` {any} Any arbitrary, cloneable JavaScript value that can be used as a {Map} key. * Returns: {any} @@ -295,10 +297,12 @@ new Worker('process.env.SET_IN_WORKER = "foo"', { eval: true, env: SHARE_ENV }) added: - v15.12.0 - v14.18.0 +changes: + - version: REPLACEME + pr-url: https://github.com/nodejs/node/pull/41272 + description: No longer experimental. --> -> Stability: 1 - Experimental - * `key` {any} Any arbitrary, cloneable JavaScript value that can be used as a {Map} key. * `value` {any} Any arbitrary, cloneable JavaScript value that will be cloned