ShareDrawer: GA enablement (#93344)

pull/93581/head
Juan Cabanas 10 months ago committed by GitHub
parent 08b2805d07
commit bafb69d877
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md
  2. 3
      pkg/services/featuremgmt/registry.go
  3. 2
      pkg/services/featuremgmt/toggles_gen.csv
  4. 12
      pkg/services/featuremgmt/toggles_gen.json

@ -67,6 +67,7 @@ Most [generally available](https://grafana.com/docs/release-life-cycle/#general-
| `groupToNestedTableTransformation` | Enables the group to nested table transformation | Yes |
| `tlsMemcached` | Use TLS-enabled memcached in the enterprise caching feature | Yes |
| `cloudWatchNewLabelParsing` | Updates CloudWatch label parsing to be more accurate | Yes |
| `newDashboardSharingComponent` | Enables the new sharing drawer design | |
| `pluginProxyPreserveTrailingSlash` | Preserve plugin proxy trailing slash. | |
| `openSearchBackendFlowEnabled` | Enables the backend query flow for Open Search datasource plugin | Yes |
| `cloudWatchRoundUpEndTime` | Round up end time for metric queries to the next minute to avoid missing data | Yes |
@ -184,7 +185,6 @@ Experimental features might be changed or removed without prior notice.
| `disableNumericMetricsSortingInExpressions` | In server-side expressions, disable the sorting of numeric-kind metrics by their metric name or labels. |
| `queryLibrary` | Enables Query Library feature in Explore |
| `logsExploreTableDefaultVisualization` | Sets the logs table as default visualisation in logs explore |
| `newDashboardSharingComponent` | Enables the new sharing drawer design |
| `alertingListViewV2` | Enables the new alert list view design |
| `notificationBanner` | Enables the notification banner UI and API |
| `dashboardRestore` | Enables deleted dashboard restore feature (backend only) |

@ -1218,9 +1218,10 @@ var (
{
Name: "newDashboardSharingComponent",
Description: "Enables the new sharing drawer design",
Stage: FeatureStageExperimental,
Stage: FeatureStageGeneralAvailability,
Owner: grafanaSharingSquad,
FrontendOnly: true,
Expression: "false", // disabled by default
},
{
Name: "alertingListViewV2",

@ -159,7 +159,7 @@ disableNumericMetricsSortingInExpressions,experimental,@grafana/observability-me
grafanaManagedRecordingRules,experimental,@grafana/alerting-squad,false,false,false
queryLibrary,experimental,@grafana/explore-squad,false,false,false
logsExploreTableDefaultVisualization,experimental,@grafana/observability-logs,false,false,true
newDashboardSharingComponent,experimental,@grafana/sharing-squad,false,false,true
newDashboardSharingComponent,GA,@grafana/sharing-squad,false,false,true
alertingListViewV2,experimental,@grafana/alerting-squad,false,false,true
notificationBanner,experimental,@grafana/grafana-frontend-platform,false,false,false
dashboardRestore,experimental,@grafana/search-and-storage,false,false,false

1 Name Stage Owner requiresDevMode RequiresRestart FrontendOnly
159 grafanaManagedRecordingRules experimental @grafana/alerting-squad false false false
160 queryLibrary experimental @grafana/explore-squad false false false
161 logsExploreTableDefaultVisualization experimental @grafana/observability-logs false false true
162 newDashboardSharingComponent experimental GA @grafana/sharing-squad false false true
163 alertingListViewV2 experimental @grafana/alerting-squad false false true
164 notificationBanner experimental @grafana/grafana-frontend-platform false false false
165 dashboardRestore experimental @grafana/search-and-storage false false false

@ -1964,14 +1964,18 @@
{
"metadata": {
"name": "newDashboardSharingComponent",
"resourceVersion": "1718727528075",
"creationTimestamp": "2024-05-03T15:02:18Z"
"resourceVersion": "1726241874335",
"creationTimestamp": "2024-05-03T15:02:18Z",
"annotations": {
"grafana.app/updatedTimestamp": "2024-09-13 15:37:54.335099 +0000 UTC"
}
},
"spec": {
"description": "Enables the new sharing drawer design",
"stage": "experimental",
"stage": "GA",
"codeowner": "@grafana/sharing-squad",
"frontend": true
"frontend": true,
"expression": "false"
}
},
{

Loading…
Cancel
Save