Plugins: Enable feature toggle angularDeprecationUI by default (#82880)

* Plugins: Enable feature toggle angularDeprecationUI by default

* Clarified feature toggle description
This commit is contained in:
Giuseppe Guerra 2024-02-16 13:46:14 +01:00 committed by GitHub
parent 592b830fd8
commit 6ce0efeb41
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 13 additions and 9 deletions

View File

@ -48,6 +48,7 @@ Some features are enabled by default. You can disable these feature by setting t
| `prometheusConfigOverhaulAuth` | Update the Prometheus configuration page with the new auth component | Yes |
| `influxdbSqlSupport` | Enable InfluxDB SQL query language support with new querying UI | Yes |
| `alertingNoDataErrorExecution` | Changes how Alerting state manager handles execution of NoData/Error | Yes |
| `angularDeprecationUI` | Display Angular warnings in dashboards and panels | Yes |
| `alertingInsights` | Show the new alerting insights landing page | Yes |
| `cloudWatchWildCardDimensionValues` | Fetches dimension values from CloudWatch to correctly label wildcard dimensions | Yes |
| `panelMonitoring` | Enables panel monitoring through logs and measurements | Yes |
@ -145,7 +146,6 @@ Experimental features might be changed or removed without prior notice.
| `metricsSummary` | Enables metrics summary queries in the Tempo data source |
| `featureToggleAdminPage` | Enable admin page for managing feature toggles from the Grafana front-end |
| `permissionsFilterRemoveSubquery` | Alternative permission filter implementation that does not use subqueries for fetching the dashboard folder |
| `angularDeprecationUI` | Display new Angular deprecation-related UI features |
| `sseGroupByDatasource` | Send query to the same datasource in a single request when using server side expressions. The `cloudWatchBatchQueries` feature toggle should be enabled if this used with CloudWatch. |
| `libraryPanelRBAC` | Enables RBAC support for library panels |
| `wargamesTesting` | Placeholder feature flag for internal testing |

View File

@ -718,10 +718,11 @@ var (
},
{
Name: "angularDeprecationUI",
Description: "Display new Angular deprecation-related UI features",
Stage: FeatureStageExperimental,
Description: "Display Angular warnings in dashboards and panels",
Stage: FeatureStageGeneralAvailability,
FrontendOnly: true,
Owner: grafanaPluginsPlatformSquad,
Expression: "true", // Enabled by default
},
{
Name: "dashgpt",

View File

@ -94,7 +94,7 @@ prometheusConfigOverhaulAuth,GA,@grafana/observability-metrics,false,false,false
configurableSchedulerTick,experimental,@grafana/alerting-squad,false,true,false
influxdbSqlSupport,GA,@grafana/observability-metrics,false,true,false
alertingNoDataErrorExecution,GA,@grafana/alerting-squad,false,true,false
angularDeprecationUI,experimental,@grafana/plugins-platform-backend,false,false,true
angularDeprecationUI,GA,@grafana/plugins-platform-backend,false,false,true
dashgpt,preview,@grafana/dashboards-squad,false,false,true
reportingRetries,preview,@grafana/sharing-squad,false,true,false
sseGroupByDatasource,experimental,@grafana/observability-metrics,false,false,false

1 Name Stage Owner requiresDevMode RequiresRestart FrontendOnly
94 configurableSchedulerTick experimental @grafana/alerting-squad false true false
95 influxdbSqlSupport GA @grafana/observability-metrics false true false
96 alertingNoDataErrorExecution GA @grafana/alerting-squad false true false
97 angularDeprecationUI experimental GA @grafana/plugins-platform-backend false false true
98 dashgpt preview @grafana/dashboards-squad false false true
99 reportingRetries preview @grafana/sharing-squad false true false
100 sseGroupByDatasource experimental @grafana/observability-metrics false false false

View File

@ -388,7 +388,7 @@ const (
FlagAlertingNoDataErrorExecution = "alertingNoDataErrorExecution"
// FlagAngularDeprecationUI
// Display new Angular deprecation-related UI features
// Display Angular warnings in dashboards and panels
FlagAngularDeprecationUI = "angularDeprecationUI"
// FlagDashgpt

View File

@ -527,12 +527,15 @@
{
"metadata": {
"name": "angularDeprecationUI",
"resourceVersion": "1707928895402",
"creationTimestamp": "2024-02-14T16:41:35Z"
"resourceVersion": "1708080773145",
"creationTimestamp": "2024-02-14T16:41:35Z",
"annotations": {
"grafana.app/updatedTimestamp": "2024-02-16 10:52:53.145203323 +0000 UTC"
}
},
"spec": {
"description": "Display new Angular deprecation-related UI features",
"stage": "experimental",
"description": "Display Angular warnings in dashboards and panels",
"stage": "GA",
"codeowner": "@grafana/plugins-platform-backend",
"frontend": true
}