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/10/15 15:41:18 UTC

[superset] branch ssh-tunnel-refactor-get-sqla-engine updated (f6490faee9 -> fc0b0d583c)

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

hugh pushed a change to branch ssh-tunnel-refactor-get-sqla-engine
in repository https://gitbox.apache.org/repos/asf/superset.git


    from f6490faee9 create function for get_sqla_engine with context
     add 11d7d6e078 fix: Preserve unknown URL params (#21785)
     add 88a89c9fd6 fix(migration): Ensure the paginated update is deterministic (#21778)
     add 3936e9ed5f fix: Fix regression introduced in #20893 (#21743)
     add d5b4bdeb72 fix(plugin-chart-handlebars): Update webpack/babel config to fix build/runtime warnings/errors (#21779)
     add 49b48eeca4 feat: Cross-referenced Dashboards in Chart list (Column + Filter) (#21760)
     add e6c44e02cb chore: stop logging "SyntaxError" as exceptions (#21787)
     add 2258fbf878 fix(CustomFrame): Resolves issue #21731 where date range in explore throws runtime error (#21776)
     add f4fa2e1115 chore: add more  logging  for alerts and reports (#21714)
     add b1bf25e98c fix(explore): Persist URL params to form-data (#21792)
     add df3b5a8305 fix: Dataset creation header is now uneditable and holds proper default values (#21557)
     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 fc0b0d583c Merge branch 'master' of https://github.com/apache/superset into ssh-tunnel-refactor-get-sqla-engine

No new revisions were added by this update.

Summary of changes:
 UPDATING.md                                        |   2 +
 superset-frontend/babel.config.js                  |   6 +
 .../cypress/integration/chart_list/filter.test.ts  |  14 +
 .../cypress/integration/chart_list/list.test.ts    |   9 +-
 .../src/components/ListView/CrossLinks.test.tsx    |  97 +++++
 .../src/components/ListView/CrossLinks.tsx         | 122 +++++++
 .../components/ListView/CrossLinksTooltip.test.tsx |  89 +++++
 .../src/components/ListView/CrossLinksTooltip.tsx  |  73 ++++
 .../nativeFilters/FilterCard/DependenciesRow.tsx   |  12 +-
 .../nativeFilters/FilterCard/NameRow.tsx           |   2 +-
 .../nativeFilters/FilterCard/ScopeRow.tsx          |  12 +-
 .../ExploreViewContainer.test.tsx                  |  32 +-
 .../components/ExploreViewContainer/index.jsx      |   4 +-
 .../components/CustomFrame.test.tsx                |  54 +++
 .../DateFilterControl/components/CustomFrame.tsx   |  18 +-
 .../exploreUtils/getParsedExploreURLParams.test.ts |   2 +-
 .../exploreUtils/getParsedExploreURLParams.ts      |   5 +-
 .../useTruncation/index.ts}                        |  44 ++-
 .../src/views/CRUD/alert/AlertList.test.jsx        |   4 +-
 .../src/views/CRUD/alert/AlertList.tsx             |  37 +-
 .../src/views/CRUD/chart/ChartList.tsx             |  99 +++++
 .../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 ++--
 .../data/dataset/AddDataset/AddDataset.test.tsx    |   6 +-
 .../data/dataset/AddDataset/Header/Header.test.tsx |  51 +--
 .../CRUD/data/dataset/AddDataset/Header/index.tsx  |  13 +-
 .../data/dataset/AddDataset/LeftPanel/index.tsx    |   2 +-
 .../views/CRUD/data/dataset/AddDataset/index.tsx   |   2 +-
 .../dataset/DatasetLayout/DatasetLayout.test.tsx   |  10 +-
 superset-frontend/webpack.config.js                |   3 +
 superset/explore/commands/get.py                   |   7 +-
 superset/migrations/shared/utils.py                |  31 +-
 ...59_7fb8bca906d2_permalink_rename_filterstate.py |   3 -
 superset/models/slice.py                           |   3 +-
 superset/reports/api.py                            |   6 +-
 superset/reports/commands/execute.py               |  48 ++-
 superset/reports/dao.py                            |   2 +
 superset/reports/filters.py                        |  16 +
 superset/security/manager.py                       |   2 +
 superset/sql_lab.py                                |   1 -
 superset/sqllab/command.py                         |  15 +-
 superset/tasks/scheduler.py                        |   5 +
 superset/views/core.py                             |   5 +-
 tests/integration_tests/explore/api_tests.py       |  12 +
 tests/integration_tests/reports/api_tests.py       | 154 +++++++-
 tests/integration_tests/reports/commands_tests.py  |   2 +-
 48 files changed, 1509 insertions(+), 307 deletions(-)
 create mode 100644 superset-frontend/src/components/ListView/CrossLinks.test.tsx
 create mode 100644 superset-frontend/src/components/ListView/CrossLinks.tsx
 create mode 100644 superset-frontend/src/components/ListView/CrossLinksTooltip.test.tsx
 create mode 100644 superset-frontend/src/components/ListView/CrossLinksTooltip.tsx
 rename superset-frontend/src/{dashboard/components/nativeFilters/FilterCard/useTruncation.ts => hooks/useTruncation/index.ts} (71%)
 rename superset-frontend/src/views/CRUD/data/database/DatabaseModal/{index.test.jsx => index.test.tsx} (80%)