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 2023/04/03 15:45:41 UTC

[superset] branch add-backoff-ssh-connection updated (b64c2cf08f -> 1624101df1)

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

hugh pushed a change to branch add-backoff-ssh-connection
in repository https://gitbox.apache.org/repos/asf/superset.git


    from b64c2cf08f set logs to error
     add de42c11f99 fix(plugin-generator): Addresses linter errors in newly generated Superset plugin (#23513)
     add 41ad9442c0 fix(word cloud): series label format fixed for custom sql queries (#23517)
     add 63751c6c0f chore: Adds a tooltip to pre-filter in native filters modal (#23481)
     add ce3ba67cf6 fix(conditional formatting): controls looses on save (#23137)
     add 81b32d1045 chore: allow logs to show error levels for ssh tunnel (#23536)
     add 068163e2a1 fix(tags): convert postgres enum type to varchar (#23526)
     add 330e79bc5d ci: disable flaky async test (#23527)
     add db9ca20737 fix(area chart legacy): tool tip shows actual value rather than y axi… (#23469)
     add f6b5b658e5 chore(welcome): harmonize submenu with other routes (#22803)
     add 500d90058f feat: add ability to disable cache (#23439)
     add 09757dc518 fix: moved alerts and reports default values to config (#22880)
     add bc2ec044b8 feat(cross-filters): using verbose map in applied cross-filters (#23509)
     add ee9ef24509 perf(sqla): avoid unnecessary type check on adhoc column (#23491)
     add 1ced7cdbbb fix: Removes Redux state mutations - iteration 1 (#23522)
     add b52efe0599 fix(sqllab): dedupe table_schemas in active_tab (#23514)
     add a18e33b3bc fix: Hide FilterBar for Reports (#23543)
     add bd0609df58 fix(sqllab): undefined issue_codes on query error (#23549)
     add 13ffb4b7c2 fix(plugin-chart-table): Include time control (#23533)
     add 1624101df1 Merge branch 'master' of https://github.com/apache/superset into add-backoff-ssh-connection

No new revisions were added by this update.

Summary of changes:
 docs/docs/installation/cache.mdx                   |   3 +
 .../integration/dashboard/nativeFilters.test.ts    |  11 +-
 .../cypress/integration/dashboard/utils.ts         |   1 +
 .../generators/plugin-chart/templates/package.erb  |   2 +-
 .../plugin-chart/templates/src/MyChart.erb         |  11 +-
 .../templates/src/plugin/controlPanel.erb          |   6 +-
 .../plugin-chart/templates/src/types.erb           |   6 +-
 .../templates/test/plugin/transformProps.test.erb  |   3 +-
 .../src/query/extractQueryFields.ts                |   3 +-
 .../plugins/legacy-preset-chart-nvd3/src/utils.js  |   2 +-
 .../src/plugin/controlPanel.tsx                    |   4 +-
 .../plugin-chart-table/src/controlPanel.tsx        |  32 ++--
 .../src/legacyPlugin/transformProps.ts             |   7 +-
 .../src/legacyPlugin/types.ts                      |   4 +-
 .../plugins/plugin-chart-word-cloud/src/types.ts   |   4 +-
 superset-frontend/src/SqlLab/App.jsx               |   8 +-
 superset-frontend/src/SqlLab/actions/sqlLab.js     |   6 +-
 .../SqlLab/components/ShareSqlLabQuery/index.tsx   |   4 +-
 .../src/SqlLab/components/SouthPane/index.tsx      |   4 +-
 .../src/SqlLab/components/SqlEditor/index.jsx      |   4 +-
 .../SqlLab/components/TabbedSqlEditors/index.jsx   |   4 +-
 .../src/SqlLab/reducers/getInitialState.js         |  20 ++-
 .../src/SqlLab/reducers/getInitialState.test.ts    |  54 ++++++
 superset-frontend/src/components/Chart/Chart.jsx   |  11 +-
 .../src/components/Chart/chartAction.js            |   4 +-
 .../src/components/Chart/chartReducer.ts           |   4 +-
 .../src/components/Datasource/DatasourceEditor.jsx |  12 +-
 .../src/components/Datasource/DatasourceModal.tsx  |   8 +-
 .../src/components/DynamicPlugins/index.tsx        |   3 +-
 .../src/dashboard/actions/dashboardState.js        |   7 +-
 superset-frontend/src/dashboard/actions/hydrate.js |   4 +-
 .../src/dashboard/actions/sliceEntities.js         |   4 +-
 .../DashboardBuilder/DashboardBuilder.test.tsx     |   3 +-
 .../DashboardBuilder/DashboardBuilder.tsx          |  31 ++--
 .../dashboard/components/DashboardBuilder/state.ts |   3 +-
 .../components/FiltersBadge/FiltersBadge.test.tsx  |   8 +-
 .../dashboard/components/FiltersBadge/index.tsx    |   2 +
 .../Header/HeaderActionsDropdown/index.jsx         |   4 +-
 .../src/dashboard/components/Header/index.jsx      |   3 +-
 .../dashboard/components/PropertiesModal/index.tsx |   3 +-
 .../SliceHeaderControls.test.tsx                   |   2 +-
 .../components/SliceHeaderControls/index.tsx       |  11 +-
 .../FilterBar/CrossFilters/Vertical.tsx            |   3 +
 .../FilterBar/CrossFilters/selectors.ts            |   4 +-
 .../nativeFilters/FilterBar/FilterBar.test.tsx     |   3 +-
 .../FilterBar/FilterControls/FilterControls.tsx    |   4 +
 .../FilterBar/FilterControls/FilterValue.tsx       |  15 +-
 .../nativeFilters/FilterBar/Horizontal.tsx         |   5 +-
 .../nativeFilters/FilterBar/Vertical.tsx           |  10 +-
 .../components/nativeFilters/FilterBar/index.tsx   |  65 ++++---
 .../components/nativeFilters/FilterBar/types.ts    |   1 +
 .../components/nativeFilters/FilterBar/utils.ts    |  18 ++
 .../FiltersConfigForm/FiltersConfigForm.tsx        |   8 +-
 .../components/nativeFilters/selectors.ts          |   8 +-
 .../src/dashboard/util/crossFilters.ts             |   5 +-
 .../dashboard/util/updateComponentParentsList.js   |  15 +-
 superset-frontend/src/dataMask/actions.ts          |   9 +-
 .../src/explore/actions/hydrateExplore.ts          |  20 +++
 .../components/DataTablesPane/DataTablesPane.tsx   |   4 +-
 .../DataTablesPane/test/DataTablesPane.test.tsx    |   2 +-
 .../explore/components/DatasourcePanel/index.tsx   |   7 +-
 .../src/explore/components/ExploreChartPanel.jsx   |   7 +-
 .../explore/components/PropertiesModal/index.tsx   |   2 +-
 .../src/explore/components/SaveModal.tsx           |   9 +-
 .../ConditionalFormattingControl.tsx               |  37 ++--
 .../controls/ConditionalFormattingControl/types.ts |   1 +
 .../index.tsx                                      |  11 +-
 .../useExploreAdditionalActionsMenu/index.jsx      |   4 +-
 superset-frontend/src/featureFlags.ts              |   5 +-
 superset-frontend/src/middleware/asyncEvent.ts     |   3 +-
 .../src/pages/ChartCreation/index.tsx              |   9 +-
 superset-frontend/src/pages/ChartList/index.tsx    |   3 +-
 .../src/pages/DashboardList/index.tsx              |   4 +-
 superset-frontend/src/pages/DatabaseList/index.tsx |   4 +-
 .../src/pages/DatasetList/DatasetList.test.tsx     |   6 +-
 superset-frontend/src/pages/DatasetList/index.tsx  |   4 +-
 superset-frontend/src/pages/Home/Home.test.tsx     |   2 +-
 superset-frontend/src/pages/Home/index.tsx         | 196 +++++++++++----------
 .../src/pages/SavedQueryList/index.tsx             |   4 +-
 superset-frontend/src/pages/Tags/index.tsx         |   4 +-
 superset-frontend/src/utils/hostNamesConfig.js     |   7 +-
 .../src/views/CRUD/alert/AlertReportModal.tsx      |  72 +++++---
 superset-frontend/src/views/CRUD/alert/types.ts    |   5 +
 .../src/views/CRUD/chart/ChartCard.tsx             |   4 +-
 .../src/views/CRUD/dashboard/DashboardCard.tsx     |   4 +-
 .../data/database/DatabaseModal/ExtraOptions.tsx   |   2 +-
 superset-frontend/src/views/CRUD/tags/TagCard.tsx  |   4 +-
 superset/common/query_context.py                   |   5 +-
 superset/common/query_context_processor.py         |  12 +-
 superset/config.py                                 |   4 +
 superset/connectors/sqla/models.py                 |  44 +++--
 superset/extensions/ssh.py                         |   5 +-
 ...af1b_drop_postgres_enum_constrains_for_tags.py} |  33 ++--
 superset/utils/pandas_postprocessing/pivot.py      |   2 +-
 superset/views/base.py                             |   3 +
 superset/viz.py                                    |  16 +-
 tests/integration_tests/charts/data/api_tests.py   |   8 +
 tests/integration_tests/csv_upload_tests.py        |   5 +-
 98 files changed, 681 insertions(+), 405 deletions(-)
 copy superset/migrations/versions/{2018-07-20_16-08_937d04c16b64_update_datasources.py => 2023-03-29_20-30_07f9a902af1b_drop_postgres_enum_constrains_for_tags.py} (55%)