You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ta...@apache.org on 2020/11/12 21:57:43 UTC

[incubator-superset] branch master updated (12cb27f -> 432e5ab)

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

tai pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


    from 12cb27f  feat: new reports models api (#11606)
     add 432e5ab  feat: Query History CRUD list view (#11574)

No new revisions were added by this update.

Summary of changes:
 .../images/icons/{placeholder.svg => offline.svg}  |   2 +-
 .../images/icons/{field_num.svg => queued.svg}     |   4 +-
 superset-frontend/images/icons/running.svg         |  21 ++
 superset-frontend/package-lock.json                |   2 +-
 .../views/CRUD/annotation/AnnotationList_spec.jsx  |   6 +-
 superset-frontend/src/SqlLab/components/App.jsx    |   9 +-
 superset-frontend/src/components/Icon/index.tsx    | 149 ++++-----
 .../src/components/ListView/ListView.tsx           |   4 +
 .../{components/ListView/index.ts => constants.ts} |   5 +-
 superset-frontend/src/featureFlags.ts              |   1 +
 superset-frontend/src/views/App.tsx                |   6 +
 superset-frontend/src/views/CRUD/data/common.ts    |   7 +
 .../src/views/CRUD/data/query/QueryList.test.tsx   | 100 ++++++
 .../src/views/CRUD/data/query/QueryList.tsx        | 349 +++++++++++++++++++++
 .../views/CRUD/data/savedquery/SavedQueryList.tsx  |   2 +-
 superset-frontend/src/views/CRUD/hooks.ts          |  10 +-
 superset/config.py                                 |   1 +
 superset/queries/api.py                            |   3 +-
 superset/views/base.py                             |  13 +
 superset/views/core.py                             |  11 +
 tests/queries/api_tests.py                         |   1 +
 21 files changed, 619 insertions(+), 87 deletions(-)
 copy superset-frontend/images/icons/{placeholder.svg => offline.svg} (93%)
 copy superset-frontend/images/icons/{field_num.svg => queued.svg} (75%)
 create mode 100644 superset-frontend/images/icons/running.svg
 copy superset-frontend/src/{components/ListView/index.ts => constants.ts} (88%)
 create mode 100644 superset-frontend/src/views/CRUD/data/query/QueryList.test.tsx
 create mode 100644 superset-frontend/src/views/CRUD/data/query/QueryList.tsx