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:
authorJuan José Arboleda <soyjuanarbol@gmail.com>2022-10-11 22:54:19 +0300
committerJuan José Arboleda <soyjuanarbol@gmail.com>2022-10-12 17:39:55 +0300
commite23c256594c291dd2da481512e2dc1d0e4421375 (patch)
treee01eec9543a15831f6201c80df08c3d1bc7e7443 /doc/api/assert.md
parentfd36a8dadba7fcbd74f0ab82a8ee1b3150ce5167 (diff)
2022-10-12, Version 16.18.0 'Gallium' (LTS)
Notable changes: assert: add `getCalls` and `reset` to callTracker (Moshe Atlow) https://github.com/nodejs/node/pull/44191 crypto: allow zero-length secret KeyObject (Filip Skokan) https://github.com/nodejs/node/pull/44201 crypto: allow zero-length IKM in HKDF and in webcrypto PBKDF2 (Filip Skokan) https://github.com/nodejs/node/pull/44201 doc: deprecate modp1, modp2, and modp5 groups (Tobias Nießen) https://github.com/nodejs/node/pull/44588 http: make idle http parser count configurable (theanarkh) https://github.com/nodejs/node/pull/43974 http: throw error on content-length mismatch (sidwebworks) https://github.com/nodejs/node/pull/44378 lib: add diagnostics channel for process and worker (theanarkh) https://github.com/nodejs/node/pull/44045 net,tls: pass a valid socket on `tlsClientError` (Daeyeon Jeong) https://github.com/nodejs/node/pull/44021 net: add local family (theanarkh) https://github.com/nodejs/node/pull/43975 report: expose report public native apis (Chengzhong Wu) https://github.com/nodejs/node/pull/44255 src: expose environment RequestInterrupt api (Chengzhong Wu) https://github.com/nodejs/node/pull/44362 stream: add `ReadableByteStream.tee()` (Daeyeon Jeong) https://github.com/nodejs/node/pull/44505 test_runner: add before/after/each hooks (Moshe Atlow) https://github.com/nodejs/node/pull/43730 util: add `maxArrayLength` option to Set and Map (Kohei Ueno) https://github.com/nodejs/node/pull/43576 PR-URL: https://github.com/nodejs/node/pull/44886
Diffstat (limited to 'doc/api/assert.md')
-rw-r--r--doc/api/assert.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/api/assert.md b/doc/api/assert.md
index 4864023f65d..7256c2745e3 100644
--- a/doc/api/assert.md
+++ b/doc/api/assert.md
@@ -325,7 +325,9 @@ const callsfunc = tracker.calls(func);
### `tracker.getCalls(fn)`
<!-- YAML
-added: v18.8.0
+added:
+ - v18.8.0
+ - v16.18.0
-->
* `fn` {Function}.
@@ -439,7 +441,9 @@ tracker.report();
### `tracker.reset([fn])`
<!-- YAML
-added: v18.8.0
+added:
+ - v18.8.0
+ - v16.18.0
-->
* `fn` {Function} a tracked function to reset.