From 3fd91dcb00d450e50726f19c7af66990dec45d8c Mon Sep 17 00:00:00 2001 From: James M Snell Date: Wed, 22 Aug 2018 18:15:07 -0700 Subject: [PATCH 1/3] http2: graduate from experimental --- doc/api/http2.md | 10 +++++++--- lib/http2.js | 6 ------ 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/doc/api/http2.md b/doc/api/http2.md index 7ad1d0ae4fd21c..682fa0421cba67 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -1,9 +1,13 @@ # HTTP/2 - + -> Stability: 1 - Experimental - 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, From 374531b439c0d33174bbfb5020bbd5ae31a40f91 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 24 Aug 2018 15:19:56 -0700 Subject: [PATCH 2/3] squash! update wording --- doc/api/http2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/http2.md b/doc/api/http2.md index 682fa0421cba67..a11c155d040f62 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -4,7 +4,7 @@ added: v8.4.0 changes: - version: REPLACEME pr-url: https://github.com/nodejs/node/pull/22466 - description: HTTP/2 has graduated from experimental status. + description: HTTP/2 is now Stable. Previously, it had been Experimental. --> From 496a0d1ecc519c00a734337cc5ada9aa7a3803b2 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 24 Aug 2018 15:20:43 -0700 Subject: [PATCH 3/3] squash! updating stability index --- doc/api/http2.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/api/http2.md b/doc/api/http2.md index a11c155d040f62..bb8b1d4078fa83 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -8,6 +8,8 @@ changes: --> +> Stability: 2 - Stable + The `http2` module provides an implementation of the [HTTP/2][] protocol. It can be accessed using: