You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by di...@apache.org on 2022/10/18 11:39:53 UTC

[superset] branch chore/e2e-cross-references updated (4981174b5a -> 7f61fafc12)

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

diegopucci pushed a change to branch chore/e2e-cross-references
in repository https://gitbox.apache.org/repos/asf/superset.git


    from 4981174b5a Lint
     add 196c3671e2 refactor: serialize extra json in state (#21523)
     add 4c1777f20d fix(alerts): restrict list view and gamma perms (#21765)
     add 6f2e76bc09 chore: Add `USER_CLIENT_ERRORS` to stop logging exceptions that are user driven (#21818)
     add 7ec136fec2 fix(superset-embedded-sdk): Buffer is not defined (#21641)
     add 7a7181a244 feat(color): color consistency enhancements (#21507)
     add 52d33b05fd chore(sqla): refactor query utils (#21811)
     add fcb98003a3 fix(sqllab): Fix spacing on Schedule option in SqlEditor dropdown (#21832)
     add 8f4415bc83 fix: Dataset left panel now uses client side search (#21770)
     add 383dc29ad1 fix: Allow comma in Number Format (#21817)
     add 7f61fafc12 Merge branch 'master' of https://github.com/apache/superset into chore/e2e-cross-references

No new revisions were added by this update.

Summary of changes:
 UPDATING.md                                        |   2 +
 superset-embedded-sdk/package-lock.json            |  13 +-
 superset-embedded-sdk/package.json                 |   3 +-
 superset-embedded-sdk/src/guestTokenRefresh.ts     |   3 +-
 .../src/color/CategoricalColorScale.ts             |  24 +-
 .../src/color/SharedLabelColorSingleton.ts         | 148 +++-----
 .../packages/superset-ui-core/src/color/index.ts   |   1 +
 .../test/color/CategoricalColorScale.test.ts       |   2 +-
 .../test/color/SharedLabelColorSingleton.test.ts   | 121 ++++--
 .../plugin-chart-echarts/src/Pie/controlPanel.tsx  |   1 +
 .../components/ScheduleQueryButton/index.tsx       |   2 +
 .../src/dashboard/actions/dashboardState.js        |  40 --
 .../src/dashboard/actions/dashboardState.test.js   |   2 +-
 .../dashboard/components/Header/Header.test.tsx    |   3 +-
 .../src/dashboard/components/Header/index.jsx      |  15 +-
 .../src/dashboard/components/Header/types.ts       |   3 +-
 .../PropertiesModal/PropertiesModal.test.tsx       |   2 +-
 .../dashboard/components/PropertiesModal/index.tsx |  32 +-
 .../dashboard/components/gridComponents/Chart.jsx  |   9 +
 .../components/gridComponents/ChartHolder.tsx      |  12 -
 .../dashboard/containers/DashboardComponent.jsx    |   2 -
 .../src/dashboard/containers/DashboardHeader.jsx   |   6 +-
 .../src/dashboard/containers/DashboardPage.tsx     |  14 +-
 .../src/dashboard/reducers/dashboardState.js       |   9 -
 .../src/dashboard/reducers/dashboardState.test.js  |   9 +-
 superset-frontend/src/explore/ExplorePage.tsx      |  10 +-
 .../src/views/CRUD/alert/AlertList.test.jsx        |   4 +-
 .../src/views/CRUD/alert/AlertList.tsx             |  37 +-
 .../data/database/DatabaseModal/ExtraOptions.tsx   |  37 +-
 .../{index.test.jsx => index.test.tsx}             | 405 ++++++++++++++++++++-
 .../CRUD/data/database/DatabaseModal/index.tsx     | 173 +++++----
 .../src/views/CRUD/data/database/types.ts          |  65 ++--
 .../AddDataset/LeftPanel/LeftPanel.test.tsx        | 400 ++++++++++----------
 .../data/dataset/AddDataset/LeftPanel/index.tsx    |   8 +-
 superset/config.py                                 |   2 +-
 superset/connectors/sqla/models.py                 |  26 +-
 superset/reports/api.py                            |   6 +-
 superset/reports/commands/execute.py               |  37 +-
 superset/reports/dao.py                            |   2 +
 superset/reports/filters.py                        |  16 +
 superset/security/manager.py                       |   2 +
 superset/sqllab/command.py                         |  13 +-
 tests/integration_tests/charts/data/api_tests.py   |  50 +++
 tests/integration_tests/reports/api_tests.py       | 154 +++++++-
 tests/integration_tests/reports/commands_tests.py  |   2 +-
 tests/integration_tests/sqla_models_tests.py       |   2 +-
 46 files changed, 1293 insertions(+), 636 deletions(-)
 rename superset-frontend/src/views/CRUD/data/database/DatabaseModal/{index.test.jsx => index.test.tsx} (80%)