From 18a2b3dc8ea441a2630488b73931ba4fa578177e Mon Sep 17 00:00:00 2001 From: James M Snell Date: Wed, 22 Aug 2018 18:15:07 -0700 Subject: [PATCH] http2: graduate from experimental MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport-PR-URL: https://github.com/nodejs/node/pull/22850 PR-URL: https://github.com/nodejs/node/pull/22466 Reviewed-By: Gus Caplan Reviewed-By: Tiancheng "Timothy" Gu Reviewed-By: Colin Ihrig Reviewed-By: Ali Ijaz Sheikh Reviewed-By: Trivikram Kamat Reviewed-By: Yuta Hiroto Reviewed-By: Matteo Collina Reviewed-By: Luigi Pinca Reviewed-By: Ruben Bridgewater Reviewed-By: Michael Dawson Reviewed-By: Tobias Nießen Reviewed-By: Сковорода Никита Андреевич Reviewed-By: Anatoli Papirovski Reviewed-By: Joyee Cheung Reviewed-By: Anna Henningsen --- doc/api/http2.md | 10 ++++++++-- lib/http2.js | 6 ------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/api/http2.md b/doc/api/http2.md index ebb89c1bd4ced1..464acfdbc650cf 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -1,8 +1,14 @@ # HTTP/2 - + -> 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 de06de1cc414cb..1f770ff4c734cd 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,