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:
authorMichaël Zasso <targos@protonmail.com>2022-01-16 17:09:58 +0300
committerMichaël Zasso <targos@protonmail.com>2022-01-18 18:03:23 +0300
commit325b9473c03b2aaf28db44400a4093ed966a745b (patch)
tree73355674528799bbc357ebe91f1ff1fcdcc9b40f /doc/api/crypto.md
parentcc97ea5df611695e9f00a455b8e3f6d8a27886d0 (diff)
2022-01-18, Version 17.4.0 (Current)
Notable changes: child_process: * (SEMVER-MINOR) add support for URL to `cp.fork` (Antoine du Hamel) https://github.com/nodejs/node/pull/41225 crypto: * (SEMVER-MINOR) alias webcrypto.subtle and webcrypto.getRandomValues on crypto (James M Snell) https://github.com/nodejs/node/pull/41266 doc: * add Mesteery to collaborators (Mestery) https://github.com/nodejs/node/pull/41543 events: * (SEMVER-MINOR) graduate capturerejections to supported (James M Snell) https://github.com/nodejs/node/pull/41267 * (SEMVER-MINOR) add EventEmitterAsyncResource to core (James M Snell) https://github.com/nodejs/node/pull/41246 loader: * (SEMVER-MINOR) return package format from defaultResolve if known (Gabriel Bota) https://github.com/nodejs/node/pull/40980 perf_hooks: * (SEMVER-MINOR) multiple fixes for Histogram (James M Snell) https://github.com/nodejs/node/pull/41153 stream: * (SEMVER-MINOR) add filter method to readable (Benjamin Gruenbaum, Robert Nagy) https://github.com/nodejs/node/pull/41354 * (SEMVER-MINOR) add isReadable helper (Robert Nagy) https://github.com/nodejs/node/pull/41199 * (SEMVER-MINOR) add map method to Readable (Benjamin Gruenbaum, Robert Nagy) https://github.com/nodejs/node/pull/40815 PR-URL: https://github.com/nodejs/node/pull/41557
Diffstat (limited to 'doc/api/crypto.md')
-rw-r--r--doc/api/crypto.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/crypto.md b/doc/api/crypto.md
index 4dbccff3122..3efc08631e0 100644
--- a/doc/api/crypto.md
+++ b/doc/api/crypto.md
@@ -4064,7 +4064,7 @@ console.log(getHashes()); // ['DSA', 'DSA-SHA', 'DSA-SHA1', ...]
### `crypto.getRandomValues(typedArray)`
<!-- YAML
-added: REPLACEME
+added: v17.4.0
-->
* `typedArray` {Buffer|TypedArray|DataView|ArrayBuffer}
@@ -5254,7 +5254,7 @@ If the `callback` function is provided this function uses libuv's threadpool.
### `crypto.subtle`
<!-- YAML
-added: REPLACEME
+added: v17.4.0
-->
* Type: {SubtleCrypto}