mirror of https://github.com/grafana/grafana.git
Bookmarks: Turn feature toggle on by default (#94194)
This commit is contained in:
parent
75640a6ad3
commit
c04027919b
|
|
@ -74,6 +74,7 @@ Most [generally available](https://grafana.com/docs/release-life-cycle/#general-
|
||||||
| `newDashboardSharingComponent` | Enables the new sharing drawer design | |
|
| `newDashboardSharingComponent` | Enables the new sharing drawer design | |
|
||||||
| `notificationBanner` | Enables the notification banner UI and API | Yes |
|
| `notificationBanner` | Enables the notification banner UI and API | Yes |
|
||||||
| `pluginProxyPreserveTrailingSlash` | Preserve plugin proxy trailing slash. | |
|
| `pluginProxyPreserveTrailingSlash` | Preserve plugin proxy trailing slash. | |
|
||||||
|
| `pinNavItems` | Enables pinning of nav items | Yes |
|
||||||
| `openSearchBackendFlowEnabled` | Enables the backend query flow for Open Search datasource plugin | Yes |
|
| `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 |
|
| `cloudWatchRoundUpEndTime` | Round up end time for metric queries to the next minute to avoid missing data | Yes |
|
||||||
|
|
||||||
|
|
@ -190,7 +191,6 @@ Experimental features might be changed or removed without prior notice.
|
||||||
| `alertingListViewV2` | Enables the new alert list view design |
|
| `alertingListViewV2` | Enables the new alert list view design |
|
||||||
| `dashboardRestore` | Enables deleted dashboard restore feature (backend only) |
|
| `dashboardRestore` | Enables deleted dashboard restore feature (backend only) |
|
||||||
| `alertingCentralAlertHistory` | Enables the new central alert history. |
|
| `alertingCentralAlertHistory` | Enables the new central alert history. |
|
||||||
| `pinNavItems` | Enables pinning of nav items |
|
|
||||||
| `failWrongDSUID` | Throws an error if a datasource has an invalid UIDs |
|
| `failWrongDSUID` | Throws an error if a datasource has an invalid UIDs |
|
||||||
| `alertingApiServer` | Register Alerting APIs with the K8s API server |
|
| `alertingApiServer` | Register Alerting APIs with the K8s API server |
|
||||||
| `dashboardRestoreUI` | Enables the frontend to be able to restore a recently deleted dashboard |
|
| `dashboardRestoreUI` | Enables the frontend to be able to restore a recently deleted dashboard |
|
||||||
|
|
|
||||||
|
|
@ -1303,8 +1303,9 @@ var (
|
||||||
{
|
{
|
||||||
Name: "pinNavItems",
|
Name: "pinNavItems",
|
||||||
Description: "Enables pinning of nav items",
|
Description: "Enables pinning of nav items",
|
||||||
Stage: FeatureStageExperimental,
|
Stage: FeatureStageGeneralAvailability,
|
||||||
Owner: grafanaFrontendPlatformSquad,
|
Owner: grafanaFrontendPlatformSquad,
|
||||||
|
Expression: "true", // enabled by default
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Name: "authZGRPCServer",
|
Name: "authZGRPCServer",
|
||||||
|
|
|
||||||
|
|
@ -170,7 +170,7 @@ preserveDashboardStateWhenNavigating,experimental,@grafana/dashboards-squad,fals
|
||||||
alertingCentralAlertHistory,experimental,@grafana/alerting-squad,false,false,true
|
alertingCentralAlertHistory,experimental,@grafana/alerting-squad,false,false,true
|
||||||
pluginProxyPreserveTrailingSlash,GA,@grafana/plugins-platform-backend,false,false,false
|
pluginProxyPreserveTrailingSlash,GA,@grafana/plugins-platform-backend,false,false,false
|
||||||
azureMonitorPrometheusExemplars,preview,@grafana/partner-datasources,false,false,false
|
azureMonitorPrometheusExemplars,preview,@grafana/partner-datasources,false,false,false
|
||||||
pinNavItems,experimental,@grafana/grafana-frontend-platform,false,false,false
|
pinNavItems,GA,@grafana/grafana-frontend-platform,false,false,false
|
||||||
authZGRPCServer,experimental,@grafana/identity-access-team,false,false,false
|
authZGRPCServer,experimental,@grafana/identity-access-team,false,false,false
|
||||||
openSearchBackendFlowEnabled,GA,@grafana/aws-datasources,false,false,false
|
openSearchBackendFlowEnabled,GA,@grafana/aws-datasources,false,false,false
|
||||||
ssoSettingsLDAP,experimental,@grafana/identity-access-team,false,false,false
|
ssoSettingsLDAP,experimental,@grafana/identity-access-team,false,false,false
|
||||||
|
|
|
||||||
|
|
|
@ -2280,13 +2280,17 @@
|
||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"name": "pinNavItems",
|
"name": "pinNavItems",
|
||||||
"resourceVersion": "1718727528075",
|
"resourceVersion": "1727948775526",
|
||||||
"creationTimestamp": "2024-06-10T11:40:03Z"
|
"creationTimestamp": "2024-06-10T11:40:03Z",
|
||||||
|
"annotations": {
|
||||||
|
"grafana.app/updatedTimestamp": "2024-10-03 09:46:15.526594 +0000 UTC"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"spec": {
|
"spec": {
|
||||||
"description": "Enables pinning of nav items",
|
"description": "Enables pinning of nav items",
|
||||||
"stage": "experimental",
|
"stage": "GA",
|
||||||
"codeowner": "@grafana/grafana-frontend-platform"
|
"codeowner": "@grafana/grafana-frontend-platform",
|
||||||
|
"expression": "true"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue