You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If the package status is not a GA version, then add a disclaimer around prerelease
107
122
// implications
108
123
if (status != null) {
109
124
this.PRERELEASE_IMPLICATIONS =
110
125
"## Prerelease Implications\n\n"
111
-
+ "This package is a prerelease version! Use with caution.\n"
112
-
+ "Prerelease versions are considered unstable as they may be shut down. You can read more about [Cloud API versioning strategy here](https://cloud.google.com/apis/design/versioning).\n"
113
-
+ "Each Cloud Java client library may contain multiple packages. Each package containing a version number in its name corresponds to a published version of the service.\n"
114
-
+ "We recommend using the latest stable version for new production applications, which can be identified by the largest numeric version that does not contain a suffix.\n"
115
-
+ "For example, if a client library has two packages: `v1` and `v2alpha`, then the latest stable version is `v1`.\n"
116
-
+ "If you use an unstable release, breaking changes may be introduced when upgrading.\n\n";
126
+
+ "This package is a prerelease version! Use with caution.\n\n"
127
+
+ "Prerelease versions are considered unstable as they may be shut down and/or subject to breaking changes when upgrading.\n"
128
+
+ "Use them only for testing or if you specifically need their experimental features.\n\n";
117
129
}
118
130
119
-
// This regex captures the package path before the version (if it exists) and the version
0 commit comments