This is an automated email from the ASF dual-hosted git repository. rusackas pushed a commit to branch enabling-2-flags-by-default in repository https://gitbox.apache.org/repos/asf/superset.git
commit d6af3dfefb3f0e402855c15fa9d4907924b00585 Author: Evan Rusackas <[email protected]> AuthorDate: Fri May 26 14:32:01 2023 -0600 feat(flags): enabling DASHBOARD_CROSS_FILTERS and DRILL_TO_DETAIL by default (board tasks 44, 46) --- superset/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superset/config.py b/superset/config.py index a424a09d23..6ab40157e6 100644 --- a/superset/config.py +++ b/superset/config.py @@ -446,7 +446,7 @@ DEFAULT_FEATURE_FLAGS: Dict[str, bool] = { # When True, this escapes HTML (rather than rendering it) in Markdown components "ESCAPE_MARKDOWN_HTML": False, "DASHBOARD_NATIVE_FILTERS": True, # deprecated - "DASHBOARD_CROSS_FILTERS": False, + "DASHBOARD_CROSS_FILTERS": True, # Feature is under active development and breaking changes are expected "DASHBOARD_NATIVE_FILTERS_SET": False, # deprecated "DASHBOARD_FILTERS_EXPERIMENTAL": False, # deprecated @@ -482,7 +482,7 @@ DEFAULT_FEATURE_FLAGS: Dict[str, bool] = { "CACHE_QUERY_BY_USER": False, # Enable sharing charts with embedding "EMBEDDABLE_CHARTS": True, - "DRILL_TO_DETAIL": False, + "DRILL_TO_DETAIL": True, "DRILL_BY": False, "DATAPANEL_CLOSED_BY_DEFAULT": False, "HORIZONTAL_FILTER_BAR": False,
