From 8d2c953d08984586180da7e285eeca19cc48729f Mon Sep 17 00:00:00 2001 From: "Benjamin E. Coe" Date: Wed, 29 Dec 2021 18:33:05 +0000 Subject: [PATCH] docs(node): support "stable"/"preview" release level (#1312) --- synthtool/gcp/templates/node_library/README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/synthtool/gcp/templates/node_library/README.md b/synthtool/gcp/templates/node_library/README.md index 6aa585d4d..e16550e10 100644 --- a/synthtool/gcp/templates/node_library/README.md +++ b/synthtool/gcp/templates/node_library/README.md @@ -118,6 +118,12 @@ unless absolutely necessary (e.g. because of critical security issues) or with an extensive deprecation period. Issues and requests against **GA** libraries are addressed with the highest priority. {% endif %} +{% if metadata['repo']['release_level'] == 'stable' %} +This library is considered to be **stable**. The code surface will not change in backwards-incompatible ways +unless absolutely necessary (e.g. because of critical security issues) or with +an extensive deprecation period. Issues and requests against **stable** libraries +are addressed with the highest priority. +{% endif %} {% if metadata['repo']['release_level'] == 'beta' %} This library is considered to be in **beta**. This means it is expected to be mostly stable while we work toward a general availability release; however, @@ -134,6 +140,11 @@ This library is **deprecated**. This means that it is no longer being actively maintained and the only updates the library will receive will be for critical security issues. {% if metadata['deprecated'] %}{{ metadata['deprecated'] }}{% endif %} {% endif %} +{% if metadata['repo']['release_level'] == 'preview' %} +This library is considered to be in **preview**. This means it is still a +work-in-progress and under active development. Any release is subject to +backwards-incompatible changes at any time. +{% endif %} More Information: [Google Cloud Platform Launch Stages][launch_stages]