Skip to content

Commit 99fd962

Browse files
committed
fixup! stream: graduate web streams from experimental and expose as globals
1 parent fc80fac commit 99fd962

File tree

1 file changed

+31
-31
lines changed

1 file changed

+31
-31
lines changed

doc/api/webstreams.md

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
added: v16.5.0
77
changes:
88
- version: REPLACEME
9-
pr-url: https://github.com/nodejs/node/pull/00000
9+
pr-url: https://github.com/nodejs/node/pull/42225
1010
description: This API is no longer experimental.
1111
-->
1212

@@ -95,8 +95,8 @@ const stream = new ReadableStream({
9595
added: v16.5.0
9696
changes:
9797
- version: REPLACEME
98-
pr-url: https://github.com/nodejs/node/pull/00000
99-
description: The class is now exposed on the global object.
98+
pr-url: https://github.com/nodejs/node/pull/42225
99+
description: This class is now exposed on the global object.
100100
-->
101101

102102
#### `new ReadableStream([underlyingSource [, strategy]])`
@@ -385,8 +385,8 @@ port2.postMessage(stream, [stream]);
385385
added: v16.5.0
386386
changes:
387387
- version: REPLACEME
388-
pr-url: https://github.com/nodejs/node/pull/00000
389-
description: The class is now exposed on the global object.
388+
pr-url: https://github.com/nodejs/node/pull/42225
389+
description: This class is now exposed on the global object.
390390
-->
391391

392392
By default, calling `readableStream.getReader()` with no arguments
@@ -456,8 +456,8 @@ Releases this reader's lock on the underlying {ReadableStream}.
456456
added: v16.5.0
457457
changes:
458458
- version: REPLACEME
459-
pr-url: https://github.com/nodejs/node/pull/00000
460-
description: The class is now exposed on the global object.
459+
pr-url: https://github.com/nodejs/node/pull/42225
460+
description: This class is now exposed on the global object.
461461
-->
462462

463463
The `ReadableStreamBYOBReader` is an alternative consumer for
@@ -707,8 +707,8 @@ Signals an error that causes the {ReadableStream} to error and close.
707707
added: v16.5.0
708708
changes:
709709
- version: REPLACEME
710-
pr-url: https://github.com/nodejs/node/pull/00000
711-
description: The class is now exposed on the global object.
710+
pr-url: https://github.com/nodejs/node/pull/42225
711+
description: This class is now exposed on the global object.
712712
-->
713713
714714
When using `ReadableByteStreamController` in byte-oriented
@@ -757,8 +757,8 @@ added: v16.5.0
757757
added: v16.5.0
758758
changes:
759759
- version: REPLACEME
760-
pr-url: https://github.com/nodejs/node/pull/00000
761-
description: The class is now exposed on the global object.
760+
pr-url: https://github.com/nodejs/node/pull/42225
761+
description: This class is now exposed on the global object.
762762
-->
763763
764764
The `WritableStream` is a destination to which stream data is sent.
@@ -877,8 +877,8 @@ port2.postMessage(stream, [stream]);
877877
added: v16.5.0
878878
changes:
879879
- version: REPLACEME
880-
pr-url: https://github.com/nodejs/node/pull/00000
881-
description: The class is now exposed on the global object.
880+
pr-url: https://github.com/nodejs/node/pull/42225
881+
description: This class is now exposed on the global object.
882882
-->
883883
884884
#### `new WritableStreamDefaultWriter(stream)`
@@ -968,8 +968,8 @@ Appends a new chunk of data to the {WritableStream}'s queue.
968968
added: v16.5.0
969969
changes:
970970
- version: REPLACEME
971-
pr-url: https://github.com/nodejs/node/pull/00000
972-
description: The class is now exposed on the global object.
971+
pr-url: https://github.com/nodejs/node/pull/42225
972+
description: This class is now exposed on the global object.
973973
-->
974974
975975
The `WritableStreamDefaultController` manage's the {WritableStream}'s
@@ -1002,8 +1002,8 @@ with currently pending writes canceled.
10021002
added: v16.5.0
10031003
changes:
10041004
- version: REPLACEME
1005-
pr-url: https://github.com/nodejs/node/pull/00000
1006-
description: The class is now exposed on the global object.
1005+
pr-url: https://github.com/nodejs/node/pull/42225
1006+
description: This class is now exposed on the global object.
10071007
-->
10081008
10091009
A `TransformStream` consists of a {ReadableStream} and a {WritableStream} that
@@ -1108,8 +1108,8 @@ port2.postMessage(stream, [stream]);
11081108
added: v16.5.0
11091109
changes:
11101110
- version: REPLACEME
1111-
pr-url: https://github.com/nodejs/node/pull/00000
1112-
description: The class is now exposed on the global object.
1111+
pr-url: https://github.com/nodejs/node/pull/42225
1112+
description: This class is now exposed on the global object.
11131113
-->
11141114
11151115
The `TransformStreamDefaultController` manages the internal state
@@ -1162,8 +1162,8 @@ to be abruptly closed with an error.
11621162
added: v16.5.0
11631163
changes:
11641164
- version: REPLACEME
1165-
pr-url: https://github.com/nodejs/node/pull/00000
1166-
description: The class is now exposed on the global object.
1165+
pr-url: https://github.com/nodejs/node/pull/42225
1166+
description: This class is now exposed on the global object.
11671167
-->
11681168
11691169
#### `new ByteLengthQueuingStrategy(options)`
@@ -1199,8 +1199,8 @@ added: v16.5.0
11991199
added: v16.5.0
12001200
changes:
12011201
- version: REPLACEME
1202-
pr-url: https://github.com/nodejs/node/pull/00000
1203-
description: The class is now exposed on the global object.
1202+
pr-url: https://github.com/nodejs/node/pull/42225
1203+
description: This class is now exposed on the global object.
12041204
-->
12051205
12061206
#### `new CountQueuingStrategy(options)`
@@ -1236,8 +1236,8 @@ added: v16.5.0
12361236
added: v16.6.0
12371237
changes:
12381238
- version: REPLACEME
1239-
pr-url: https://github.com/nodejs/node/pull/00000
1240-
description: The class is now exposed on the global object.
1239+
pr-url: https://github.com/nodejs/node/pull/42225
1240+
description: This class is now exposed on the global object.
12411241
-->
12421242
12431243
#### `new TextEncoderStream()`
@@ -1280,8 +1280,8 @@ added: v16.6.0
12801280
added: v16.6.0
12811281
changes:
12821282
- version: REPLACEME
1283-
pr-url: https://github.com/nodejs/node/pull/00000
1284-
description: The class is now exposed on the global object.
1283+
pr-url: https://github.com/nodejs/node/pull/42225
1284+
description: This class is now exposed on the global object.
12851285
-->
12861286
12871287
#### `new TextDecoderStream([encoding[, options]])`
@@ -1355,8 +1355,8 @@ added: v16.6.0
13551355
added: v17.0.0
13561356
changes:
13571357
- version: REPLACEME
1358-
pr-url: https://github.com/nodejs/node/pull/00000
1359-
description: The class is now exposed on the global object.
1358+
pr-url: https://github.com/nodejs/node/pull/42225
1359+
description: This class is now exposed on the global object.
13601360
-->
13611361
13621362
#### `new CompressionStream(format)`
@@ -1389,8 +1389,8 @@ added: v17.0.0
13891389
added: v17.0.0
13901390
changes:
13911391
- version: REPLACEME
1392-
pr-url: https://github.com/nodejs/node/pull/00000
1393-
description: The class is now exposed on the global object.
1392+
pr-url: https://github.com/nodejs/node/pull/42225
1393+
description: This class is now exposed on the global object.
13941394
-->
13951395
13961396
#### `new DecompressionStream(format)`

0 commit comments

Comments
 (0)