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 9134c843167..e0ca5eeec41 100644 --- a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md +++ b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md @@ -140,6 +140,7 @@ Experimental features might be changed or removed without prior notice. | `externalCorePlugins` | Allow core plugins to be loaded as external | | `pluginsAPIMetrics` | Sends metrics of public grafana packages usage by plugins | | `httpSLOLevels` | Adds SLO level to http request metrics | +| `idForwarding` | Generate signed id token for identity that can be forwarded to plugins and external services | | `panelMonitoring` | Enables panel monitoring through logs and measurements | | `enableNativeHTTPHistogram` | Enables native HTTP Histograms | | `formatString` | Enable format string transformer | @@ -172,12 +173,11 @@ Experimental features might be changed or removed without prior notice. The following toggles require explicitly setting Grafana's [app mode]({{< relref "../_index.md#app_mode" >}}) to 'development' before you can enable this feature toggle. These features tend to be experimental. -| Feature toggle name | Description | -| ------------------------------------- | -------------------------------------------------------------------------------------------- | -| `unifiedStorage` | SQL-based k8s storage | -| `externalServiceAuth` | Starts an OAuth2 authentication provider for external services | -| `grafanaAPIServerEnsureKubectlAccess` | Start an additional https handler and write kubectl options | -| `idForwarding` | Generate signed id token for identity that can be forwarded to plugins and external services | -| `externalServiceAccounts` | Automatic service account and token setup for plugins | -| `panelTitleSearchInV1` | Enable searching for dashboards using panel title in search v1 | -| `ssoSettingsApi` | Enables the SSO settings API | +| Feature toggle name | Description | +| ------------------------------------- | -------------------------------------------------------------- | +| `unifiedStorage` | SQL-based k8s storage | +| `externalServiceAuth` | Starts an OAuth2 authentication provider for external services | +| `grafanaAPIServerEnsureKubectlAccess` | Start an additional https handler and write kubectl options | +| `externalServiceAccounts` | Automatic service account and token setup for plugins | +| `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 17b5a294302..06caa9270a8 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -936,12 +936,11 @@ var ( Created: time.Date(2023, time.September, 22, 12, 0, 0, 0, time.UTC), }, { - Name: "idForwarding", - Description: "Generate signed id token for identity that can be forwarded to plugins and external services", - Stage: FeatureStageExperimental, - Owner: identityAccessTeam, - RequiresDevMode: true, - Created: time.Date(2023, time.September, 25, 12, 0, 0, 0, time.UTC), + Name: "idForwarding", + Description: "Generate signed id token for identity that can be forwarded to plugins and external services", + Stage: FeatureStageExperimental, + Owner: identityAccessTeam, + Created: time.Date(2023, time.September, 25, 12, 0, 0, 0, time.UTC), }, { Name: "cloudWatchWildCardDimensionValues", diff --git a/pkg/services/featuremgmt/toggles_gen.csv b/pkg/services/featuremgmt/toggles_gen.csv index 879667894c0..dde3c8e2e72 100644 --- a/pkg/services/featuremgmt/toggles_gen.csv +++ b/pkg/services/featuremgmt/toggles_gen.csv @@ -109,7 +109,7 @@ alertingInsights,GA,@grafana/alerting-squad,2023-09-14,false,false,false,true externalCorePlugins,experimental,@grafana/plugins-platform-backend,2023-09-22,false,false,false,false pluginsAPIMetrics,experimental,@grafana/plugins-platform-backend,2023-09-21,false,false,false,true httpSLOLevels,experimental,@grafana/hosted-grafana-team,2023-09-22,false,false,true,false -idForwarding,experimental,@grafana/identity-access-team,2023-09-25,true,false,false,false +idForwarding,experimental,@grafana/identity-access-team,2023-09-25,false,false,false,false cloudWatchWildCardDimensionValues,GA,@grafana/aws-datasources,2023-09-27,false,false,false,false externalServiceAccounts,experimental,@grafana/identity-access-team,2023-09-28,true,false,false,false panelMonitoring,experimental,@grafana/dataviz-squad,2023-10-08,false,false,false,true