Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions doc/api/async_context.md
Original file line number Diff line number Diff line change
Expand Up @@ -390,8 +390,8 @@ try {

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
Comment thread
aduh95 marked this conversation as resolved.
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -530,8 +530,8 @@ probably responsible for the context loss.

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

> Stability: 1 - Experimental
Expand All @@ -548,8 +548,8 @@ exits, whether through normal completion or by throwing an error.

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

Explicitly ends the scope and restores the previous store value. This method
Expand Down
2 changes: 1 addition & 1 deletion doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -1326,8 +1326,8 @@ Enable experimental support for storage inspection

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

> Stability: 1 - Experimental
Expand Down
2 changes: 1 addition & 1 deletion doc/api/diagnostics_channel.md
Original file line number Diff line number Diff line change
Expand Up @@ -1859,9 +1859,9 @@ Emitted when [`process.execve()`][] is invoked.
<!-- YAML
added:
- v26.0.0
- v25.9.0
- v24.15.0
- v26.0.0
-->

These channels are emitted for each [`locks.request()`][] call. See
Expand Down
6 changes: 3 additions & 3 deletions doc/api/fs.md
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,8 @@ added: v10.0.0

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -460,8 +460,8 @@ run().catch(console.error);

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -1017,8 +1017,8 @@ the end of the file.

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

> Stability: 1 - Experimental
Expand Down
2 changes: 1 addition & 1 deletion doc/api/module.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,9 @@ added:
- v20.6.0
- v18.19.0
deprecated:
- v26.0.0
- v25.9.0
- v24.15.0
- v26.0.0
changes:
- version: v26.0.0
pr-url: https://github.com/nodejs/node/pull/62401
Expand Down
4 changes: 2 additions & 2 deletions doc/api/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -740,8 +740,8 @@ This feature is not available in [`Worker`][] threads.

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -4080,8 +4080,8 @@ This implies calling `module.setSourceMapsSupport()` with an option
added: v9.3.0
changes:
- version:
- v25.9.0
- v26.0.0
- v25.9.0
pr-url: https://github.com/nodejs/node/pull/61227
description: Use `process.addUncaughtExceptionCaptureCallback()` to
register multiple callbacks.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/quic.md
Original file line number Diff line number Diff line change
Expand Up @@ -1250,9 +1250,9 @@ True to enable TLS keylogging output.
added: v23.8.0
changes:
- version:
- v26.0.0
- v25.9.0
- v24.15.0
- v26.0.0
pr-url: https://github.com/nodejs/node/pull/62335
description: CryptoKey is no longer accepted.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/repl.md
Original file line number Diff line number Diff line change
Expand Up @@ -710,8 +710,8 @@ npx codemod@latest @nodejs/repl-builtin-modules
added: v0.1.91
changes:
- version:
- v25.9.0
- v26.0.0
- v25.9.0
pr-url: https://github.com/nodejs/node/pull/62188
description: The `handleError` parameter has been added.
- version: v24.1.0
Expand Down
52 changes: 26 additions & 26 deletions doc/api/stream_iter.md
Original file line number Diff line number Diff line change
Expand Up @@ -522,8 +522,8 @@ Including the `node:` prefix on the module specifier is optional.

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `input` {string|ArrayBuffer|ArrayBufferView|Iterable|AsyncIterable|Object}
Expand Down Expand Up @@ -564,8 +564,8 @@ run().catch(console.error);

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `input` {string|ArrayBuffer|ArrayBufferView|Iterable|Object}
Expand Down Expand Up @@ -596,8 +596,8 @@ console.log(textSync(fromSync('hello'))); // 'hello'

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `source` {AsyncIterable|Iterable} The data source.
Expand Down Expand Up @@ -655,8 +655,8 @@ run().catch(console.error);

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `source` {Iterable} The sync data source.
Expand All @@ -677,8 +677,8 @@ The `writer` must have the `*Sync` methods (`writeSync`, `writevSync`,

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `source` {AsyncIterable|Iterable} The data source.
Expand Down Expand Up @@ -750,8 +750,8 @@ ac.abort(); // Pipeline throws AbortError on next iteration

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `source` {Iterable} The sync data source.
Expand All @@ -766,8 +766,8 @@ Synchronous version of [`pull()`][]. All transforms must be synchronous.

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `...transforms` {Function|Object} Optional transforms applied to the
Expand Down Expand Up @@ -832,8 +832,8 @@ The writer returned by `push()` conforms to the \[Writer interface]\[].

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `options` {Object}
Expand Down Expand Up @@ -912,8 +912,8 @@ run().catch(console.error);

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `source` {AsyncIterable\<Uint8Array\[]>|Iterable\<Uint8Array\[]>}
Expand All @@ -929,8 +929,8 @@ Collect all chunks as an array of `Uint8Array` values (without concatenating).

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `source` {AsyncIterable\<Uint8Array\[]>|Iterable\<Uint8Array\[]>}
Expand All @@ -946,8 +946,8 @@ Collect all bytes into an `ArrayBuffer`.

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `source` {Iterable\<Uint8Array\[]>}
Expand All @@ -962,8 +962,8 @@ Synchronous version of [`arrayBuffer()`][].

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `source` {Iterable\<Uint8Array\[]>}
Expand All @@ -978,8 +978,8 @@ Synchronous version of [`array()`][].

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `source` {AsyncIterable\<Uint8Array\[]>|Iterable\<Uint8Array\[]>}
Expand Down Expand Up @@ -1013,8 +1013,8 @@ run().catch(console.error);

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `source` {Iterable\<Uint8Array\[]>}
Expand All @@ -1029,8 +1029,8 @@ Synchronous version of [`bytes()`][].

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `source` {AsyncIterable\<Uint8Array\[]>|Iterable\<Uint8Array\[]>}
Expand Down Expand Up @@ -1063,8 +1063,8 @@ run().catch(console.error);

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `source` {Iterable\<Uint8Array\[]>}
Expand All @@ -1082,8 +1082,8 @@ Synchronous version of [`text()`][].

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `drainable` {Object} An object implementing the drainable protocol.
Expand Down Expand Up @@ -1139,8 +1139,8 @@ run().catch(console.error);

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `...sources` {AsyncIterable\<Uint8Array\[]>|Iterable\<Uint8Array\[]>} Two or more iterables.
Expand Down Expand Up @@ -1174,8 +1174,8 @@ run().catch(console.error);

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `callback` {Function} `(chunks) => void` Called with each batch.
Expand Down Expand Up @@ -1215,8 +1215,8 @@ chunks by the tapping callback; but return values are ignored.

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `callback` {Function}
Expand All @@ -1230,8 +1230,8 @@ Synchronous version of [`tap()`][].

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `options` {Object}
Expand Down Expand Up @@ -1333,8 +1333,8 @@ Alias for `broadcast.cancel()`.

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `input` {AsyncIterable|Iterable|Broadcastable}
Expand All @@ -1348,8 +1348,8 @@ automatically and pushed to all subscribers.

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `source` {AsyncIterable} The source to share.
Expand Down Expand Up @@ -1431,8 +1431,8 @@ Alias for `share.cancel()`.

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `input` {AsyncIterable|Shareable}
Expand All @@ -1445,8 +1445,8 @@ Create a {Share} from an existing source.

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `source` {Iterable} The sync source to share.
Expand All @@ -1462,8 +1462,8 @@ Synchronous version of [`share()`][].

<!-- YAML
added:
- v25.9.0
- v26.0.0
- v25.9.0
-->

* `input` {Iterable|SyncShareable}
Expand Down
Loading
Loading