chore(ff): deprecating `DRILL_TO_DETAIL` feature flag to launch it prime-time (#31412)
This commit is contained in:
parent
b54de611d3
commit
d68f8d11fe
|
|
@ -44,7 +44,6 @@ These features are **finished** but currently being tested. They are usable, but
|
||||||
- ALLOW_FULL_CSV_EXPORT
|
- ALLOW_FULL_CSV_EXPORT
|
||||||
- CACHE_IMPERSONATION
|
- CACHE_IMPERSONATION
|
||||||
- CONFIRM_DASHBOARD_DIFF
|
- CONFIRM_DASHBOARD_DIFF
|
||||||
- DRILL_TO_DETAIL
|
|
||||||
- DYNAMIC_PLUGINS
|
- DYNAMIC_PLUGINS
|
||||||
- ENABLE_SUPERSET_META_DB: [(docs)](https://superset.apache.org/docs/configuration/databases/#querying-across-databases)
|
- ENABLE_SUPERSET_META_DB: [(docs)](https://superset.apache.org/docs/configuration/databases/#querying-across-databases)
|
||||||
- ESTIMATE_QUERY_COST
|
- ESTIMATE_QUERY_COST
|
||||||
|
|
@ -99,5 +98,6 @@ These features flags currently default to True and **will be removed in a future
|
||||||
|
|
||||||
- AVOID_COLORS_COLLISION
|
- AVOID_COLORS_COLLISION
|
||||||
- DASHBOARD_CROSS_FILTERS
|
- DASHBOARD_CROSS_FILTERS
|
||||||
|
- DRILL_TO_DETAIL
|
||||||
- ENABLE_JAVASCRIPT_CONTROLS
|
- ENABLE_JAVASCRIPT_CONTROLS
|
||||||
- KV_STORE
|
- KV_STORE
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,7 @@ export enum FeatureFlag {
|
||||||
DashboardRbac = 'DASHBOARD_RBAC',
|
DashboardRbac = 'DASHBOARD_RBAC',
|
||||||
DatapanelClosedByDefault = 'DATAPANEL_CLOSED_BY_DEFAULT',
|
DatapanelClosedByDefault = 'DATAPANEL_CLOSED_BY_DEFAULT',
|
||||||
DisableLegacyDatasourceEditor = 'DISABLE_LEGACY_DATASOURCE_EDITOR',
|
DisableLegacyDatasourceEditor = 'DISABLE_LEGACY_DATASOURCE_EDITOR',
|
||||||
|
/** @deprecated */
|
||||||
DrillToDetail = 'DRILL_TO_DETAIL',
|
DrillToDetail = 'DRILL_TO_DETAIL',
|
||||||
DrillBy = 'DRILL_BY',
|
DrillBy = 'DRILL_BY',
|
||||||
DynamicPlugins = 'DYNAMIC_PLUGINS',
|
DynamicPlugins = 'DYNAMIC_PLUGINS',
|
||||||
|
|
|
||||||
|
|
@ -526,7 +526,7 @@ DEFAULT_FEATURE_FLAGS: dict[str, bool] = {
|
||||||
"CACHE_QUERY_BY_USER": False,
|
"CACHE_QUERY_BY_USER": False,
|
||||||
# Enable sharing charts with embedding
|
# Enable sharing charts with embedding
|
||||||
"EMBEDDABLE_CHARTS": True,
|
"EMBEDDABLE_CHARTS": True,
|
||||||
"DRILL_TO_DETAIL": True,
|
"DRILL_TO_DETAIL": True, # deprecated
|
||||||
"DRILL_BY": True,
|
"DRILL_BY": True,
|
||||||
"DATAPANEL_CLOSED_BY_DEFAULT": False,
|
"DATAPANEL_CLOSED_BY_DEFAULT": False,
|
||||||
"HORIZONTAL_FILTER_BAR": False,
|
"HORIZONTAL_FILTER_BAR": False,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue