You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by su...@apache.org on 2020/10/27 19:07:39 UTC

[incubator-superset] branch feature/filter-p0 updated (af729e0 -> d79c65d)

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

suddjian pushed a change to branch feature/filter-p0
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


    from af729e0  fix highlighting the filter control
     add 8a2ca84  build: disable pr reviews for pr-lint action (#11433)
     add 59885c4  fix: saved query list sort by database (#11430)
     add 2227b13  fix: better error messages for dashboard properties modal (#11382)
     add 81f77fd  feat: hide datasource legacy based on featureflag (#11371)
     add fd8f4e9  feat(explore): update the order of datasource dropdown menu (#11424)
     add df15a6f  Configured babel plugin for removing data-test from production code (#11327)
     add 5b968e9  fix: multiple issues with FilterPopover (#11412)
     add 94e0f0c  Moved css of inline inputs of DateFilterControl to css of FilterBox where it appears. (#11427)
     add 8575439  fix: is_temporal should be overridden by is_dttm value (#11429)
     add ecdff72  feat: enable metadata sync for virtual tables (#10645)
     add 8ee6493  chore: Update testconn logic (#11315)
     add b49fd65  fix: added meaningful exception for loading births error (#11407)
     add 427058b  fix: bump FAB to 3.1.1 (#11444)
     add 055781f  fix filter highlighting (#11439)
     add 98daf0a  feat: add UUID column to saved_query for export/import (#11397)
     add 014fe9f  fix: [email report] add multiple schedules per hour (#11414)
     add 0969aee  Merge branch 'master' into feature/filter-p0
     add e947ff9  fix filterbox layout
     add d79c65d  translations

No new revisions were added by this update.

Summary of changes:
 .github/workflows/pr-lint.yml                      |   3 +-
 requirements/base.txt                              |   2 +-
 setup.py                                           |   2 +-
 superset-frontend/babel.config.js                  |  10 ++
 .../cypress/integration/explore/advanced.test.ts   |   2 +-
 superset-frontend/package-lock.json                |   6 ++
 superset-frontend/package.json                     |   6 +-
 .../datasource/DatasourceModal_spec.jsx            |  41 +++++++-
 .../components/FiltersBadge/DetailsPanel.tsx       |  18 ++--
 .../src/dashboard/components/PropertiesModal.jsx   |  16 ++-
 .../src/datasource/DatasourceEditor.jsx            |  19 +---
 .../src/datasource/DatasourceModal.tsx             |  29 +++--
 .../explore/components/AdhocFilterEditPopover.jsx  |   9 +-
 .../AdhocFilterEditPopoverSqlTabContent.jsx        |   6 +-
 .../components/controls/DatasourceControl.jsx      |  12 +--
 .../components/controls/DateFilterControl.jsx      |  18 +---
 superset-frontend/src/explore/main.less            |  18 ----
 superset-frontend/src/featureFlags.ts              |   1 +
 .../views/CRUD/data/savedquery/SavedQueryList.tsx  |   6 +-
 .../src/visualizations/FilterBox/FilterBox.less    |  38 +++++++
 superset/config.py                                 |   3 +-
 superset/connectors/sqla/models.py                 | 117 ++++++++++++++-------
 superset/databases/api.py                          |   3 +-
 superset/databases/commands/test_connection.py     |   7 +-
 superset/examples/birth_names.py                   |   7 ++
 ...6e99fb176a0_add_import_mixing_to_saved_query.py |  93 ++++++++++++++++
 ...b56500de1855_add_uuid_column_to_import_mixin.py |   8 +-
 superset/models/sql_lab.py                         |  13 ++-
 superset/tasks/schedules.py                        |   2 +-
 superset/views/core.py                             |  15 ++-
 superset/views/datasource.py                       |  22 ++--
 tests/datasource_tests.py                          |  71 +++++++++++--
 tests/import_export_tests.py                       |   2 +-
 tests/sqla_models_tests.py                         |  12 +++
 34 files changed, 468 insertions(+), 169 deletions(-)
 create mode 100644 superset/migrations/versions/96e99fb176a0_add_import_mixing_to_saved_query.py