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 f3f005a255b..a779fffd19d 100644 --- a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md +++ b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md @@ -165,6 +165,7 @@ Experimental features might be changed or removed without prior notice. | `extractFieldsNameDeduplication` | Make sure extracted field names are unique in the dataframe | | `dashboardSceneForViewers` | Enables dashboard rendering using Scenes for viewer roles | | `dashboardScene` | Enables dashboard rendering using scenes for all roles | +| `ssoSettingsApi` | Enables the SSO settings API | | `logsInfiniteScrolling` | Enables infinite scrolling for the Logs panel in Explore and Dashboards | | `flameGraphItemCollapsing` | Allow collapsing of flame graph items | | `pluginsSkipHostEnvVars` | Disables passing host environment variable to plugin processes | @@ -186,4 +187,3 @@ The following toggles require explicitly setting Grafana's [app mode]({{< relref | `grafanaAPIServerWithExperimentalAPIs` | Register experimental APIs with the k8s API server | | `grafanaAPIServerEnsureKubectlAccess` | Start an additional https handler and write kubectl options | | `panelTitleSearchInV1` | Enable searching for dashboards using panel title in search v1 | -| `ssoSettingsApi` | Enables the SSO settings API | diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index aaa688bce03..9b29e18147b 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -1147,13 +1147,12 @@ var ( Created: time.Date(2023, time.November, 6, 12, 0, 0, 0, time.UTC), }, { - Name: "ssoSettingsApi", - Description: "Enables the SSO settings API", - RequiresDevMode: true, - Stage: FeatureStageExperimental, - FrontendOnly: false, - Owner: identityAccessTeam, - Created: time.Date(2023, time.November, 8, 12, 0, 0, 0, time.UTC), + Name: "ssoSettingsApi", + Description: "Enables the SSO settings API", + Stage: FeatureStageExperimental, + FrontendOnly: false, + Owner: identityAccessTeam, + Created: time.Date(2023, time.November, 8, 12, 0, 0, 0, time.UTC), }, { Name: "canvasPanelPanZoom", diff --git a/pkg/services/featuremgmt/toggles_gen.csv b/pkg/services/featuremgmt/toggles_gen.csv index e3ce87713c0..e3ec2dc65d7 100644 --- a/pkg/services/featuremgmt/toggles_gen.csv +++ b/pkg/services/featuremgmt/toggles_gen.csv @@ -135,7 +135,7 @@ dashboardSceneForViewers,experimental,@grafana/dashboards-squad,2023-11-02,false dashboardScene,experimental,@grafana/dashboards-squad,2023-11-13,false,false,false,true panelFilterVariable,experimental,@grafana/dashboards-squad,2023-11-03,false,false,false,true pdfTables,preview,@grafana/sharing-squad,2023-11-06,false,false,false,false -ssoSettingsApi,experimental,@grafana/identity-access-team,2023-11-08,true,false,false,false +ssoSettingsApi,experimental,@grafana/identity-access-team,2023-11-08,false,false,false,false canvasPanelPanZoom,preview,@grafana/dataviz-squad,2023-12-27,false,false,false,true logsInfiniteScrolling,experimental,@grafana/observability-logs,2023-11-09,false,false,false,true flameGraphItemCollapsing,experimental,@grafana/observability-traces-and-profiling,2023-11-09,false,false,false,true