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/10 16:50:26 UTC

[superset] branch hugh/fix-ssl-500 updated (a34e61c -> 7c74286)

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

hugh pushed a change to branch hugh/fix-ssl-500
in repository https://gitbox.apache.org/repos/asf/superset.git.


    from a34e61c  Merge branch 'master' of https://github.com/apache/superset into hugh/fix-ssl-500
     add 3712ee0  additional params field fixed (#16161)
     add 79e8d77  chore: remove TerserPlugin step for build (#16163)
     add bb1d8fe  fix: boolean type into SQL 'in' operator (#16107)
     add 07f3399  fix: Multiple dashboard refresh triggers for the same session (#16094)
     add 273ab3d  fix: Safari is not showing scroll bars in Explore (#16089)
     add a702487  feat: add sticky state to tables and loadingcards state. (#16102)
     add 6e1d16d  feat(explore): each control can define its own canDrop for dnd (#16090)
     add 5488a8a  add config to hide some user menu items (#16156)
     add 63ace7b  feat(cross-filters): add support for temporal filters (#16139)
     add f0e3b68  fix: ensure that users viewing chart does not automatically save edit data (#16077)
     add 7c74286  Merge branch 'master' of https://github.com/apache/superset into hugh/fix-ssl-500

No new revisions were added by this update.

Summary of changes:
 Dockerfile                                         |   2 +-
 superset-frontend/package-lock.json                | 605 ++++++++++-----------
 superset-frontend/package.json                     |  57 +-
 .../src/components/Menu/MenuRight.tsx              |   8 +-
 .../src/dashboard/components/Header/index.jsx      |   6 +-
 .../src/dashboard/util/setPeriodicRunner.ts        |   2 +-
 .../src/datasource/DatasourceEditor.jsx            |   2 +-
 .../src/explore/components/ExploreChartPanel.jsx   |   1 +
 .../explore/components/ExploreViewContainer.jsx    |   5 +-
 .../DndColumnSelectControl/DndSelectLabel.tsx      |   4 +-
 .../controls/DndColumnSelectControl/types.ts       |   7 +-
 .../src/views/CRUD/chart/ChartList.tsx             |  23 +-
 .../CRUD/data/database/DatabaseModal/index.tsx     |   7 +-
 superset-frontend/src/views/CRUD/storageKeys.ts    |   3 +-
 superset-frontend/src/views/CRUD/utils.tsx         |   5 +-
 .../src/views/CRUD/welcome/ActivityTable.tsx       |   6 +-
 .../src/views/CRUD/welcome/ChartTable.tsx          |   3 +-
 .../src/views/CRUD/welcome/DashboardTable.tsx      |   3 +-
 .../src/views/CRUD/welcome/SavedQueries.tsx        |   4 +-
 .../src/views/CRUD/welcome/Welcome.tsx             |  47 +-
 superset-frontend/webpack.config.js                |   9 -
 superset/charts/api.py                             |  12 +
 superset/charts/commands/create.py                 |   3 +
 superset/charts/commands/update.py                 |   4 +
 superset/charts/schemas.py                         |  25 +
 superset/common/query_object.py                    |   5 +-
 superset/config.py                                 |   3 +
 superset/connectors/base/models.py                 |   2 +
 superset/connectors/sqla/models.py                 |  65 ++-
 superset/db_engine_specs/base.py                   |   4 +-
 ...d20ba9ecb33_add_last_saved_at_to_slice_model.py |  66 +++
 superset/models/slice.py                           |   9 +-
 superset/typing.py                                 |   2 +-
 superset/utils/core.py                             | 123 +++--
 superset/views/base.py                             |   6 +-
 superset/views/core.py                             |   4 +-
 superset/viz.py                                    |   6 +-
 tests/integration_tests/charts/commands_tests.py   |  26 +
 tests/integration_tests/model_tests.py             |   9 +-
 tests/integration_tests/sqla_models_tests.py       |  39 ++
 tests/integration_tests/utils/core_tests.py        |  51 +-
 tests/integration_tests/utils_tests.py             |  60 +-
 tests/integration_tests/viz_tests.py               |  12 +-
 43 files changed, 852 insertions(+), 493 deletions(-)
 create mode 100644 superset/migrations/versions/6d20ba9ecb33_add_last_saved_at_to_slice_model.py