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/10/11 14:49:50 UTC

[superset] branch feat/d2d-charts-crud-filter-col updated (ede97f2dc4 -> bf6052ebd7)

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

diegopucci pushed a change to branch feat/d2d-charts-crud-filter-col
in repository https://gitbox.apache.org/repos/asf/superset.git


    from ede97f2dc4 Update tests
     add 78b41f7631 Minor enhancements
     add 20b9dc8444 feat(embedded-dashboard): Share Switchboard State for Sending Events from Plugins (#21319)
     add 91f0de0c5d fix: database schema selector on import data (#21759)
     add d7ee443a13 fix(sqllab): resultset disappeared on switching tabs (#21741)
     add db075d4157 chore(deps): bump react-map-gl from 4.0.10 to 6.1.19 (#21748)
     add ba3275a4d0 fix: flash message on database data upload forms (#21761)
     add 070b865e32 chore(explore): Add tests for getControlValuesCompatibleWithDatasource (#21744)
     add 406e44bba1 perf(dashboard): Virtualization POC (#21438)
     add bf6052ebd7 Merge branch 'master' of https://github.com/apache/superset into feat/d2d-charts-crud-filter-col

No new revisions were added by this update.

Summary of changes:
 superset-frontend/package-lock.json                | 584 ++++++---------------
 superset-frontend/package.json                     |   3 +-
 .../superset-ui-core/src/utils/featureFlags.ts     |   1 +
 .../packages/superset-ui-switchboard/src/index.ts  |   3 +
 .../src/switchboard.test.ts                        |  27 +-
 .../superset-ui-switchboard/src/switchboard.ts     |  36 +-
 .../legacy-plugin-chart-map-box/package.json       |  38 +-
 .../legacy-preset-chart-deckgl/package.json        |  10 +-
 superset-frontend/src/components/Chart/Chart.jsx   |  19 +-
 .../src/components/FilterableTable/index.tsx       |  29 +-
 .../src/components/ListView/CrossLinks.test.tsx    |   6 +-
 .../components/ListView/CrossLinksTooltip.test.tsx |   2 +-
 .../dashboard/components/gridComponents/Chart.jsx  |   3 +
 .../components/gridComponents/ChartHolder.test.tsx |   3 +-
 .../components/gridComponents/ChartHolder.tsx      |   4 +
 .../dashboard/components/gridComponents/Row.jsx    |  49 ++
 superset-frontend/src/embedded/index.tsx           |  14 +-
 ...etControlValuesCompatibleWithDatasource.test.ts | 285 ++++++++++
 .../src/utils/isBot.ts                             |   5 +-
 .../utils/isDashboardVirtualizationEnabled.ts}     |  17 +-
 .../src/views/CRUD/chart/ChartList.tsx             | 100 ++--
 superset/config.py                                 |   2 +-
 .../form_view/columnar_to_database_view/edit.html  |  43 +-
 .../form_view/csv_to_database_view/edit.html       |  43 +-
 .../form_view/database_schemas_selector.html       |  70 +++
 .../form_view/excel_to_database_view/edit.html     |  43 +-
 superset/views/base.py                             |   1 +
 superset/views/database/views.py                   |  22 +-
 28 files changed, 779 insertions(+), 683 deletions(-)
 create mode 100644 superset-frontend/src/explore/controlUtils/getControlValuesCompatibleWithDatasource.test.ts
 copy docs/babel.config.js => superset-frontend/src/utils/isBot.ts (85%)
 copy superset-frontend/{packages/superset-ui-chart-controls/src/utils/defineSavedMetrics.ts => src/utils/isDashboardVirtualizationEnabled.ts} (69%)
 create mode 100644 superset/templates/superset/form_view/database_schemas_selector.html