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

[incubator-superset] branch dependabot/npm_and_yarn/superset-frontend/emotion/core-10.0.35 updated (8a9f282 -> e97f719)

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

maximebeauchemin pushed a change to branch dependabot/npm_and_yarn/superset-frontend/emotion/core-10.0.35
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


 discard 8a9f282  freeze flaky unit test
 discard 7124146  build(deps): bump @emotion/core in /superset-frontend
     add e3b6dbe  chore: run 'npm audit fix', bump react-syntax-highlighter (#11512)
     add 854a461  feat: make logo link point to welcome page (#11519)
     add 19f2deb  refactor: Replace react-bootstrap Modals with Antd in Explore (#11389)
     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 ec054e1  docs: add Avesta to users list (#11551)
     add 094359c  fix: add sort option to filters, sort chart list filter options (#11370)
     add 6981017  style: database modal updates (#11311)
     add ad98981  refactor: Replace react-bootstrap MenuItems with Antd Menu (#11487)
     add 128ddfa  fix: Pasting text issues in MetricsControl and AdhocFilterControl inputs (#11445)
     add d999802  Front end for VERSIONED_EXPORT (#11559)
     add ef7087a  fix(dashboard): properly unset mountedTab in  reducer (#11558)
     add 3e35ddd  refactor: Replace react-bootstrap MenuItems with Antd Menu (#11555)
     add 280ba95  chore: Cypress dashboard list selectors refactor (#11314)
     add 52145f8  build(deps): bump core-js from 3.2.1 to 3.6.5 in /superset-frontend (#11522)
     add e97f719  build(deps): bump @emotion/core 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   (8a9f282)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-frontend/emotion/core-10.0.35 (e97f719)

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                                       |   2 +
 .../cypress/integration/dashboard/controls.test.js |  35 +-
 .../cypress/integration/dashboard/tabs.test.js     |  27 +-
 .../integration/dashboard_list/card_view.test.ts   |  79 +-
 .../integration/dashboard_list/filter.test.ts      |  36 +-
 .../integration/dashboard_list/list_view.test.ts   |  34 +-
 .../cypress/integration/explore/control.test.ts    |   4 +-
 .../cypress/integration/explore/link.test.js       |   4 +-
 superset-frontend/package-lock.json                | 799 +++++++++++++--------
 superset-frontend/package.json                     |   8 +-
 .../spec/javascripts/components/Menu_spec.jsx      |   7 +-
 .../spec/javascripts/components/SubMenu_spec.jsx   |   6 +-
 .../dashboard/components/DashboardBuilder_spec.jsx |   2 +-
 .../components/HeaderActionsDropdown_spec.jsx      |  15 +-
 .../dashboard/components/PropertiesModal_spec.jsx  |   9 +-
 .../components/gridComponents/Header_spec.jsx      |   2 +-
 .../components/gridComponents/Markdown_spec.jsx    |   2 +-
 .../components/gridComponents/Tab_spec.jsx         |  38 -
 .../components/gridComponents/Tabs_spec.jsx        |  53 +-
 .../datasource/DatasourceModal_spec.jsx            |   4 +-
 .../explore/components/AdhocFilterControl_spec.jsx |  14 +-
 .../explore/components/MetricsControl_spec.jsx     |  26 +-
 .../explore/components/SaveModal_spec.jsx          |   7 +-
 .../explore/components/VizTypeControl_spec.jsx     |   8 +-
 .../components/withAsyncVerification_spec.tsx      | 142 ++++
 .../explore/components/withVerification_spec.jsx   | 127 ----
 .../AnnotationModal_spec.jsx}                      |  51 +-
 .../annotationlayers/AnnotationLayersList_spec.jsx |  50 +-
 .../views/CRUD/welcome/DashboardTable_spec.tsx     |   4 +-
 .../views/CRUD/welcome/SavedQueries_spec.tsx       |   4 +-
 .../SqlLab/components/ExploreCtasResultsButton.jsx |   6 -
 .../src/SqlLab/components/ExploreResultsButton.jsx |  33 +-
 .../index.tsx => common/components/DatePicker.tsx} |   7 +-
 .../src/common/components/InfoTooltip.tsx          |  80 +++
 .../src/common/components/Modal/Modal.tsx          |  20 +-
 .../src/common/components/Tabs/Tabs.tsx            |  54 +-
 .../src/common/components/common.stories.tsx       |  49 ++
 superset-frontend/src/common/components/index.tsx  |  37 +-
 superset-frontend/src/components/Button/index.tsx  |  18 +-
 .../src/components/CopyToClipboard.jsx             |  29 +-
 superset-frontend/src/components/FaveStar.tsx      |   6 +-
 .../src/components/ListView/Filters.tsx            |   1 +
 .../src/components/ListView/ListView.tsx           |  17 +-
 .../src/components/ListViewCard/index.tsx          |  53 +-
 .../src/components/Menu/LanguagePicker.tsx         |  30 +-
 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  |  21 +-
 .../src/components/NavDropdown/index.tsx           |   9 -
 .../src/components/URLShortLinkButton.jsx          |   3 +-
 .../src/dashboard/components/CssEditor.jsx         |   1 -
 .../src/dashboard/components/DashboardBuilder.jsx  |   2 +-
 .../dashboard/components/HeaderActionsDropdown.jsx | 225 +++---
 .../src/dashboard/components/PropertiesModal.jsx   | 112 ++-
 .../dashboard/components/RefreshIntervalModal.jsx  |   1 -
 .../src/dashboard/components/SaveModal.jsx         |   3 -
 .../dashboard/components/gridComponents/Tab.jsx    |  54 +-
 .../dashboard/components/gridComponents/Tabs.jsx   | 137 ++--
 .../dashboard/components/menu/PopoverDropdown.jsx  |  62 +-
 .../src/dashboard/reducers/dashboardState.js       |   9 +-
 .../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     | 106 ++-
 .../src/explore/components/SaveModal.jsx           |  79 +-
 .../components/controls/AdhocFilterControl.jsx     |   7 +-
 .../components/controls/DatasourceControl.jsx      |  23 +-
 .../components/controls/DateFilterControl.jsx      |  71 +-
 .../explore/components/controls/MetricsControl.jsx |  17 +-
 .../explore/components/controls/VizTypeControl.jsx | 215 +++---
 .../src/explore/components/controls/index.js       |  16 -
 .../components/controls/withAsyncVerification.tsx  | 224 ++++++
 .../components/controls/withVerification.jsx       |  92 ---
 superset-frontend/src/featureFlags.ts              |   1 +
 .../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             |  31 +-
 .../src/views/CRUD/chart/ChartList.tsx             | 106 ++-
 .../src/views/CRUD/dashboard/DashboardCard.tsx     |  33 +-
 .../src/views/CRUD/dashboard/DashboardList.tsx     |  49 +-
 .../src/views/CRUD/data/database/DatabaseList.tsx  |  65 +-
 .../src/views/CRUD/data/database/DatabaseModal.tsx |  67 +-
 .../src/views/CRUD/data/dataset/DatasetList.tsx    |  63 +-
 superset-frontend/src/views/CRUD/hooks.ts          | 121 ++--
 superset-frontend/src/views/CRUD/types.ts          |  11 -
 superset-frontend/src/views/CRUD/utils.tsx         |  10 +-
 .../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/config.py                                 |   1 +
 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 -
 superset/views/base.py                             |  18 +-
 superset/views/database/views.py                   |   4 +-
 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                         |  27 +-
 tests/queries/saved_queries/commands_tests.py      |   6 +-
 127 files changed, 3449 insertions(+), 2096 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%)
 create mode 100644 superset-frontend/src/common/components/InfoTooltip.tsx
 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%)