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 2022/09/30 16:55:12 UTC

[superset] branch revert-2224ebecf updated (af1347c61e -> ecb3668745)

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

hugh pushed a change to branch revert-2224ebecf
in repository https://gitbox.apache.org/repos/asf/superset.git


    from af1347c61e revert 2224ebecf
     add 7f971b4103 fix(report): Fix permission check for set up email report on charts/dashboards. Fixes #21559 (#21561)
     add f3465f5b22 chore(deps): bump minimist from 0.0.5 to 1.2.6 in /superset-frontend (#21654)
     add 9dd102f383 refactor: remove useless groupby from QueryObject (#21643)
     add f83af88fc7 feat: Added latin america countries to country map (#21352)
     add 6af35a7d98 fix: Selected tab after save and go to dashboard (#21630)
     add b2a360fa14 fix: Switch tab on drag hover (#21648)
     add eeb979c150 chore: Create dashboard with tier 1 and tier 2 charts (#21551)
     add 389fa31b89 fix: new welcome new users action (#21662)
     add 1d70079f71 fix(dashboard): Change text and icons in dashboard editmode (#21305)
     add 4c17f0e71e fix: time grain can't be removed in explore (#21644)
     add ecb3668745 Merge branch 'master' of https://github.com/apache/superset into revert-2224ebecf

No new revisions were added by this update.

Summary of changes:
 .github/workflows/welcome-new-users.yml            |    3 +-
 .../cypress/integration/chart_list/filter.test.ts  |    4 +-
 .../integration/dashboard/drilltodetail.test.ts    |  343 +++---
 .../cypress/integration/dashboard/editmode.test.ts |   22 +-
 .../cypress/integration/dashboard/utils.ts         |   14 +-
 .../integration/dashboard_list/list.test.ts        |    4 +-
 .../explore/visualizations/gauge.test.js           |    4 +-
 .../cypress-base/cypress/utils/urls.ts             |    3 +-
 superset-frontend/package-lock.json                |    4 +
 .../src/shared-controls/index.tsx                  |   14 +-
 .../scripts/Country Map GeoJSON Generator.ipynb    |  714 +++--------
 .../src/countries.ts                               |   38 +
 .../src/countries/argentina.geojson                |   30 +
 .../src/countries/bolivia.geojson                  |   15 +
 .../src/countries/chile.geojson                    |   22 +
 .../src/countries/colombia.geojson                 |   40 +
 .../src/countries/costa rica.geojson               |   13 +
 .../src/countries/cuba.geojson                     |   22 +
 .../src/countries/dominican republic.geojson       |   38 +
 .../src/countries/ecuador.geojson                  |   30 +
 .../src/countries/el salvador.geojson              |   20 +
 .../src/countries/guatemala.geojson                |   28 +
 .../src/countries/haiti.geojson                    |   16 +
 .../src/countries/honduras.geojson                 |   24 +
 .../src/countries/nicaragua.geojson                |   23 +
 .../src/countries/panama.geojson                   |   18 +
 .../src/countries/paraguay.geojson                 |   24 +
 .../src/countries/puerto rico.geojson              |    7 +
 .../src/countries/saint barthelemy.geojson         |    7 +
 .../src/countries/saint martin.geojson             |    7 +
 .../src/countries/venezuela.geojson                |   32 +
 .../plugin-chart-echarts/src/Gauge/buildQuery.ts   |    1 -
 .../test/Gauge/buildQuery.test.ts                  |    6 +-
 .../src/plugin/buildQuery.ts                       |    3 -
 .../test/plugin/buildQuery.test.ts                 |    2 +-
 .../HeaderReportDropdown/index.test.tsx            |   61 +
 .../ReportModal/HeaderReportDropdown/index.tsx     |    2 +-
 superset-frontend/src/dashboard/actions/hydrate.js |    2 +-
 .../src/dashboard/components/dnd/DragDroppable.jsx |    2 +
 .../src/dashboard/components/dnd/handleHover.js    |    2 +
 .../components/gridComponents/Markdown.jsx         |    8 +-
 .../dashboard/components/gridComponents/Tab.jsx    |   10 +
 .../dashboard/components/gridComponents/Tabs.jsx   |    1 +
 .../components/gridComponents/new/NewMarkdown.jsx  |    4 +-
 superset/cli/examples.py                           |    4 +-
 superset/examples/data_loading.py                  |    2 +-
 superset/examples/echarts_dashboard.py             |  250 ----
 superset/examples/supported_charts_dashboard.py    | 1302 ++++++++++++++++++++
 48 files changed, 2283 insertions(+), 962 deletions(-)
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/argentina.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/bolivia.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/chile.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/colombia.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/costa rica.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/cuba.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/dominican republic.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/ecuador.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/el salvador.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/guatemala.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/haiti.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/honduras.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/nicaragua.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/panama.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/paraguay.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/puerto rico.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/saint barthelemy.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/saint martin.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/venezuela.geojson
 delete mode 100644 superset/examples/echarts_dashboard.py
 create mode 100644 superset/examples/supported_charts_dashboard.py