Skip to content

Commit 0fbbe49

Browse files
styfleruyadorno
authored andcommitted
doc: promote fetch/webstreams from experimental to stable
PR-URL: #45684 Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Robert Nagy <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]>
1 parent 835f9fe commit 0fbbe49

File tree

3 files changed

+31
-13
lines changed

3 files changed

+31
-13
lines changed

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,7 @@ Silence deprecation warnings.
10891089
added: v18.0.0
10901090
-->
10911091

1092-
Disable experimental support for the [Fetch API][].
1092+
Disable exposition of [Fetch API][] on the global scope.
10931093

10941094
### `--no-experimental-global-customevent`
10951095

doc/api/globals.md

+25-11
Original file line numberDiff line numberDiff line change
@@ -476,13 +476,16 @@ added:
476476
- v17.5.0
477477
- v16.15.0
478478
changes:
479+
- version:
480+
- REPLACEME
481+
pr-url: https://github.com/nodejs/node/pull/45684
482+
description: No longer experimental.
479483
- version: v18.0.0
480484
pr-url: https://github.com/nodejs/node/pull/41811
481485
description: No longer behind `--experimental-global-fetch` CLI flag.
482486
-->
483487

484-
> Stability: 1 - Experimental. Disable this API with the [`--no-experimental-fetch`][]
485-
> CLI flag.
488+
> Stability: 2 - Stable
486489
487490
A browser-compatible implementation of the [`fetch()`][] function.
488491

@@ -503,13 +506,16 @@ added:
503506
- v17.6.0
504507
- v16.15.0
505508
changes:
509+
- version:
510+
- REPLACEME
511+
pr-url: https://github.com/nodejs/node/pull/45684
512+
description: No longer experimental.
506513
- version: v18.0.0
507514
pr-url: https://github.com/nodejs/node/pull/41811
508515
description: No longer behind `--experimental-global-fetch` CLI flag.
509516
-->
510517

511-
> Stability: 1 - Experimental. Disable this API with the [`--no-experimental-fetch`][]
512-
> CLI flag.
518+
> Stability: 2 - Stable
513519
514520
A browser-compatible implementation of {FormData}.
515521

@@ -539,13 +545,16 @@ added:
539545
- v17.5.0
540546
- v16.15.0
541547
changes:
548+
- version:
549+
- REPLACEME
550+
pr-url: https://github.com/nodejs/node/pull/45684
551+
description: No longer experimental.
542552
- version: v18.0.0
543553
pr-url: https://github.com/nodejs/node/pull/41811
544554
description: No longer behind `--experimental-global-fetch` CLI flag.
545555
-->
546556

547-
> Stability: 1 - Experimental. Disable this API with the [`--no-experimental-fetch`][]
548-
> CLI flag.
557+
> Stability: 2 - Stable
549558
550559
A browser-compatible implementation of {Headers}.
551560

@@ -776,13 +785,16 @@ added:
776785
- v17.5.0
777786
- v16.15.0
778787
changes:
788+
- version:
789+
- REPLACEME
790+
pr-url: https://github.com/nodejs/node/pull/45684
791+
description: No longer experimental.
779792
- version: v18.0.0
780793
pr-url: https://github.com/nodejs/node/pull/41811
781794
description: No longer behind `--experimental-global-fetch` CLI flag.
782795
-->
783796

784-
> Stability: 1 - Experimental. Disable this API with the [`--no-experimental-fetch`][]
785-
> CLI flag.
797+
> Stability: 2 - Stable
786798
787799
A browser-compatible implementation of {Response}.
788800

@@ -793,13 +805,16 @@ added:
793805
- v17.5.0
794806
- v16.15.0
795807
changes:
808+
- version:
809+
- REPLACEME
810+
pr-url: https://github.com/nodejs/node/pull/45684
811+
description: No longer experimental.
796812
- version: v18.0.0
797813
pr-url: https://github.com/nodejs/node/pull/41811
798814
description: No longer behind `--experimental-global-fetch` CLI flag.
799815
-->
800816

801-
> Stability: 1 - Experimental. Disable this API with the [`--no-experimental-fetch`][]
802-
> CLI flag.
817+
> Stability: 2 - Stable
803818
804819
A browser-compatible implementation of {Request}.
805820

@@ -999,7 +1014,6 @@ A browser-compatible implementation of [`WritableStreamDefaultWriter`][].
9991014
[CommonJS module]: modules.md
10001015
[ECMAScript module]: esm.md
10011016
[Web Crypto API]: webcrypto.md
1002-
[`--no-experimental-fetch`]: cli.md#--no-experimental-fetch
10031017
[`--no-experimental-global-customevent`]: cli.md#--no-experimental-global-customevent
10041018
[`--no-experimental-global-webcrypto`]: cli.md#--no-experimental-global-webcrypto
10051019
[`AbortController`]: https://developer.mozilla.org/en-US/docs/Web/API/AbortController

doc/api/webstreams.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@
55
<!-- YAML
66
added: v16.5.0
77
changes:
8+
- version:
9+
- REPLACEME
10+
pr-url: https://github.com/nodejs/node/pull/45684
11+
description: No longer experimental.
812
- version: v18.0.0
913
pr-url: https://github.com/nodejs/node/pull/42225
1014
description: Use of this API no longer emit a runtime warning.
1115
-->
1216

13-
> Stability: 1 - Experimental.
17+
> Stability: 2 - Stable
1418
1519
An implementation of the [WHATWG Streams Standard][].
1620

0 commit comments

Comments
 (0)