diff --git a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md index ee6ea77c3f9..91e7f8da1d2 100644 --- a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md +++ b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md @@ -30,6 +30,7 @@ Some features are enabled by default. You can disable these feature by setting t | `cloudWatchCrossAccountQuerying` | Enables cross-account querying in CloudWatch datasources | Yes | | `redshiftAsyncQueryDataSupport` | Enable async query data support for Redshift | Yes | | `athenaAsyncQueryDataSupport` | Enable async query data support for Athena | Yes | +| `cloudwatchNewRegionsHandler` | Refactor of /regions endpoint, no user-facing changes | Yes | | `nestedFolderPicker` | Enables the new folder picker to work with nested folders. Requires the nestedFolders feature toggle | Yes | | `accessTokenExpirationCheck` | Enable OAuth access_token expiration check and token refresh using the refresh_token | | | `emptyDashboardPage` | Enable the redesigned user interface of a dashboard page that includes no panels | Yes | @@ -96,7 +97,6 @@ Experimental features might be changed or removed without prior notice. | `disableSecretsCompatibility` | Disable duplicated secret storage in legacy tables | | `logRequestsInstrumentedAsUnknown` | Logs the path for requests that are instrumented as unknown | | `dockedMegaMenu` | Enable support for a persistent (docked) navigation menu | -| `cloudwatchNewRegionsHandler` | Refactor of /regions endpoint, no user-facing changes | | `showDashboardValidationWarnings` | Show warnings when dashboards do not validate against the schema | | `mysqlAnsiQuotes` | Use double quotes to escape keyword in a MySQL query | | `alertingBacktesting` | Rule backtesting API for alerting | diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index 206a92093ac..d1f0a4e2ac0 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -259,11 +259,13 @@ var ( Created: time.Date(2022, time.August, 27, 12, 0, 0, 0, time.UTC), }, { - Name: "cloudwatchNewRegionsHandler", - Description: "Refactor of /regions endpoint, no user-facing changes", - Stage: FeatureStageExperimental, - Owner: awsDatasourcesSquad, - Created: time.Date(2023, time.September, 25, 12, 0, 0, 0, time.UTC), + Name: "cloudwatchNewRegionsHandler", + Description: "Refactor of /regions endpoint, no user-facing changes", + Stage: FeatureStageGeneralAvailability, + Expression: "true", // enabled by default + Owner: awsDatasourcesSquad, + AllowSelfServe: truePtr, + Created: time.Date(2023, time.September, 25, 12, 0, 0, 0, time.UTC), }, { Name: "showDashboardValidationWarnings", diff --git a/pkg/services/featuremgmt/toggles_gen.csv b/pkg/services/featuremgmt/toggles_gen.csv index 3ef7be8ae4a..a9f5041c420 100644 --- a/pkg/services/featuremgmt/toggles_gen.csv +++ b/pkg/services/featuremgmt/toggles_gen.csv @@ -28,7 +28,7 @@ unifiedStorage,experimental,@grafana/grafana-app-platform-squad,2022-12-01,true, cloudWatchCrossAccountQuerying,GA,@grafana/aws-datasources,2022-11-28,false,false,false,false redshiftAsyncQueryDataSupport,GA,@grafana/aws-datasources,2022-08-27,false,false,false,false athenaAsyncQueryDataSupport,GA,@grafana/aws-datasources,2022-08-27,false,false,false,true -cloudwatchNewRegionsHandler,experimental,@grafana/aws-datasources,2023-09-25,false,false,false,false +cloudwatchNewRegionsHandler,GA,@grafana/aws-datasources,2023-09-25,false,false,false,false showDashboardValidationWarnings,experimental,@grafana/dashboards-squad,2022-10-14,false,false,false,false mysqlAnsiQuotes,experimental,@grafana/backend-platform,2022-10-12,false,false,false,false accessControlOnCall,preview,@grafana/identity-access-team,2022-10-19,false,false,false,false