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 be89606d023..0c9d33a8e8f 100644 --- a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md +++ b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md @@ -39,6 +39,7 @@ Some stable features are enabled by default. You can disable a stable feature by | `lokiMetricDataplane` | Changes metric responses from Loki to be compliant with the dataplane specification. | Yes | | `dataplaneFrontendFallback` | Support dataplane contract field name change for transformations and field name matchers where the name is different | Yes | | `useCachingService` | When turned on, the new query and resource caching implementation using a wire service inject will be used in place of the previous middleware implementation | | +| `authenticationConfigUI` | Enables authentication configuration UI | Yes | | `advancedDataSourcePicker` | Enable a new data source picker with contextual information, recently used order and advanced mode | Yes | ## Beta feature toggles @@ -108,7 +109,6 @@ Alpha features might be changed or removed without prior notice. | `alertStateHistoryLokiOnly` | Disable Grafana alerts from emitting annotations when a remote Loki instance is available. | | `unifiedRequestLog` | Writes error logs to the request logger | | `pyroscopeFlameGraph` | Changes flame graph to pyroscope one | -| `authenticationConfigUI` | Enables authentication configuration UI | | `pluginsAPIManifestKey` | Use grafana.com API to retrieve the public manifest key | | `opensearchDetectVersion` | Enable version detection in OpenSearch | diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index af546f0cb0e..82648556b2f 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -501,7 +501,8 @@ var ( { Name: "authenticationConfigUI", Description: "Enables authentication configuration UI", - State: FeatureStateAlpha, + State: FeatureStateStable, + Expression: "true", Owner: grafanaAuthnzSquad, }, { diff --git a/pkg/services/featuremgmt/toggles_gen.csv b/pkg/services/featuremgmt/toggles_gen.csv index 700e99c9e7a..4eefdac12a2 100644 --- a/pkg/services/featuremgmt/toggles_gen.csv +++ b/pkg/services/featuremgmt/toggles_gen.csv @@ -73,7 +73,7 @@ externalServiceAuth,alpha,@grafana/grafana-authnz-team,true,false,false,false refactorVariablesTimeRange,beta,@grafana/dashboards-squad,false,false,false,false useCachingService,stable,@grafana/grafana-operator-experience-squad,false,false,true,false enableElasticsearchBackendQuerying,beta,@grafana/observability-logs,false,false,false,false -authenticationConfigUI,alpha,@grafana/grafana-authnz-team,false,false,false,false +authenticationConfigUI,stable,@grafana/grafana-authnz-team,false,false,false,false pluginsAPIManifestKey,alpha,@grafana/plugins-platform-backend,false,false,false,false advancedDataSourcePicker,stable,@grafana/dashboards-squad,false,false,false,true opensearchDetectVersion,alpha,@grafana/aws-plugins,false,false,false,true