Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Steps to Promote SDK Features from Alpha to Beta #3814

Merged
merged 12 commits into from
May 15, 2024
9 changes: 9 additions & 0 deletions pkg/util/runtime/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,15 @@ var (
// * change the value in site/content/en/docs/Guides/feature-stages.md.
// * Ensure that the features in each file are organized categorically and alphabetically.
//
// Feature Promotion: Alpha to Beta for SDK Functions
// * Move alpha feature from alpha files to beta files across the SDKs.
Kalaiselvi84 marked this conversation as resolved.
Show resolved Hide resolved
// * Delete alpha feature related lines from alpha files and update import paths accordingly in alpha and beta files.
// * Replace all instances of "alpha" with "beta" in source code and test files across all SDKs.
// * Include beta information in the sdk files and reflect the promotion of features from alpha to beta.
// * Update automation scripts in the build/build-sdk-images directory to support beta file generation.
// * Run `make gen-all-sdk-grpc` to generate the required files, then execute the `make run-sdk-conformance-test-go` command and address any issues that arise.
// * NOTE: DO NOT EDIT any autogenerated code. `make gen-all-sdk-grpc` will take care of it.
//
// To promote a feature from beta->GA:
// * remove all places consuming the feature gate and fold logic to true
// * consider cleanup - often folding a gate to true allows refactoring
Expand Down
Loading