You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by aa...@apache.org on 2022/10/14 15:02:51 UTC

[superset] branch arash/logAlertReports updated (67c634cd5c -> 1c0a62222b)

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

aafghahi pushed a change to branch arash/logAlertReports
in repository https://gitbox.apache.org/repos/asf/superset.git


    omit 67c634cd5c added logging to execute task
    omit aa1741a23d additional logging
     add 0c461497ff chore(sqllab): refactor addQueryEditor for new tab (#21711)
     add aef6217a80 fix: Gsheets takes 2 clicks to save (#21740)
     add f58227a912 feat: add denylist for db engines (#21486)
     add d1a6f0ebc4 fix: allow adhoc columns in non-aggregate query (#21729)
     add 20b9dc8444 feat(embedded-dashboard): Share Switchboard State for Sending Events from Plugins (#21319)
     add 91f0de0c5d fix: database schema selector on import data (#21759)
     add d7ee443a13 fix(sqllab): resultset disappeared on switching tabs (#21741)
     add db075d4157 chore(deps): bump react-map-gl from 4.0.10 to 6.1.19 (#21748)
     add ba3275a4d0 fix: flash message on database data upload forms (#21761)
     add 070b865e32 chore(explore): Add tests for getControlValuesCompatibleWithDatasource (#21744)
     add 406e44bba1 perf(dashboard): Virtualization POC (#21438)
     add d21e1d799d fix(sqllab): Async queries are now fetched properly (#21698)
     add 605b6920a6 fix(datasets): Stop showing alert when saving from query (#21442)
     add bd3166b603 chore: cleanup on catalog check for Gsheets (#21738)
     add 8f61e3c5d9 refactor: preparation for time section migration (#21766)
     add 8f74e46d45 fix: regression in #21766 (#21782)
     add 75e6a04269 fix: remove deprecated ETagResponseMixin (#21773)
     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 2398986311 additional logging
     add 1c0a62222b added logging to execute task

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (67c634cd5c)
            \
             N -- N -- N   refs/heads/arash/logAlertReports (1c0a62222b)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 superset-frontend/babel.config.js                  |   6 +
 .../cypress/integration/chart_list/filter.test.ts  |  14 +
 .../cypress/integration/chart_list/list.test.ts    |   9 +-
 superset-frontend/package-lock.json                | 584 ++++++---------------
 superset-frontend/package.json                     |   3 +-
 .../superset-ui-chart-controls/src/index.ts        |   2 +-
 .../src/sections/echartsTimeSeriesQuery.tsx        |  15 +-
 .../src/sections/sections.tsx                      |   8 +-
 .../src/shared-controls/dndControls.tsx            |   5 +-
 .../src/shared-controls/index.tsx                  |  11 +-
 .../src/shared-controls/mixins.tsx                 |   5 +-
 .../superset-ui-chart-controls/test/fixtures.ts    |  10 +-
 .../test/utils/getTemporalColumns.test.ts          |   2 +-
 .../superset-ui-core/src/query/constants.ts        |  18 +-
 .../superset-ui-core/src/query/getXAxis.ts         |   6 +
 .../packages/superset-ui-core/src/query/index.ts   |   2 +-
 .../superset-ui-core/src/query/types/Column.ts     |   6 +
 .../superset-ui-core/src/utils/featureFlags.ts     |   1 +
 .../packages/superset-ui-switchboard/src/index.ts  |   3 +
 .../src/switchboard.test.ts                        |  27 +-
 .../superset-ui-switchboard/src/switchboard.ts     |  36 +-
 .../legacy-plugin-chart-map-box/package.json       |  38 +-
 .../legacy-preset-chart-deckgl/package.json        |  10 +-
 .../BigNumberWithTrendline/controlPanel.tsx        |  15 +-
 .../src/MixedTimeseries/controlPanel.tsx           |   9 +-
 .../src/MixedTimeseries/index.ts                   |   9 +-
 .../src/Timeseries/Area/index.ts                   |   7 +-
 .../src/Timeseries/Regular/Bar/index.ts            |   7 +-
 .../src/Timeseries/Regular/Line/index.ts           |   7 +-
 .../src/Timeseries/Regular/Scatter/index.ts        |   7 +-
 .../src/Timeseries/Regular/SmoothLine/index.ts     |   7 +-
 .../src/Timeseries/Step/index.ts                   |   7 +-
 .../plugin-chart-echarts/src/Timeseries/index.ts   |   9 +-
 .../src/plugin/buildQuery.ts                       |   7 +-
 .../src/plugin/controlPanel.tsx                    |   9 +-
 .../plugins/plugin-chart-table/src/buildQuery.ts   |   5 +-
 .../plugin-chart-table/src/controlPanel.tsx        |   7 +-
 superset-frontend/src/SqlLab/actions/sqlLab.js     |  17 +
 .../src/SqlLab/actions/sqlLab.test.js              |  22 +
 .../SqlLab/components/ResultSet/ResultSet.test.tsx |  83 ++-
 .../src/SqlLab/components/ResultSet/index.tsx      |   6 +-
 .../src/SqlLab/components/SqlEditor/index.jsx      |  13 +-
 .../TabbedSqlEditors/TabbedSqlEditors.test.jsx     |  47 +-
 .../SqlLab/components/TabbedSqlEditors/index.jsx   |   6 +-
 superset-frontend/src/components/Chart/Chart.jsx   |  19 +-
 .../src/components/FilterableTable/index.tsx       |  29 +-
 .../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 +++
 .../dashboard/components/FiltersBadge/selectors.ts |   3 +-
 .../dashboard/components/gridComponents/Chart.jsx  |   3 +
 .../components/gridComponents/ChartHolder.test.tsx |   3 +-
 .../components/gridComponents/ChartHolder.tsx      |   4 +
 .../dashboard/components/gridComponents/Row.jsx    |  49 ++
 .../nativeFilters/FilterBar/FilterBar.test.tsx     |   2 +-
 .../nativeFilters/FilterCard/DependenciesRow.tsx   |  12 +-
 .../nativeFilters/FilterCard/NameRow.tsx           |   2 +-
 .../nativeFilters/FilterCard/ScopeRow.tsx          |  12 +-
 superset-frontend/src/embedded/index.tsx           |  14 +-
 .../explore/components/ControlPanelsContainer.tsx  |   1 +
 .../ExploreViewContainer.test.tsx                  |  32 +-
 .../components/ExploreViewContainer/index.jsx      |   4 +-
 .../controls/DateFilterControl/DateFilterLabel.tsx | 103 ++--
 .../DateFilterControl/components/AdvancedFrame.tsx |  24 +-
 .../components/CustomFrame.test.tsx                |  54 ++
 .../DateFilterControl/components/CustomFrame.tsx   |  18 +-
 .../components/controls/DateFilterControl/index.ts |   5 +
 .../components/controls/DateFilterControl/types.ts |  11 +
 .../controls/DateFilterControl/utils/constants.ts  |   6 +
 .../DateFilterControl/utils/dateFilterUtils.ts     |  56 +-
 .../DndAdhocFilterOption.tsx                       |  69 +++
 .../DndColumnSelectControl/DndFilterSelect.tsx     |  44 +-
 .../index.tsx                                      |  76 +--
 .../AdhocFilterOption/AdhocFilterOption.test.tsx   |  20 +-
 .../FilterControl/AdhocFilterOption/index.jsx      |  86 ---
 .../FilterControl/AdhocFilterOption/index.tsx      |  77 +++
 superset-frontend/src/explore/constants.ts         |   4 -
 ...etControlValuesCompatibleWithDatasource.test.ts | 285 ++++++++++
 .../getFormDataWithDashboardContext.ts             |   2 +-
 .../exploreUtils/getParsedExploreURLParams.test.ts |   2 +-
 .../exploreUtils/getParsedExploreURLParams.ts      |   5 +-
 .../src/explore/reducers/exploreReducer.js         |   3 +-
 .../filters/components/Time/TimeFilterPlugin.tsx   |   3 +-
 .../useTruncation/index.ts}                        |  44 +-
 superset-frontend/src/types/Database.ts            |   1 +
 .../src/utils/isBot.ts                             |   5 +-
 .../utils/isDashboardVirtualizationEnabled.ts}     |  17 +-
 .../src/views/CRUD/chart/ChartList.tsx             |  99 ++++
 .../CRUD/data/database/DatabaseModal/index.tsx     |   8 +-
 .../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/src/views/CRUD/hooks.ts          |  17 +-
 superset-frontend/webpack.config.js                |   3 +
 superset/config.py                                 |   9 +-
 superset/connectors/sqla/models.py                 |  18 +-
 superset/db_engine_specs/__init__.py               |  13 +-
 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/commands/execute.py               |  11 +-
 superset/sql_lab.py                                |   1 -
 superset/sqllab/command.py                         |   2 +
 superset/superset_typing.py                        |   4 +-
 superset/tasks/scheduler.py                        |   5 +
 .../form_view/columnar_to_database_view/edit.html  |  43 +-
 .../form_view/csv_to_database_view/edit.html       |  43 +-
 .../form_view/database_schemas_selector.html       |  70 +++
 .../form_view/excel_to_database_view/edit.html     |  43 +-
 superset/utils/cache.py                            |   4 +-
 superset/utils/core.py                             |   4 +-
 superset/views/base.py                             |   1 +
 superset/views/core.py                             |   5 +-
 superset/views/database/views.py                   |  22 +-
 tests/integration_tests/charts/data/api_tests.py   |  41 ++
 tests/integration_tests/explore/api_tests.py       |  12 +
 tests/unit_tests/conftest.py                       |   8 +-
 tests/unit_tests/db_engine_specs/test_init.py      |  80 +++
 123 files changed, 2214 insertions(+), 1197 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
 create mode 100644 superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx
 delete mode 100644 superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterOption/index.jsx
 create mode 100644 superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterOption/index.tsx
 create mode 100644 superset-frontend/src/explore/controlUtils/getControlValuesCompatibleWithDatasource.test.ts
 rename superset-frontend/src/{dashboard/components/nativeFilters/FilterCard/useTruncation.ts => hooks/useTruncation/index.ts} (71%)
 copy docs/babel.config.js => superset-frontend/src/utils/isBot.ts (85%)
 copy superset-frontend/{packages/superset-ui-chart-controls/src/utils/defineSavedMetrics.ts => src/utils/isDashboardVirtualizationEnabled.ts} (69%)
 create mode 100644 superset/templates/superset/form_view/database_schemas_selector.html
 create mode 100644 tests/unit_tests/db_engine_specs/test_init.py