You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by yj...@apache.org on 2020/11/30 17:49:54 UTC

[incubator-superset] branch perf-recent-activity updated (f0c85ee -> d73cf14)

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

yjc pushed a change to branch perf-recent-activity
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


 discard f0c85ee  fix pylint
 discard 926f436  perf: improve loading speed of recent activities
     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 4d91953  perf: improve loading speed of recent activities
     add d73cf14  fix pylint

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (f0c85ee)
            \
             N -- N -- N   refs/heads/perf-recent-activity (d73cf14)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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 +
 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 +
 .../src/setup/{setupClient.js => setupClient.ts}   |   8 +-
 .../{setupFormatters.js => setupFormatters.ts}     |   0
 .../{setupPluginsExtra.js => setupPluginsExtra.ts} |   0
 .../utils/{errorMessages.js => errorMessages.ts}   |   0
 .../views/CRUD/data/savedquery/SavedQueryList.tsx  |   4 +-
 superset/constants.py                              |  33 +++
 superset/datasets/api.py                           |  14 +-
 superset/datasets/commands/update.py               |  32 ++-
 superset/datasets/dao.py                           |  15 +-
 .../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 ++++++++++++++++++
 31 files changed, 840 insertions(+), 166 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