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

hugh pushed a change to branch hxgh/fix-log-tbl
in repository https://gitbox.apache.org/repos/asf/superset.git.


    from 43303ce  Update log.py
     add 21302ba  chore: well component to card component(Updating PR #12200) 
(#14033)
     add 1b6beb2  test: FilterSets-utils (#14028)
     add 73a7063  docs: update outdated country map tools instructions (#14027)
     add 273195c  fix: Use superset generic db to catch external_metadata 
queries (#13974)
     add 0850a6a  Use consistent chart value (#14031)
     add 237636a  fix: add exception to catch session not having JWT (#14036)
     add 966ee3c  feat: Make async query JWT cookie domain configurable (#14007)
     add f8cccb3  feat(native-filters): Add default first value to select 
filter (#13726)
     add d664ae5  fix: fix bug when remove chart not  removing it's related 
cross filter data (#14081)
     add 092ac6d  Make chart exclude itself from cross filtering (#14046)
     add f50b90d  feat: add descriptions to report emails (#13827)
     add b605f7a  feat: only send alert error emails to owners of the alert 
(#13862)
     add 828d6f5  feat: Implement Celery SoftTimeLimit handling (#13740)
     add 5d03ddc  fix: flacky test in 
test_update_dataset_item_w_override_columns (#14082)

No new revisions were added by this update.

Summary of changes:
 CONTRIBUTING.md                                    |   1 +
 docs/.nvmrc                                        |   1 +
 docs/installation.rst                              |   1 +
 docs/src/pages/docs/Miscellaneous/index.mdx        |  98 +++++---------
 .../superset/templates/secret-superset-config.yaml |   2 +-
 setup.cfg                                          |   2 +-
 .../src/SqlLab/components/QueryTable.jsx           |   6 +-
 .../src/SqlLab/components/TableElement.jsx         |   6 +-
 .../components/{Switch/index.tsx => Card.tsx}      |  21 ++-
 superset-frontend/src/common/components/index.tsx  |   6 +-
 .../src/components/ListViewCard/index.tsx          |   8 +-
 .../src/dashboard/actions/dashboardState.js        |  24 ++++
 .../FilterSets/utils/findExistingFilterSet.test.ts | 144 +++++++++++++++++++++
 .../FilterSets/utils/generateFiltersSetId.test.ts} |   9 +-
 .../utils/getFilterValueForDisplay.test.ts         |  42 ++++++
 .../FilterSets/{utils.ts => utils/index.ts}        |  13 +-
 .../FiltersConfigForm/DefaultValue.tsx             |   8 +-
 .../dashboard/util/activeAllDashboardFilters.ts    |   2 +-
 .../src/datasource/DatasourceEditor.jsx            |   5 +-
 .../explore/components/ControlPanelsContainer.tsx  |   3 +-
 .../components/Select/SelectFilterPlugin.tsx       |  62 +++++++--
 .../src/filters/components/Select/controlPanel.ts  |  14 ++
 .../filters/components/Select/transformProps.ts    |  11 +-
 .../src/filters/components/Select/types.ts         |  11 +-
 superset/config.py                                 |   1 +
 superset/connectors/sqla/models.py                 |  27 ++--
 superset/reports/commands/alert.py                 |   3 +-
 superset/reports/commands/execute.py               |  32 ++++-
 superset/reports/notifications/__init__.py         |   4 +-
 superset/reports/notifications/base.py             |   1 +
 superset/reports/notifications/email.py            |   2 +
 superset/reports/notifications/slack.py            |  10 +-
 superset/sql_lab.py                                |  17 +--
 superset/tasks/async_queries.py                    |  17 ++-
 superset/tasks/scheduler.py                        |   3 +
 superset/utils/async_query_manager.py              |   5 +
 superset/views/base.py                             |   4 +
 superset/viz.py                                    |  12 +-
 tests/datasets/api_tests.py                        |  25 ++--
 tests/datasource_tests.py                          |  21 +++
 tests/reports/commands_tests.py                    |  48 +++++--
 tests/sqllab_tests.py                              |  30 ++++-
 tests/tasks/async_queries_tests.py                 |  51 ++++++++
 tests/thumbnails_tests.py                          |  24 ++--
 44 files changed, 648 insertions(+), 189 deletions(-)
 create mode 100644 docs/.nvmrc
 copy superset-frontend/src/common/components/{Switch/index.tsx => Card.tsx} 
(64%)
 create mode 100644 
superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/findExistingFilterSet.test.ts
 copy superset-frontend/{spec/helpers/setup.ts => 
src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/generateFiltersSetId.test.ts}
 (80%)
 create mode 100644 
superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/getFilterValueForDisplay.test.ts
 rename 
superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/{utils.ts
 => utils/index.ts} (89%)

Reply via email to