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

[incubator-superset] branch dependabot/npm_and_yarn/superset-frontend/core-js-3.6.5 updated (8fc4e54 -> 23cad75)

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

github-bot pushed a change to branch dependabot/npm_and_yarn/superset-frontend/core-js-3.6.5
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


 discard 8fc4e54  build(deps): bump core-js from 3.2.1 to 3.6.5 in /superset-frontend
     add 5d9448f  feat: globally disable underscore for links in menu items (#11491)
     add 6c6ded1  fix: Update "View In SQL Lab" Flow to render source query from datasource object (#11476)
     add a874b14  refactor: Replace react-bootstrap Tabs with Antd Tabs in DashboardBuilder (#11160)
     add d7aa3d7  fix(dashboard): multiple lines and indentation when editing json (#11501)
     add fac29f9  refactor: rewrite and enhance chart control withVerification (#11435)
     add fd10c47  chore: remove sanitize (#11532)
     add edb9619  refactor: reduce number of api calls needed to fetch favorite status for charts and dashboards (#11502)
     add 5e32235  docs: add Xendit to users list (#11361)
     add 6f2e36d  fix(tests): flaky test with dttm on Query API (#11526)
     add eef4809  feat: annotation edit modal with antd datepicker (#11500)
     add 536346f  feat: annotation layers delete logic + linking w/ annotation view (#11530)
     add 15111db  refactor: Use Antd Menu in Menu component (#11528)
     add 1ebeffa  chore: remove directory importexport (#11531)
     add 937f9ca  refactor: Replace react-bootstrap dialogs with Antd dialogs (#11527)
     add 23cad75  build(deps): bump core-js from 3.2.1 to 3.6.5 in /superset-frontend

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   (8fc4e54)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-frontend/core-js-3.6.5 (23cad75)

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:
 INTHEWILD.md                                       |   1 +
 .../cypress/integration/dashboard/tabs.test.js     |  27 +-
 .../cypress/integration/explore/control.test.ts    |   4 +-
 superset-frontend/package-lock.json                | 703 ++++++++++++++-------
 superset-frontend/package.json                     |   4 +-
 .../spec/javascripts/components/Menu_spec.jsx      |   7 +-
 .../dashboard/components/DashboardBuilder_spec.jsx |   2 +-
 .../dashboard/components/PropertiesModal_spec.jsx  |   9 +-
 .../components/gridComponents/Tab_spec.jsx         |  38 --
 .../components/gridComponents/Tabs_spec.jsx        |  53 +-
 .../datasource/DatasourceModal_spec.jsx            |   4 +-
 .../components/withAsyncVerification_spec.tsx      | 142 +++++
 .../explore/components/withVerification_spec.jsx   | 127 ----
 .../AnnotationModal_spec.jsx}                      |  51 +-
 .../annotationlayers/AnnotationLayersList_spec.jsx |  50 +-
 .../SqlLab/components/ExploreCtasResultsButton.jsx |   6 -
 .../src/SqlLab/components/ExploreResultsButton.jsx |  33 +-
 .../index.tsx => common/components/DatePicker.tsx} |   7 +-
 .../src/common/components/Modal/Modal.tsx          |  16 +-
 .../src/common/components/Tabs/Tabs.tsx            |  54 +-
 superset-frontend/src/common/components/index.tsx  |  35 +-
 superset-frontend/src/components/FaveStar.tsx      |   6 +-
 .../src/components/ListView/ListView.tsx           |  17 +-
 .../src/components/ListViewCard/index.tsx          |  53 +-
 superset-frontend/src/components/Menu/Menu.tsx     | 147 ++---
 .../src/components/Menu/MenuObject.tsx             |  37 +-
 superset-frontend/src/components/Menu/NewMenu.tsx  |  16 +-
 superset-frontend/src/components/Menu/SubMenu.tsx  |   3 +-
 .../src/components/NavDropdown/index.tsx           |   9 -
 .../src/components/URLShortLinkButton.jsx          |   3 +-
 .../src/dashboard/components/DashboardBuilder.jsx  |   2 +-
 .../src/dashboard/components/PropertiesModal.jsx   | 110 ++--
 .../dashboard/components/gridComponents/Tab.jsx    |  54 +-
 .../dashboard/components/gridComponents/Tabs.jsx   | 137 ++--
 .../dashboard/stylesheets/components/index.less    |   1 -
 .../src/dashboard/stylesheets/components/tabs.less | 106 ----
 .../src/datasource/DatasourceModal.tsx             |  30 +-
 .../src/explore/actions/exploreActions.ts          |   3 +-
 .../src/explore/components/AdhocFilterOption.jsx   |  19 +-
 .../src/explore/components/AdhocMetricOption.jsx   |  19 +-
 .../src/explore/components/Control.tsx             |   2 +-
 .../src/explore/components/PropertiesModal.tsx     |  13 +-
 .../components/controls/AdhocFilterControl.jsx     |   2 +
 .../components/controls/DatasourceControl.jsx      |  23 +-
 .../explore/components/controls/MetricsControl.jsx |   2 +
 .../src/explore/components/controls/index.js       |  16 -
 .../components/controls/withAsyncVerification.tsx  | 224 +++++++
 .../components/controls/withVerification.jsx       |  92 ---
 .../src/messageToasts/actions/index.ts             |  47 +-
 .../src/messageToasts/reducers/index.js            |   6 +-
 superset-frontend/src/messageToasts/types.ts       |   3 +
 .../src/views/CRUD/annotation/AnnotationList.tsx   |  79 ++-
 .../src/views/CRUD/annotation/AnnotationModal.tsx  | 336 ++++++++++
 .../src/views/CRUD/annotation/types.ts             |  10 +-
 .../CRUD/annotationlayers/AnnotationLayerModal.tsx |   4 +-
 .../CRUD/annotationlayers/AnnotationLayersList.tsx | 153 ++++-
 .../src/views/CRUD/chart/ChartCard.tsx             |  17 +-
 .../src/views/CRUD/chart/ChartList.tsx             |  33 +-
 .../src/views/CRUD/dashboard/DashboardCard.tsx     |  31 +-
 .../src/views/CRUD/dashboard/DashboardList.tsx     |  49 +-
 superset-frontend/src/views/CRUD/hooks.ts          | 121 ++--
 superset-frontend/src/views/CRUD/types.ts          |  11 -
 superset-frontend/src/views/CRUD/utils.tsx         |   2 +-
 .../src/views/CRUD/welcome/ActivityTable.tsx       |   2 +-
 .../src/views/CRUD/welcome/ChartTable.tsx          |  16 +-
 .../src/views/CRUD/welcome/DashboardTable.tsx      |  33 +-
 .../src/views/CRUD/welcome/SavedQueries.tsx        |   3 +-
 superset-frontend/stylesheets/superset.less        |   6 -
 superset/annotation_layers/annotations/api.py      |   2 +
 superset/charts/api.py                             |  50 +-
 superset/charts/commands/export.py                 |   7 +-
 superset/charts/dao.py                             |  15 +
 superset/charts/schemas.py                         |  15 +
 .../commands/base.py => commands/export.py}        |   0
 superset/dashboards/api.py                         |  52 ++
 superset/dashboards/commands/export.py             |   7 +-
 superset/dashboards/dao.py                         |  17 +
 superset/dashboards/schemas.py                     |  13 +
 superset/databases/commands/export.py              |   9 +-
 superset/datasets/commands/export.py               |   9 +-
 superset/models/core.py                            |   6 +
 superset/queries/saved_queries/commands/export.py  |  11 +-
 superset/utils/dict_import_export.py               |  17 -
 tests/annotation_layers/api_tests.py               |   1 +
 tests/charts/api_tests.py                          |  31 +-
 tests/charts/commands_tests.py                     |   6 +-
 tests/dashboards/api_tests.py                      |  31 +-
 tests/dashboards/commands_tests.py                 |  27 +-
 tests/queries/api_tests.py                         |   7 +-
 tests/queries/saved_queries/commands_tests.py      |   6 +-
 90 files changed, 2416 insertions(+), 1404 deletions(-)
 create mode 100644 superset-frontend/spec/javascripts/explore/components/withAsyncVerification_spec.tsx
 delete mode 100644 superset-frontend/spec/javascripts/explore/components/withVerification_spec.jsx
 copy superset-frontend/spec/javascripts/views/CRUD/{csstemplates/CssTemplateModal_spec.jsx => annotation/AnnotationModal_spec.jsx} (58%)
 copy superset-frontend/src/{SqlLab/index.tsx => common/components/DatePicker.tsx} (83%)
 delete mode 100644 superset-frontend/src/dashboard/stylesheets/components/tabs.less
 create mode 100644 superset-frontend/src/explore/components/controls/withAsyncVerification.tsx
 delete mode 100644 superset-frontend/src/explore/components/controls/withVerification.jsx
 create mode 100644 superset-frontend/src/views/CRUD/annotation/AnnotationModal.tsx
 rename superset/{importexport/commands/base.py => commands/export.py} (100%)