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 2021/08/03 20:29:02 UTC

[superset] 03/06: Merge branch 'master' of https://github.com/apache/superset

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

hugh pushed a commit to branch hugh/fix-metadata-showing
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 3c3065bbab8e42e0f96ca312a63b451b38e6dd65
Merge: 0bf78ab a889cb3
Author: hughhhh <hu...@gmail.com>
AuthorDate: Mon Aug 2 14:34:39 2021 -0400

    Merge branch 'master' of https://github.com/apache/superset

 .github/ISSUE_TEMPLATE/bug_report.md               |     1 +
 .pylintrc                                          |     2 +-
 RESOURCES/INTHEWILD.md                             |     1 +
 UPDATING.md                                        |     2 +
 docs/src/pages/docs/installation/index.mdx         |    10 +
 docs/src/resources/openapi.json                    |  1857 +-
 requirements/base.txt                              |    26 +-
 requirements/testing.txt                           |     4 -
 setup.py                                           |     2 +-
 superset-frontend/images/icons/more_vert.svg       |    21 +
 superset-frontend/package-lock.json                | 50714 +------------------
 superset-frontend/package.json                     |    56 +-
 superset-frontend/spec/fixtures/mockState.js       |     2 +
 .../datasource/DatasourceEditor_spec.jsx           |     3 +-
 .../explore/components/ExploreChartHeader_spec.jsx |    13 +
 superset-frontend/src/CRUD/CollectionTable.tsx     |     2 +-
 .../src/SqlLab/components/SqlEditor.jsx            |    14 +-
 .../src/addSlice/AddSliceContainer.tsx             |     6 +-
 superset-frontend/src/chart/Chart.jsx              |    28 +-
 superset-frontend/src/chart/ChartRenderer.jsx      |    10 +-
 superset-frontend/src/chart/chartReducer.ts        |    19 +
 superset-frontend/src/common/components/index.tsx  |     8 +-
 .../src/components/FaveStar/index.tsx              |     6 +-
 .../src/components/Form/LabeledErrorBoundInput.tsx |     2 +-
 .../src/components/Icons/Icons.stories.tsx         |     2 +-
 superset-frontend/src/components/Icons/index.tsx   |     1 +
 .../src/components/ListViewCard/index.tsx          |     4 +
 .../HeaderReportActionsDropdown/index.tsx          |   115 +
 .../src/components/ReportModal/index.test.tsx      |    82 +
 .../src/components/ReportModal/index.tsx           |   327 +
 .../src/components/ReportModal/styles.tsx          |    85 +
 .../dashboard/components/Header/Header.test.tsx    |    17 +-
 .../src/dashboard/components/Header/index.jsx      |    93 +-
 .../src/dashboard/components/Header/types.ts       |     2 +-
 .../dashboard/components/gridComponents/Chart.jsx  |     3 +-
 .../FiltersConfigForm/FiltersConfigForm.tsx        |     3 +-
 .../FiltersConfigModal/FiltersConfigModal.tsx      |     3 +-
 .../reducers/index.js => dashboard/constants.ts}   |    35 +-
 .../src/dashboard/containers/Chart.jsx             |     4 +-
 .../src/dashboard/containers/DashboardHeader.jsx   |    12 +-
 .../src/datasource/DatasourceEditor.jsx            |    42 +-
 .../src/explore/components/ExploreChartHeader.jsx  |   102 +-
 .../src/explore/components/ExploreChartPanel.jsx   |     3 +-
 .../explore/components/ExploreViewContainer.jsx    |    72 +-
 .../controls/DatasourceControl/index.jsx           |     4 +-
 .../DndColumnSelectControl/DndColumnSelect.tsx     |   103 +-
 .../DndColumnSelectControl/DndFilterSelect.tsx     |   308 +-
 .../DndColumnSelectControl/DndMetricSelect.tsx     |   214 +-
 .../controls/DndColumnSelectControl/Option.tsx     |     8 +-
 .../DndColumnSelectControl/OptionWrapper.tsx       |    16 +-
 .../controls/DndColumnSelectControl/types.ts       |     1 +
 .../controls/MetricControl/AdhocMetricOption.jsx   |     6 +-
 .../MetricControl/MetricDefinitionValue.jsx        |     2 +
 .../controls/MetricControl/MetricsControl.jsx      |     2 +-
 superset-frontend/src/explore/reducers/index.js    |     2 +
 superset-frontend/src/reports/actions/reports.js   |   170 +
 superset-frontend/src/reports/reducers/reports.js  |    54 +
 .../src/views/CRUD/alert/AlertReportModal.tsx      |     1 -
 .../src/views/CRUD/chart/ChartCard.tsx             |     2 +-
 .../src/views/CRUD/dashboard/DashboardCard.tsx     |     5 +-
 .../CRUD/data/database/DatabaseModal/index.tsx     |     4 +-
 .../src/views/CRUD/welcome/SavedQueries.tsx        |     2 +-
 .../src/views/CRUD/welcome/Welcome.tsx             |     3 +
 superset-frontend/src/views/store.ts               |     2 +
 .../{transformProps.js => transformProps.ts}       |     8 +-
 .../index.js => visualizations/FilterBox/types.ts} |    25 +-
 superset-frontend/webpack.config.js                |     1 +
 superset/charts/commands/export.py                 |     2 +-
 superset/charts/schemas.py                         |     2 +-
 superset/commands/importers/v1/examples.py         |     2 +-
 superset/connectors/base/models.py                 |    26 +-
 superset/connectors/sqla/models.py                 |    83 +-
 superset/connectors/sqla/utils.py                  |   110 +
 superset/dashboards/commands/export.py             |    16 +-
 .../dashboards/commands/importers/v1/__init__.py   |    10 +-
 superset/dashboards/commands/importers/v1/utils.py |    28 +-
 superset/reports/api.py                            |     2 +
 superset/security/manager.py                       |     1 +
 superset/utils/pandas_postprocessing.py            |    15 +
 superset/views/datasource.py                       |    46 +
 tests/integration_tests/datasource_tests.py        |    75 +-
 .../pandas_postprocessing_tests.py                 |    23 +-
 tests/integration_tests/reports/api_tests.py       |     2 +
 83 files changed, 3879 insertions(+), 51323 deletions(-)