summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/api/http2.md10
-rw-r--r--lib/http2.js6
2 files changed, 8 insertions, 8 deletions
diff --git a/doc/api/http2.md b/doc/api/http2.md
index 7ad1d0ae4f..bb8b1d4078 100644
--- a/doc/api/http2.md
+++ b/doc/api/http2.md
@@ -1,8 +1,14 @@
# HTTP/2
-
+<!-- YAML
+added: v8.4.0
+changes:
+ - version: REPLACEME
+ pr-url: https://github.com/nodejs/node/pull/22466
+ description: HTTP/2 is now Stable. Previously, it had been Experimental.
+-->
<!--introduced_in=v8.4.0-->
-> Stability: 1 - Experimental
+> Stability: 2 - Stable
The `http2` module provides an implementation of the [HTTP/2][] protocol. It
can be accessed using:
diff --git a/lib/http2.js b/lib/http2.js
index de06de1cc4..1f770ff4c7 100644
--- a/lib/http2.js
+++ b/lib/http2.js
@@ -1,11 +1,5 @@
'use strict';
-process.emitWarning(
- 'The http2 module is an experimental API.',
- 'ExperimentalWarning', undefined,
- 'See https://github.com/nodejs/http2'
-);
-
const {
constants,
getDefaultSettings,