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 2021/05/18 22:30:19 UTC

[superset] branch hugh/bg-form-2 updated (7761f61 -> 427cda9)

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

hugh pushed a change to branch hugh/bg-form-2
in repository https://gitbox.apache.org/repos/asf/superset.git.


    from 7761f61  add encryption
     add 84e8dc7  feat(dashboard): View query of the chart in dashboard (#14667)
     add 90378ed  fix(explore): #10098 boolean filter not working (#14567)
     add 0001da8  Merge branch 'master' of https://github.com/apache/superset into hugh/bg-form-2
     add 427cda9  mypy

No new revisions were added by this update.

Summary of changes:
 ...n_spec.jsx => ExploreAdditionalActionsMenu.jsx} |  14 +--
 .../components/SliceHeader/SliceHeader.test.tsx    |   1 +
 .../src/dashboard/components/SliceHeader/index.tsx |  15 +--
 .../components/SliceHeaderControls/index.jsx       |  18 ++++
 .../dashboard/components/gridComponents/Chart.jsx  |   1 +
 .../explore/components/ExploreActionButtons.tsx    |   8 +-
 .../ExploreAdditionalActionsMenu.test.tsx}         |  26 ++---
 .../index.jsx                                      | 109 +++-----------------
 .../controls/FilterControl/AdhocFilter/index.js    |  13 ++-
 ...AdhocFilterEditPopoverSimpleTabContent.test.jsx |  78 ++++++++++++++
 .../index.jsx                                      |  23 ++++-
 .../explore/components/controls/ViewQueryModal.tsx | 112 +++++++++++++++++++++
 superset-frontend/src/explore/constants.ts         |   5 +
 superset/connectors/sqla/models.py                 |   4 +
 superset/db_engine_specs/bigquery.py               |  79 ++++++++++-----
 superset/utils/core.py                             |   2 +
 tests/databases/api_tests.py                       |   4 +-
 tests/sqla_models_tests.py                         |  12 ++-
 18 files changed, 367 insertions(+), 157 deletions(-)
 rename superset-frontend/spec/javascripts/explore/components/{DisplayQueryButton_spec.jsx => ExploreAdditionalActionsMenu.jsx} (81%)
 rename superset-frontend/src/explore/components/{DisplayQueryButton/DisplayQueryButton.test.tsx => ExploreAdditionalActionsMenu/ExploreAdditionalActionsMenu.test.tsx} (86%)
 rename superset-frontend/src/explore/components/{DisplayQueryButton => ExploreAdditionalActionsMenu}/index.jsx (51%)
 create mode 100644 superset-frontend/src/explore/components/controls/ViewQueryModal.tsx