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 2021/05/04 18:36:33 UTC

[superset] branch upgrade-emotion updated (e3a4980 -> 06440be)

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

yjc pushed a change to branch upgrade-emotion
in repository https://gitbox.apache.org/repos/asf/superset.git.


 discard e3a4980  Fix failing tests
 discard a9f87e1  Add emotion/jest
 discard 279eec5  chore: upgrade @emotion
     add 9a22fb0  fix: CSV Export permission is not consistent (#13713)
     add 582900c  perf(native-filters): Load native filters after charts (#14443)
     add 158ac30  chore: bump table plugin to 0.17.42 (#14460)
     add 21cf12a  chore(dashboard): Integrate dashboard app into the SPA bundle (#14356)
     add a99f1aa  chore: upgrade @emotion
     add de4c36e  Add emotion/jest
     add 06440be  Fix failing tests

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   (e3a4980)
            \
             N -- N -- N   refs/heads/upgrade-emotion (06440be)

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:
 superset-frontend/package-lock.json                | 14 +++---
 superset-frontend/spec/fixtures/mockStore.js       |  2 +-
 .../util/getFormDataWithExtraFilters_spec.ts       | 12 ++++-
 .../components/ExploreActionButtons_spec.jsx       | 44 ++++++++++++++++-
 superset-frontend/src/chart/Chart.jsx              |  1 +
 .../src/components/Checkbox/Checkbox.test.tsx      |  8 +---
 .../src/components/ListViewCard/index.tsx          | 34 +++++++++----
 superset-frontend/src/components/Menu/Menu.tsx     | 13 +++--
 superset-frontend/src/dashboard/App.jsx            | 52 --------------------
 .../DashboardBuilder/DashboardBuilder.tsx          |  2 -
 .../nativeFilters/FilterBar/FilterBar.test.tsx     |  7 ++-
 .../components/nativeFilters/FilterBar/index.tsx   | 11 ++++-
 .../components/nativeFilters/FilterBar/state.ts    | 49 ++++++++++++++++++-
 .../src/dashboard/containers/DashboardPage.tsx     | 44 +++++++++--------
 superset-frontend/src/dashboard/index.jsx          | 45 -----------------
 superset-frontend/src/dashboard/reducers/index.js  | 48 -------------------
 superset-frontend/src/dashboard/types.ts           |  8 ++--
 .../explore/components/ExploreActionButtons.tsx    | 22 +++++----
 .../src/explore/components/ExploreChartHeader.jsx  |  2 +-
 superset-frontend/src/utils/urlUtils.ts            |  6 ++-
 superset-frontend/src/views/App.tsx                | 56 ++++++++++++----------
 .../src/views/CRUD/dashboard/DashboardCard.tsx     |  5 +-
 .../views/CRUD/dashboard/DashboardList.test.jsx    | 17 ++++---
 .../src/views/CRUD/dashboard/DashboardList.tsx     |  3 +-
 superset-frontend/src/views/routes.test.tsx        |  5 ++
 superset-frontend/src/views/routes.tsx             | 14 +++++-
 superset-frontend/src/views/store.ts               | 43 +++++++++++++++--
 superset-frontend/tsconfig.json                    |  3 +-
 superset-frontend/webpack.config.js                |  7 ++-
 superset/charts/api.py                             |  6 ++-
 superset/cli.py                                    |  7 +++
 superset/templates/superset/dashboard.html         | 32 -------------
 .../superset/dashboard_v1_deprecated.html          | 28 -----------
 .../superset/{crud_views.html => spa.html}         |  2 +-
 superset/views/base.py                             | 12 ++---
 superset/views/core.py                             | 25 ++++++----
 tests/base_api_tests.py                            |  4 +-
 tests/charts/api_tests.py                          | 13 +++++
 tests/dashboard_tests.py                           |  3 +-
 tests/dashboards/security/base_case.py             |  8 ----
 .../dashboards/security/security_dataset_tests.py  |  7 +--
 tests/dashboards/security/security_rbac_tests.py   |  8 ++--
 42 files changed, 376 insertions(+), 356 deletions(-)
 delete mode 100644 superset-frontend/src/dashboard/App.jsx
 delete mode 100644 superset-frontend/src/dashboard/index.jsx
 delete mode 100644 superset-frontend/src/dashboard/reducers/index.js
 delete mode 100644 superset/templates/superset/dashboard.html
 delete mode 100644 superset/templates/superset/dashboard_v1_deprecated.html
 rename superset/templates/superset/{crud_views.html => spa.html} (96%)