Chore: Promote pluginsDetailsRightPanel to general availability (#103269)

Chore: Promote pluginsDetailsRightPanel to general availability and deafult
pull/102879/head
Yulia Shanyrova 3 months ago committed by GitHub
parent 08042ae827
commit 332f041c91
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md
  2. 1
      packages/grafana-data/src/types/featureToggles.gen.ts
  3. 3
      pkg/services/featuremgmt/registry.go
  4. 2
      pkg/services/featuremgmt/toggles_gen.csv
  5. 9
      pkg/services/featuremgmt/toggles_gen.json

@ -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 |

@ -236,6 +236,7 @@ export interface FeatureToggles {
frontendSandboxMonitorOnly?: boolean;
/**
* Enables right panel for the plugins details page
* @default true
*/
pluginsDetailsRightPanel?: boolean;
/**

@ -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,
},
{

@ -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

1 Name Stage Owner requiresDevMode RequiresRestart FrontendOnly
50 lokiPredefinedOperations experimental @grafana/observability-logs false false true
51 pluginsFrontendSandbox privatePreview @grafana/plugins-platform-backend false false false
52 frontendSandboxMonitorOnly privatePreview @grafana/plugins-platform-backend false false true
53 pluginsDetailsRightPanel privatePreview GA @grafana/plugins-platform-backend false false true
54 sqlDatasourceDatabaseSelection preview @grafana/dataviz-squad false false true
55 recordedQueriesMulti GA @grafana/observability-metrics false false false
56 logsExploreTableVisualisation GA @grafana/observability-logs false false true

@ -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"
}
},
{

Loading…
Cancel
Save