Chore: remove `adhocFilterOneOf` toggle (#92979)

remove adhocFilterOneOf toggle
pull/92990/head
Ashley Harrison 9 months ago committed by GitHub
parent 085aaec958
commit 82fe497b9d
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. 6
      pkg/services/featuremgmt/registry.go
  4. 1
      pkg/services/featuremgmt/toggles_gen.csv
  5. 4
      pkg/services/featuremgmt/toggles_gen.go
  6. 3
      pkg/services/featuremgmt/toggles_gen.json

@ -192,7 +192,6 @@ Experimental features might be changed or removed without prior notice.
| `dashboardRestoreUI` | Enables the frontend to be able to restore a recently deleted dashboard |
| `backgroundPluginInstaller` | Enable background plugin installer |
| `dataplaneAggregator` | Enable grafana dataplane aggregator |
| `adhocFilterOneOf` | Exposes a new 'one of' operator for ad-hoc filters. This operator allows users to filter by multiple values in a single filter. |
| `newFiltersUI` | Enables new combobox style UI for the Ad hoc filters variable in scenes architecture |
| `lokiSendDashboardPanelNames` | Send dashboard and panel names to Loki when querying |
| `singleTopNav` | Unifies the top search bar and breadcrumb bar into one |

@ -201,7 +201,6 @@ export interface FeatureToggles {
prometheusAzureOverrideAudience?: boolean;
backgroundPluginInstaller?: boolean;
dataplaneAggregator?: boolean;
adhocFilterOneOf?: boolean;
newFiltersUI?: boolean;
lokiSendDashboardPanelNames?: boolean;
singleTopNav?: boolean;

@ -1386,12 +1386,6 @@ var (
Owner: grafanaAppPlatformSquad,
RequiresRestart: true,
},
{
Name: "adhocFilterOneOf",
Description: "Exposes a new 'one of' operator for ad-hoc filters. This operator allows users to filter by multiple values in a single filter.",
Stage: FeatureStageExperimental,
Owner: grafanaDashboardsSquad,
},
{
Name: "newFiltersUI",
Description: "Enables new combobox style UI for the Ad hoc filters variable in scenes architecture",

@ -182,7 +182,6 @@ cloudwatchMetricInsightsCrossAccount,preview,@grafana/aws-datasources,false,fals
prometheusAzureOverrideAudience,deprecated,@grafana/partner-datasources,false,false,false
backgroundPluginInstaller,experimental,@grafana/plugins-platform-backend,false,true,false
dataplaneAggregator,experimental,@grafana/grafana-app-platform-squad,false,true,false
adhocFilterOneOf,experimental,@grafana/dashboards-squad,false,false,false
newFiltersUI,experimental,@grafana/dashboards-squad,false,false,false
lokiSendDashboardPanelNames,experimental,@grafana/observability-logs,false,false,false
singleTopNav,experimental,@grafana/grafana-frontend-platform,false,false,true

1 Name Stage Owner requiresDevMode RequiresRestart FrontendOnly
182 prometheusAzureOverrideAudience deprecated @grafana/partner-datasources false false false
183 backgroundPluginInstaller experimental @grafana/plugins-platform-backend false true false
184 dataplaneAggregator experimental @grafana/grafana-app-platform-squad false true false
adhocFilterOneOf experimental @grafana/dashboards-squad false false false
185 newFiltersUI experimental @grafana/dashboards-squad false false false
186 lokiSendDashboardPanelNames experimental @grafana/observability-logs false false false
187 singleTopNav experimental @grafana/grafana-frontend-platform false false true

@ -739,10 +739,6 @@ const (
// Enable grafana dataplane aggregator
FlagDataplaneAggregator = "dataplaneAggregator"
// FlagAdhocFilterOneOf
// Exposes a new 'one of' operator for ad-hoc filters. This operator allows users to filter by multiple values in a single filter.
FlagAdhocFilterOneOf = "adhocFilterOneOf"
// FlagNewFiltersUI
// Enables new combobox style UI for the Ad hoc filters variable in scenes architecture
FlagNewFiltersUI = "newFiltersUI"

@ -52,7 +52,8 @@
"metadata": {
"name": "adhocFilterOneOf",
"resourceVersion": "1723119716623",
"creationTimestamp": "2024-08-08T12:21:56Z"
"creationTimestamp": "2024-08-08T12:21:56Z",
"deletionTimestamp": "2024-09-05T12:30:12Z"
},
"spec": {
"description": "Exposes a new 'one of' operator for ad-hoc filters. This operator allows users to filter by multiple values in a single filter.",

Loading…
Cancel
Save