You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2021/08/23 18:59:40 UTC

[superset] branch add-activate-cmd updated (0913dfd -> 46775ea)

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

hugh pushed a change to branch add-activate-cmd
in repository https://gitbox.apache.org/repos/asf/superset.git.


    from 0913dfd  Update Makefile
     add bc4b6f0  fix(pylint): Fix master (#16405)
     add 0cdc767  chore: Displays the dataset description in a tooltip in the datasets list (#16392)
     add c768941  chore: Changes the DatabaseSelector to use the new Select component (#16334)
     add 46775ea  Merge branch 'master' of https://github.com/apache/superset into add-activate-cmd

No new revisions were added by this update.

Summary of changes:
 .../javascripts/sqllab/SqlEditorLeftBar_spec.jsx   |  10 +-
 .../src/components/CertifiedIcon/index.tsx         |   9 +-
 .../DatabaseSelector/DatabaseSelector.test.tsx     |  62 +--
 .../src/components/DatabaseSelector/index.tsx      | 310 +++++++------
 superset-frontend/src/components/Icons/Icon.tsx    |   8 +-
 .../src/components/InfoTooltip/index.tsx           |  10 +-
 superset-frontend/src/components/Select/Select.tsx |  76 ++--
 .../TableSelector/TableSelector.test.jsx           | 291 -------------
 .../TableSelector/TableSelector.test.tsx           |  91 ++++
 .../src/components/TableSelector/index.tsx         | 484 +++++++++++----------
 .../components/WarningIconWithTooltip/index.tsx    |   6 +-
 .../src/datasource/DatasourceEditor.jsx            | 132 +++---
 .../controls/DatasourceControl/index.jsx           |   5 +-
 .../src/views/CRUD/data/dataset/DatasetList.tsx    |   7 +
 superset/connectors/sqla/models.py                 |   5 +-
 superset/datasets/api.py                           |   2 +-
 superset/models/slice.py                           |   2 +-
 superset/views/core.py                             |  21 +-
 tests/integration_tests/datasets/api_tests.py      |  14 +-
 19 files changed, 710 insertions(+), 835 deletions(-)
 delete mode 100644 superset-frontend/src/components/TableSelector/TableSelector.test.jsx
 create mode 100644 superset-frontend/src/components/TableSelector/TableSelector.test.tsx