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 2020/11/30 17:38:39 UTC

[incubator-superset] branch hugh/SO-1117-modal updated (f6c60e8 -> 1344681)

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

hugh pushed a change to branch hugh/SO-1117-modal
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


    from f6c60e8  add basic spec test
     add 43c69d5  fix: Adding and removing annotations (#11811)
     add ec01691  fix: wrong key used  FEATURE_FLAGS[LISTVIEW_DEFAULT_CARD_VIEW]  (#11824)
     add 671ff6c  fix: improve Avatar text size consistency (#11837)
     add e974b0b  Change subtabs order for Data tab (#11834)
     add 19e5ce0  chore: Move styles of Dashboard and FilterScopeSelector modals to Emotion (#11779)
     add 4666445  chore: type a couple easy to type files (#11838)
     add 9dd33d5  feat(saved queries): security perm simplification (#11764)
     add 5ebc09b  fix: Download as image not working on Dashboard view (#11778)
     add 0689738  feat: Sqllab to Explore UX improvements api changes (#11836)
     add 16e69f1  feat: Option to run npm dev-server (hot reload) while calling docker-compose up (#11238)
     add 1344681  fix conflicts

No new revisions were added by this update.

Summary of changes:
 docker-compose.yml                                 |   2 +-
 .../docker-frontend.sh                             |  12 +-
 .../CRUD/data/savedquery/SavedQueryList_spec.jsx   |   2 +-
 superset-frontend/src/common/components/index.tsx  |   1 +
 .../src/components/FacePile/index.tsx              |  23 +-
 superset-frontend/src/components/ModalTrigger.jsx  |   1 +
 .../dashboard/components/DeleteComponentModal.jsx  |  80 ------
 .../dashboard/components/HeaderActionsDropdown.jsx |  26 +-
 .../dashboard/components/RefreshIntervalModal.jsx  |  10 +-
 .../dashboard/components/SliceHeaderControls.jsx   |  20 +-
 .../components/filterscope/FilterScopeModal.jsx    |  12 +-
 .../components/filterscope/FilterScopeSelector.jsx |  24 +-
 .../src/dashboard/stylesheets/dashboard.less       |  36 ---
 .../stylesheets/filter-scope-selector.less         |   7 -
 .../src/explore/components/DisplayQueryButton.jsx  |   4 +
 .../components/controls/AnnotationLayer.jsx        |  87 ++++---
 .../components/controls/AnnotationLayerControl.jsx |  53 ++--
 .../src/setup/{setupClient.js => setupClient.ts}   |   8 +-
 .../{setupFormatters.js => setupFormatters.ts}     |   0
 .../{setupPluginsExtra.js => setupPluginsExtra.ts} |   0
 .../utils/{errorMessages.js => errorMessages.ts}   |   0
 superset-frontend/src/views/CRUD/data/common.ts    |  12 +-
 .../views/CRUD/data/savedquery/SavedQueryList.tsx  |   4 +-
 superset/config.py                                 |   4 +-
 superset/constants.py                              |  33 +++
 superset/datasets/commands/update.py               |   5 +-
 superset/datasets/dao.py                           |   2 +-
 .../migrations/shared}/__init__.py                 |   0
 superset/migrations/shared/security_converge.py    | 273 +++++++++++++++++++++
 ...e38177dbf641_security_converge_saved_queries.py |  85 +++++++
 superset/queries/saved_queries/api.py              |   6 +-
 superset/views/sql_lab.py                          |   8 +-
 tests/datasets/api_tests.py                        |  38 +++
 tests/queries/saved_queries/api_tests.py           |  16 +-
 tests/security/migrate_roles_tests.py              | 237 ++++++++++++++++++
 35 files changed, 895 insertions(+), 236 deletions(-)
 copy RELEASING/Dockerfile.make_tarball => docker/docker-frontend.sh (81%)
 mode change 100644 => 100755
 delete mode 100644 superset-frontend/src/dashboard/components/DeleteComponentModal.jsx
 rename superset-frontend/src/setup/{setupClient.js => setupClient.ts} (83%)
 rename superset-frontend/src/setup/{setupFormatters.js => setupFormatters.ts} (100%)
 rename superset-frontend/src/setup/{setupPluginsExtra.js => setupPluginsExtra.ts} (100%)
 rename superset-frontend/src/utils/{errorMessages.js => errorMessages.ts} (100%)
 copy {tests/security => superset/migrations/shared}/__init__.py (100%)
 create mode 100644 superset/migrations/shared/security_converge.py
 create mode 100644 superset/migrations/versions/e38177dbf641_security_converge_saved_queries.py
 create mode 100644 tests/security/migrate_roles_tests.py