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/12/22 18:08:54 UTC

[superset] branch rm-dataset-name-convention updated (cd1fb10dc4 -> ccfdf8e962)

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

hugh pushed a change to branch rm-dataset-name-convention
in repository https://gitbox.apache.org/repos/asf/superset.git


    from cd1fb10dc4 fix url
     add 21b56b2d49 fix(cypress): Fix failing/flaky E2E tests (#22460)
     add b55ef5b514 fix: fix comment in Docker environment files (#22421)
     add 7f4e522f1a chore(viz): Rename legacy non-time-series Bar Chart (#22430)
     add 6b20e74442 fix: Create dataset polish/bug fix (#22262)
     add 0ca5e0e0db build(deps): bump @ant-design/icons from 4.2.2 to 4.8.0 in /superset-frontend (#22158)
     add 1bab5b9eba fix: Fixed spacing in alert modal (#22066)
     add c2a20e7b27 chore: adding additional code owners for cypress tests (#22476)
     add 7a94f3afc6 fix(chart-list): Hide 'Dashboards added to' column. (#22475)
     add b954f8f560 feat(welcome): make examples tab customizable (#22302)
     add 7d8fff87b5 fix(assets api): import replaces dashboard (#22208)
     add ccfdf8e962 Merge branch 'master' of https://github.com/apache/superset into rm-dataset-name-convention

No new revisions were added by this update.

Summary of changes:
 .github/CODEOWNERS                                 |   2 +-
 docker/.env                                        |   2 +-
 docker/.env-non-dev                                |   2 +-
 .../cypress/integration/chart_list/list.test.ts    |  14 +-
 .../integration/dashboard/drilltodetail.test.ts    |   6 +-
 .../integration/dashboard/nativeFilters.test.ts    |   3 +-
 .../cypress/integration/dashboard/utils.ts         |   3 +-
 .../cypress/integration/explore/utils.ts           |   1 +
 superset-frontend/package-lock.json                | 401 +++------------------
 superset-frontend/package.json                     |   2 +-
 .../legacy-preset-chart-nvd3/src/DistBar/index.js  |   9 +-
 .../SqlLab/components/SqlEditorLeftBar/index.tsx   |  21 +-
 .../src/components/EmptyState/index.tsx            |  26 +-
 superset-frontend/src/constants.ts                 |  54 +++
 .../util/findTabIndexByComponentId.test.js         |   2 +-
 .../util/updateComponentParentsList.test.js        |   2 +-
 superset-frontend/src/featureFlags.ts              |   2 +-
 superset-frontend/src/preamble.ts                  |  16 +-
 superset-frontend/src/types/bootstrapTypes.ts      |  82 ++++-
 .../utils/getBootstrapData.ts}                     |  14 +-
 superset-frontend/src/utils/localStorageHelpers.ts |   9 +-
 superset-frontend/src/utils/urlUtils.test.ts       |   4 +-
 superset-frontend/src/utils/urlUtils.ts            |   4 +-
 .../src/views/CRUD/alert/AlertReportModal.tsx      | 169 ++++++---
 .../src/views/CRUD/chart/ChartList.tsx             |   1 +
 .../src/views/CRUD/data/database/DatabaseList.tsx  |   2 +-
 .../data/dataset/AddDataset/AddDataset.test.tsx    |   2 +-
 .../AddDataset/DatasetPanel/DatasetPanel.test.tsx  |   2 +-
 .../AddDataset/DatasetPanel/DatasetPanel.tsx       |  67 +++-
 .../data/dataset/AddDataset/Header/Header.test.tsx |  16 +-
 .../CRUD/data/dataset/AddDataset/Header/index.tsx  |  35 +-
 .../data/dataset/AddDataset/LeftPanel/index.tsx    |  38 +-
 .../dataset/DatasetLayout/DatasetLayout.test.tsx   |   2 +-
 .../src/views/CRUD/data/dataset/styles.ts          |  46 ++-
 superset-frontend/src/views/CRUD/types.ts          |  19 +-
 superset-frontend/src/views/CRUD/utils.test.tsx    | 174 ++++++++-
 superset-frontend/src/views/CRUD/utils.tsx         |  89 ++++-
 .../src/views/CRUD/welcome/ActivityTable.test.tsx  |   9 +-
 .../src/views/CRUD/welcome/ActivityTable.tsx       |  75 ++--
 .../src/views/CRUD/welcome/ChartTable.test.tsx     |  29 +-
 .../src/views/CRUD/welcome/ChartTable.tsx          | 100 +++--
 .../src/views/CRUD/welcome/DashboardTable.tsx      | 108 ++----
 .../src/views/CRUD/welcome/EmptyState.test.tsx     |  33 +-
 .../src/views/CRUD/welcome/EmptyState.tsx          |  40 +-
 .../src/views/CRUD/welcome/SavedQueries.tsx        |  61 +---
 .../src/views/CRUD/welcome/Welcome.tsx             |  93 +++--
 superset-frontend/src/views/CRUD/welcome/types.ts  |   4 +
 superset-frontend/src/views/components/Menu.tsx    |  61 +---
 .../src/views/components/RightMenu.tsx             |   6 +-
 superset-frontend/src/views/components/SubMenu.tsx |   2 +-
 superset-frontend/src/views/components/types.ts    |   2 +-
 superset/commands/importers/v1/assets.py           |  35 +-
 superset/config.py                                 |  12 +
 superset/examples/birth_names.py                   |  81 ++---
 superset/examples/supported_charts_dashboard.py    |  76 ++--
 superset/views/base.py                             |   1 +
 .../fixtures/birth_names_dashboard.py              |   2 +-
 .../unit_tests/commands/importers}/__init__.py     |   0
 .../unit_tests/commands/importers/v1}/__init__.py  |   0
 .../commands/importers/v1/assets_test.py           | 131 +++++++
 .../unit_tests/fixtures}/__init__.py               |   0
 tests/unit_tests/fixtures/assets_configs.py        | 259 +++++++++++++
 62 files changed, 1551 insertions(+), 1012 deletions(-)
 copy superset-frontend/{packages/superset-ui-core/src/query/getColumnLabel.ts => src/utils/getBootstrapData.ts} (73%)
 copy {superset/advanced_data_type => tests/unit_tests/commands/importers}/__init__.py (100%)
 copy {superset/advanced_data_type => tests/unit_tests/commands/importers/v1}/__init__.py (100%)
 create mode 100644 tests/unit_tests/commands/importers/v1/assets_test.py
 copy {superset/advanced_data_type => tests/unit_tests/fixtures}/__init__.py (100%)
 create mode 100644 tests/unit_tests/fixtures/assets_configs.py