You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by di...@apache.org on 2022/12/20 17:28:37 UTC

[superset] branch feat/disable-controls-sections updated (976ba4235e -> 5d5586065a)

This is an automated email from the ASF dual-hosted git repository.

diegopucci pushed a change to branch feat/disable-controls-sections
in repository https://gitbox.apache.org/repos/asf/superset.git


    from 976ba4235e Lint
     add fa919f3d8c test: Fix act errors in VizTypeControl test (#22424)
     add 4f9c2c8165 fix(hive): Fix regression from #21943 (#22431)
     add bdeedaaf80 chore: set Snowflake user agent (#22432)
     add 89bb6c024b build(deps): bump qs from 6.5.2 to 6.5.3 in /superset-frontend (#22343)
     add 2679ee2e46 fix(chart-table): Scrollbar causing header + footer overflow (#21064)
     add 277f8e04e2 fix: remove unsupported REST API search col with dotted notation on c… (#22440)
     add 291d776085 build(deps-dev): bump typescript from 4.2.3 to 4.9.4 in /superset-websocket (#22414)
     add f03c04a45a build(deps): bump uuid and @types/uuid in /superset-websocket (#22412)
     add 858796b98f chore(deps): bump express from 4.18.1 to 4.18.2 in /superset-websocket/utils/client-ws-app (#21754)
     add 71982ee174 chore: Re-add inheritance of Presto macros for Trino et al. (#22435)
     add 21b56b2d49 fix(cypress): Fix failing/flaky E2E tests (#22460)
     add b55ef5b514 fix: fix comment in Docker environment files (#22421)
     add 7f4e522f1a chore(viz): Rename legacy non-time-series Bar Chart (#22430)
     add 6b20e74442 fix: Create dataset polish/bug fix (#22262)
     add 5d0eb45fb7 Merge branch 'master' of https://github.com/apache/superset into feat/disable-controls-sections
     add 5d5586065a Only disable Predictive Analytics

No new revisions were added by this update.

Summary of changes:
 docker/.env                                        |   2 +-
 docker/.env-non-dev                                |   2 +-
 .../integration/dashboard/drilltodetail.test.ts    |   6 +-
 .../integration/dashboard/nativeFilters.test.ts    |   3 +-
 .../cypress/integration/dashboard/utils.ts         |   3 +-
 .../cypress/integration/explore/utils.ts           |   1 +
 superset-frontend/package-lock.json                | 108 +++---
 .../src/sections/advancedAnalytics.tsx             |  10 +-
 .../src/sections/forecastInterval.tsx              |  19 +-
 .../src/utils/disabledSectionRules.ts              |  34 --
 .../superset-ui-chart-controls/src/utils/index.ts  |   1 -
 .../test/utils/disabledSectionRules.test.ts        |  66 ----
 .../legacy-preset-chart-nvd3/src/DistBar/index.js  |   9 +-
 .../src/DataTable/hooks/useSticky.tsx              |  25 +-
 .../SqlLab/components/SqlEditorLeftBar/index.tsx   |  21 +-
 .../src/components/EmptyState/index.tsx            |  26 +-
 .../VizTypeControl/VizTypeControl.test.tsx         |  51 +--
 .../data/dataset/AddDataset/AddDataset.test.tsx    |   2 +-
 .../AddDataset/DatasetPanel/DatasetPanel.test.tsx  |   2 +-
 .../AddDataset/DatasetPanel/DatasetPanel.tsx       |  67 +++-
 .../data/dataset/AddDataset/Header/Header.test.tsx |  16 +-
 .../CRUD/data/dataset/AddDataset/Header/index.tsx  |  35 +-
 .../data/dataset/AddDataset/LeftPanel/index.tsx    |  38 +-
 .../dataset/DatasetLayout/DatasetLayout.test.tsx   |   2 +-
 .../src/views/CRUD/data/dataset/styles.ts          |  46 ++-
 superset-websocket/package-lock.json               |  42 +--
 superset-websocket/package.json                    |   6 +-
 .../utils/client-ws-app/package-lock.json          |  50 +--
 .../utils/client-ws-app/package.json               |   2 +-
 superset/charts/api.py                             |   4 +-
 superset/db_engine_specs/databricks.py             |  12 +-
 superset/db_engine_specs/hive.py                   |  33 +-
 superset/db_engine_specs/presto.py                 | 411 +++++++++++----------
 superset/db_engine_specs/snowflake.py              |  16 +-
 superset/db_engine_specs/trino.py                  |  33 +-
 .../db_engine_specs/databricks_tests.py            |  21 +-
 .../db_engine_specs/presto_tests.py                |   3 +-
 .../db_engine_specs/trino_tests.py                 |  16 +
 .../unit_tests/db_engine_specs/test_databricks.py  |  44 ++-
 tests/unit_tests/db_engine_specs/test_snowflake.py |  31 ++
 40 files changed, 712 insertions(+), 607 deletions(-)
 delete mode 100644 superset-frontend/packages/superset-ui-chart-controls/src/utils/disabledSectionRules.ts
 delete mode 100644 superset-frontend/packages/superset-ui-chart-controls/test/utils/disabledSectionRules.test.ts