FeatureToggle: Add awsDatasourcesNewFormStyling feature toggle (#76110)

This commit is contained in:
Ida Štambuk 2023-10-12 10:59:10 +02:00 committed by GitHub
parent f012b75a3a
commit 2771fb9403
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 14 additions and 0 deletions

View File

@ -149,6 +149,7 @@ Experimental features might be changed or removed without prior notice.
| `kubernetesPlaylists` | Use the kubernetes API in the frontend for playlists |
| `navAdminSubsections` | Splits the administration section of the nav tree into subsections |
| `recoveryThreshold` | Enables feature recovery threshold (aka hysteresis) for threshold server-side expression |
| `awsDatasourcesNewFormStyling` | Applies new form styling for configuration and query editors in AWS plugins |
## Development feature toggles

View File

@ -142,4 +142,5 @@ export interface FeatureToggles {
kubernetesPlaylists?: boolean;
navAdminSubsections?: boolean;
recoveryThreshold?: boolean;
awsDatasourcesNewFormStyling?: boolean;
}

View File

@ -867,5 +867,12 @@ var (
Owner: grafanaAlertingSquad,
RequiresRestart: true,
},
{
Name: "awsDatasourcesNewFormStyling",
Description: "Applies new form styling for configuration and query editors in AWS plugins",
Stage: FeatureStageExperimental,
FrontendOnly: true,
Owner: awsDatasourcesSquad,
},
}
)

View File

@ -123,3 +123,4 @@ transformationsVariableSupport,experimental,@grafana/grafana-bi-squad,false,fals
kubernetesPlaylists,experimental,@grafana/grafana-app-platform-squad,false,false,false,true
navAdminSubsections,experimental,@grafana/grafana-frontend-platform,false,false,false,false
recoveryThreshold,experimental,@grafana/alerting-squad,false,false,true,false
awsDatasourcesNewFormStyling,experimental,@grafana/aws-datasources,false,false,false,true

1 Name Stage Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
123 kubernetesPlaylists experimental @grafana/grafana-app-platform-squad false false false true
124 navAdminSubsections experimental @grafana/grafana-frontend-platform false false false false
125 recoveryThreshold experimental @grafana/alerting-squad false false true false
126 awsDatasourcesNewFormStyling experimental @grafana/aws-datasources false false false true

View File

@ -502,4 +502,8 @@ const (
// FlagRecoveryThreshold
// Enables feature recovery threshold (aka hysteresis) for threshold server-side expression
FlagRecoveryThreshold = "recoveryThreshold"
// FlagAwsDatasourcesNewFormStyling
// Applies new form styling for configuration and query editors in AWS plugins
FlagAwsDatasourcesNewFormStyling = "awsDatasourcesNewFormStyling"
)