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 22b0220bf3d..9518bc940e8 100644 --- a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md +++ b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md @@ -35,6 +35,7 @@ Most [generally available](https://grafana.com/docs/release-life-cycle/#general- | `prometheusRunQueriesInParallel` | Enables running Prometheus queries in parallel | Yes | | `dataplaneFrontendFallback` | Support dataplane contract field name change for transformations and field name matchers where the name is different | Yes | | `unifiedRequestLog` | Writes error logs to the request logger | Yes | +| `pluginsDetailsRightPanel` | Enables right panel for the plugins details page | Yes | | `recordedQueriesMulti` | Enables writing multiple items from a single query within Recorded Queries | Yes | | `logsExploreTableVisualisation` | A table visualisation for logs in Explore | Yes | | `transformationsRedesign` | Enables the transformations redesign | Yes | diff --git a/packages/grafana-data/src/types/featureToggles.gen.ts b/packages/grafana-data/src/types/featureToggles.gen.ts index 7170521f9df..2dbc0e19f47 100644 --- a/packages/grafana-data/src/types/featureToggles.gen.ts +++ b/packages/grafana-data/src/types/featureToggles.gen.ts @@ -236,6 +236,7 @@ export interface FeatureToggles { frontendSandboxMonitorOnly?: boolean; /** * Enables right panel for the plugins details page + * @default true */ pluginsDetailsRightPanel?: boolean; /** diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index f28f1aa23b0..7ed86e26451 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -383,8 +383,9 @@ var ( { Name: "pluginsDetailsRightPanel", Description: "Enables right panel for the plugins details page", - Stage: FeatureStagePrivatePreview, + Stage: FeatureStageGeneralAvailability, FrontendOnly: true, + Expression: "true", Owner: grafanaPluginsPlatformSquad, }, { diff --git a/pkg/services/featuremgmt/toggles_gen.csv b/pkg/services/featuremgmt/toggles_gen.csv index 23ecb8bede8..51116246f25 100644 --- a/pkg/services/featuremgmt/toggles_gen.csv +++ b/pkg/services/featuremgmt/toggles_gen.csv @@ -50,7 +50,7 @@ extraThemes,experimental,@grafana/grafana-frontend-platform,false,false,true lokiPredefinedOperations,experimental,@grafana/observability-logs,false,false,true pluginsFrontendSandbox,privatePreview,@grafana/plugins-platform-backend,false,false,false frontendSandboxMonitorOnly,privatePreview,@grafana/plugins-platform-backend,false,false,true -pluginsDetailsRightPanel,privatePreview,@grafana/plugins-platform-backend,false,false,true +pluginsDetailsRightPanel,GA,@grafana/plugins-platform-backend,false,false,true sqlDatasourceDatabaseSelection,preview,@grafana/dataviz-squad,false,false,true recordedQueriesMulti,GA,@grafana/observability-metrics,false,false,false logsExploreTableVisualisation,GA,@grafana/observability-logs,false,false,true diff --git a/pkg/services/featuremgmt/toggles_gen.json b/pkg/services/featuremgmt/toggles_gen.json index 1eb711cbca6..3173729f724 100644 --- a/pkg/services/featuremgmt/toggles_gen.json +++ b/pkg/services/featuremgmt/toggles_gen.json @@ -3284,17 +3284,18 @@ { "metadata": { "name": "pluginsDetailsRightPanel", - "resourceVersion": "1741965023728", + "resourceVersion": "1743591171870", "creationTimestamp": "2024-08-13T09:55:30Z", "annotations": { - "grafana.app/updatedTimestamp": "2025-03-14 15:10:23.728257 +0000 UTC" + "grafana.app/updatedTimestamp": "2025-04-02 10:52:51.870249 +0000 UTC" } }, "spec": { "description": "Enables right panel for the plugins details page", - "stage": "privatePreview", + "stage": "GA", "codeowner": "@grafana/plugins-platform-backend", - "frontend": true + "frontend": true, + "expression": "true" } }, {