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

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


    from 92f473b  add test back
     add b9d3338  fix: dataTablesPane cell render undefine when the dot in 
metric label (#15817)
     add 040b941  chore: bump superset-ui to 0.17.71 (#15839)
     add 5e1c469  feat(explore): default aggregate for string/numeric columns 
when creating metric (#15798)
     add 04c0680  feat(homepage): conditionally render viewed tab and move 
examples to chart and dashboard table (#15792)
     add e660de6  chore: Adds lazy loading to the Select component (#15799)
     add d4bec13  Render value immediately (#15820)
     add ebec353  fix(dashboard): Remove edit from url params when discarding 
changes (#15709)
     add c1eb9ce  add timezone to report schedule (#15747)
     add 9c854ff  bump typescript (#15847)
     add d408ff8  fix(explore): show multi queries results in View query modal 
and data pane (#15840)
     add f9b7250  fix: revert DEFAULT_SQLLAB_LIMIT to default (#15869)
     add 73b436a  fix: Unable to create alerts/report after introduced 
creation_method (#15760)
     add 4ba1709  fix: Ensure SupersetError.extra is always a dict (#15848)
     add 65728ea  fix(15482): Propagate SupersetSecurityException error (#15874)
     add 7330aef  feat: deprecate plugins by their metadata (#15882)
     add 9c81599  chore: Adds the tests that need to be coded for the Select 
component (#15885)
     add 6d3e19d  fix(15403): Re-enable canceling query for Hive and Presto 
(#15878)
     add b81f120  add timezone selector component (#15880)
     add 873daf3  chore: bumping superset-ui 0.17.72 (#15895)
     add 2f95f81  feat: apply post processing to chart data (#15843)
     add fb5dce0  chore: implement new mockup to the new viz gallery (2nd 
iteration) (#15868)
     add 16a26ba  fix: New time range filter initially show advance section 
(#15889)
     add f6115a7  fix: Side menu of the dashboard component will scroll out of 
dashboard (#15888)
     add 7aeb150  fix: Download as image of dashboard chart did not work 
(#15897)
     add 5be0a89  fix: Charts sort by in edit mode gets cut off (#15896)
     add 62550db  fix: Update Query Context on Explore loading (#15865)
     add 4363d60  Merge branch 'master' of https://github.com/apache/superset 
into hugh/gsheets-public

No new revisions were added by this update.

Summary of changes:
 superset-frontend/.storybook/main.js               |    7 +-
 superset-frontend/babel.config.js                  |    1 +
 .../images/icons/{circle.svg => ballot.svg}        |    5 +-
 .../images/icons/{minus.svg => category.svg}       |    5 +-
 .../images/icons/{grid.svg => tags.svg}            |    5 +-
 superset-frontend/package-lock.json                | 6230 +++++---------------
 superset-frontend/package.json                     |   60 +-
 .../dashboard/components/SliceAdder_spec.jsx       |    4 +-
 .../explore/components/VizTypeControl_spec.jsx     |    2 +-
 .../ErrorMessage/DatabaseErrorMessage.tsx          |   11 +-
 superset-frontend/src/components/Icons/index.tsx   |    3 +
 .../src/components/Select/Select.stories.tsx       |   19 +-
 .../src/components/Select/Select.test.tsx          |   82 +
 superset-frontend/src/components/Select/Select.tsx |  158 +-
 .../TimezoneSelector.stories.tsx}                  |   39 +-
 .../TimezoneSelector/TimezoneSelector.test.tsx}    |   32 +-
 .../src/components/TimezoneSelector/index.tsx      |  132 +
 .../DashboardBuilder/DashboardBuilder.tsx          |    6 +-
 .../src/dashboard/components/Header/index.jsx      |    5 +-
 .../src/dashboard/components/SliceAdder.jsx        |    5 +-
 .../FiltersConfigForm/DatasetSelect.tsx            |   24 +-
 .../FiltersConfigForm/DefaultValue.tsx             |   12 +-
 .../FiltersConfigForm/FiltersConfigForm.tsx        |   74 +-
 .../FiltersConfigForm/getControlItemsMap.test.tsx  |    1 +
 .../FiltersConfigForm/getControlItemsMap.tsx       |    3 +-
 .../FiltersConfigModal/FiltersConfigModal.test.tsx |   16 +-
 .../src/dashboard/util/injectCustomCss.ts          |    2 +-
 .../explore/components/DataTableControl/index.tsx  |    2 +-
 .../DataTableControl/useTableColumns.test.ts       |  145 +-
 .../DataTablesPane/DataTablesPane.test.tsx         |    6 +-
 .../explore/components/DataTablesPane/index.tsx    |   24 +-
 .../explore/components/PropertiesModal/index.tsx   |   23 +-
 .../DndColumnSelectControl/DndMetricSelect.tsx     |   28 +-
 .../MetricControl/AdhocMetricPopoverTrigger.tsx    |   22 +
 .../components/controls/TextAreaControl.jsx        |   10 +-
 .../explore/components/controls/ViewQueryModal.tsx |   59 +-
 .../VizTypeControl/VizTypeControl.test.tsx         |    4 +-
 .../controls/VizTypeControl/VizTypeGallery.tsx     |  335 +-
 superset-frontend/src/utils/downloadAsImage.ts     |   18 +-
 .../src/views/CRUD/alert/AlertReportModal.tsx      |    1 +
 .../src/views/CRUD/data/database/DatabaseList.tsx  |    4 +-
 superset-frontend/src/views/CRUD/types.ts          |    2 +
 .../src/views/CRUD/welcome/ActivityTable.tsx       |   10 -
 .../src/views/CRUD/welcome/ChartTable.test.tsx     |    2 +-
 .../src/views/CRUD/welcome/ChartTable.tsx          |   70 +-
 .../src/views/CRUD/welcome/DashboardTable.test.tsx |    4 +-
 .../src/views/CRUD/welcome/DashboardTable.tsx      |   72 +-
 .../src/views/CRUD/welcome/Welcome.test.tsx        |    4 +-
 .../src/views/CRUD/welcome/Welcome.tsx             |   40 +-
 superset/charts/api.py                             |   47 +-
 superset/charts/post_processing.py                 |  100 +
 superset/common/query_actions.py                   |    6 +-
 superset/config.py                                 |    3 +-
 superset/db_engine_specs/base.py                   |   15 +
 superset/db_engine_specs/hive.py                   |   12 +
 superset/db_engine_specs/presto.py                 |   12 +
 superset/exceptions.py                             |    1 -
 ...e1ed299413b_add_timezone_to_report_schedule.py} |   20 +-
 superset/sql_lab.py                                |   17 +-
 superset/utils/core.py                             |    1 +
 superset/views/base.py                             |    2 -
 superset/views/core.py                             |   18 +-
 tests/integration_tests/charts/api_tests.py        |    3 +
 .../integration_tests/databases/commands_tests.py  |    2 +-
 tests/integration_tests/sqllab_tests.py            |   10 +
 65 files changed, 2732 insertions(+), 5365 deletions(-)
 copy superset-frontend/images/icons/{circle.svg => ballot.svg} (60%)
 copy superset-frontend/images/icons/{minus.svg => category.svg} (52%)
 copy superset-frontend/images/icons/{grid.svg => tags.svg} (66%)
 create mode 100644 superset-frontend/src/components/Select/Select.test.tsx
 copy superset-frontend/src/components/{Radio/Radio.stories.tsx => 
TimezoneSelector/TimezoneSelector.stories.tsx} (61%)
 copy 
superset-frontend/{spec/javascripts/explore/components/ControlRow_spec.tsx => 
src/components/TimezoneSelector/TimezoneSelector.test.tsx} (52%)
 create mode 100644 superset-frontend/src/components/TimezoneSelector/index.tsx
 create mode 100644 superset/charts/post_processing.py
 copy 
superset/migrations/versions/{3317e9248280_add_creation_method_to_reports_model.py
 => ae1ed299413b_add_timezone_to_report_schedule.py} (69%)

Reply via email to