Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 740ca54

Browse filesBrowse files
authored
doc: promote fetch/webstreams from experimental to stable
PR-URL: #45684 Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
1 parent 5d6aa85 commit 740ca54
Copy full SHA for 740ca54

File tree

Expand file treeCollapse file tree

3 files changed

+31
-13
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

3 files changed

+31
-13
lines changed
Open diff view settings
Collapse file

‎doc/api/cli.md‎

Copy file name to clipboardExpand all lines: doc/api/cli.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -1117,7 +1117,7 @@ Silence deprecation warnings.
11171117
added: v18.0.0
11181118
-->
11191119

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

11221122
### `--no-experimental-global-customevent`
11231123

Collapse file

‎doc/api/globals.md‎

Copy file name to clipboardExpand all lines: doc/api/globals.md
+25-11Lines changed: 25 additions & 11 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -478,13 +478,16 @@ added:
478478
- v17.5.0
479479
- v16.15.0
480480
changes:
481+
- version:
482+
- REPLACEME
483+
pr-url: https://github.com/nodejs/node/pull/45684
484+
description: No longer experimental.
481485
- version: v18.0.0
482486
pr-url: https://github.com/nodejs/node/pull/41811
483487
description: No longer behind `--experimental-global-fetch` CLI flag.
484488
-->
485489

486-
> Stability: 1 - Experimental. Disable this API with the [`--no-experimental-fetch`][]
487-
> CLI flag.
490+
> Stability: 2 - Stable
488491
489492
A browser-compatible implementation of the [`fetch()`][] function.
490493

@@ -505,13 +508,16 @@ added:
505508
- v17.6.0
506509
- v16.15.0
507510
changes:
511+
- version:
512+
- REPLACEME
513+
pr-url: https://github.com/nodejs/node/pull/45684
514+
description: No longer experimental.
508515
- version: v18.0.0
509516
pr-url: https://github.com/nodejs/node/pull/41811
510517
description: No longer behind `--experimental-global-fetch` CLI flag.
511518
-->
512519

513-
> Stability: 1 - Experimental. Disable this API with the [`--no-experimental-fetch`][]
514-
> CLI flag.
520+
> Stability: 2 - Stable
515521
516522
A browser-compatible implementation of {FormData}.
517523

@@ -541,13 +547,16 @@ added:
541547
- v17.5.0
542548
- v16.15.0
543549
changes:
550+
- version:
551+
- REPLACEME
552+
pr-url: https://github.com/nodejs/node/pull/45684
553+
description: No longer experimental.
544554
- version: v18.0.0
545555
pr-url: https://github.com/nodejs/node/pull/41811
546556
description: No longer behind `--experimental-global-fetch` CLI flag.
547557
-->
548558

549-
> Stability: 1 - Experimental. Disable this API with the [`--no-experimental-fetch`][]
550-
> CLI flag.
559+
> Stability: 2 - Stable
551560
552561
A browser-compatible implementation of {Headers}.
553562

@@ -813,13 +822,16 @@ added:
813822
- v17.5.0
814823
- v16.15.0
815824
changes:
825+
- version:
826+
- REPLACEME
827+
pr-url: https://github.com/nodejs/node/pull/45684
828+
description: No longer experimental.
816829
- version: v18.0.0
817830
pr-url: https://github.com/nodejs/node/pull/41811
818831
description: No longer behind `--experimental-global-fetch` CLI flag.
819832
-->
820833

821-
> Stability: 1 - Experimental. Disable this API with the [`--no-experimental-fetch`][]
822-
> CLI flag.
834+
> Stability: 2 - Stable
823835
824836
A browser-compatible implementation of {Response}.
825837

@@ -830,13 +842,16 @@ added:
830842
- v17.5.0
831843
- v16.15.0
832844
changes:
845+
- version:
846+
- REPLACEME
847+
pr-url: https://github.com/nodejs/node/pull/45684
848+
description: No longer experimental.
833849
- version: v18.0.0
834850
pr-url: https://github.com/nodejs/node/pull/41811
835851
description: No longer behind `--experimental-global-fetch` CLI flag.
836852
-->
837853

838-
> Stability: 1 - Experimental. Disable this API with the [`--no-experimental-fetch`][]
839-
> CLI flag.
854+
> Stability: 2 - Stable
840855
841856
A browser-compatible implementation of {Request}.
842857

@@ -1037,7 +1052,6 @@ A browser-compatible implementation of [`WritableStreamDefaultWriter`][].
10371052
[ECMAScript module]: esm.md
10381053
[Navigator API]: https://html.spec.whatwg.org/multipage/system-state.html#the-navigator-object
10391054
[Web Crypto API]: webcrypto.md
1040-
[`--no-experimental-fetch`]: cli.md#--no-experimental-fetch
10411055
[`--no-experimental-global-customevent`]: cli.md#--no-experimental-global-customevent
10421056
[`--no-experimental-global-webcrypto`]: cli.md#--no-experimental-global-webcrypto
10431057
[`AbortController`]: https://developer.mozilla.org/en-US/docs/Web/API/AbortController
Collapse file

‎doc/api/webstreams.md‎

Copy file name to clipboardExpand all lines: doc/api/webstreams.md
+5-1Lines changed: 5 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.