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 2022/12/01 02:08:23 UTC

[superset] branch create-sshtunnelconfig-tbl updated (f507385113 -> 45aa02288a)

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

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


    from f507385113 fix migrations
     add 4657250bcf chore(dashboard): Fix missing React key errors (#22266)
     add 91d19056cf fix(dashboard): Change horizontal filter bar divider truncation logic (#22252)
     add b1f8fd4f64 chore(superset-ui): remove deprecated fields from QueryObject (#22272)
     add 2fd0a6146e feat: CSV File Upload form updates (Grouping with Collapse/Expand) (#21992)
     add 6ead8afe28 build(deps-dev): bump @typescript-eslint/parser from 4.19.0 to 5.45.0 in /superset-websocket (#22255)
     add 5de98c31fd chore: bump clickhouse to 0.4.6 (#22279)
     add 436b790998 docs: Add Oslandia to superset users (#22242)
     add 32ccb97c9b fix: allow datasource imports on Windows (#22264)
     add e80e10ec06 feat: add risingwave.py in db engine specs (#22123)
     add 3ffe7828a7 feat: Uses new table component in Drill to Detail (#22173)
     add 45aa02288a Merge branch 'master' of https://github.com/apache/superset into create-sshtunnelconfig-tbl

No new revisions were added by this update.

Summary of changes:
 RESOURCES/INTHEWILD.md                             |   1 +
 docs/docs/databases/risingwave.mdx                 |  17 +
 setup.py                                           |   2 +-
 .../integration/dashboard/drilltodetail.test.ts    |  66 ++--
 .../superset-ui-core/src/query/buildQueryObject.ts |  21 +-
 .../superset-ui-core/src/query/normalizeOrderBy.ts |  10 +-
 .../superset-ui-core/src/query/types/Query.ts      |   6 -
 .../src/query/types/QueryFormData.ts               |   8 +-
 .../test/query/buildQueryObject.test.ts            |  43 ++-
 .../test/query/normalizeOrderBy.test.ts            |   8 +-
 .../test/query/types/Metric.test.ts                |   6 +-
 .../plugin-chart-echarts/src/Radar/buildQuery.ts   |   4 +-
 .../test/MixedTimeseries/buildQuery.test.ts        |   9 +-
 .../test/Timeseries/buildQuery.test.ts             |   4 +-
 .../Chart/DrillDetail/DrillDetailModal.tsx         |   1 +
 .../Chart/DrillDetail/DrillDetailPane.test.tsx     |   7 +-
 .../Chart/DrillDetail/DrillDetailPane.tsx          | 150 +++++---
 .../Chart/DrillDetail/DrillDetailTableControls.tsx |   1 +
 .../src/components/Table/Table.stories.tsx         | 101 ++++++
 .../src/components/Table/VirtualTable.tsx          |   4 +-
 .../BooleanCell/BooleanCell.stories.tsx}           |  33 +-
 .../BooleanCell/BooleanCell.test.tsx}              |  21 +-
 .../Table/cell-renderers/BooleanCell}/index.tsx    |  11 +-
 .../cell-renderers/NullCell/NullCell.stories.tsx}  |  14 +-
 .../cell-renderers/NullCell/NullCell.test.tsx}     |  17 +-
 .../Table/cell-renderers/NullCell/index.tsx}       |  28 +-
 .../TimeCell.stories.tsx}                          |  30 +-
 .../cell-renderers/TimeCell/TimeCell.test.tsx}     |  41 ++-
 .../Table/cell-renderers/TimeCell/index.tsx}       |  24 +-
 .../header-renderers/HeaderWithRadioGroup.tsx      |  94 +++++
 superset-frontend/src/components/Table/index.tsx   |  21 +-
 .../FilterBar/FilterControls/FilterControls.tsx    |   4 +-
 .../FilterBar/FilterControls/FilterDivider.tsx     |  43 +--
 .../nativeFilters/FilterCard/ScopeRow.tsx          |   4 +-
 .../src/filters/components/Range/buildQuery.ts     |   1 -
 .../filters/components/Select/buildQuery.test.ts   |  10 +-
 .../src/filters/components/Select/buildQuery.ts    |   2 +-
 superset-websocket/package-lock.json               | 378 ++++++++++++++++-----
 superset-websocket/package.json                    |   2 +-
 superset/commands/importers/v1/utils.py            |   6 +-
 .../{cockroachdb.py => risingwave.py}              |   6 +-
 .../templates/superset/form_view/csv_macros.html   |  75 ++++
 .../templates/superset/form_view/csv_scripts.html  |  37 ++
 .../form_view/csv_to_database_view/edit.html       | 116 ++++++-
 superset/views/database/forms.py                   |  12 +-
 superset/views/database/views.py                   |  55 ++-
 46 files changed, 1170 insertions(+), 384 deletions(-)
 create mode 100644 docs/docs/databases/risingwave.mdx
 copy superset-frontend/src/{explore/components/controls/SliderControl.stories.tsx => components/Table/cell-renderers/BooleanCell/BooleanCell.stories.tsx} (69%)
 copy superset-frontend/src/{explore/components/DataTableControl/RowCount.test.tsx => components/Table/cell-renderers/BooleanCell/BooleanCell.test.tsx} (63%)
 copy superset-frontend/src/{views/CRUD/data/dataset/AddDataset/RightPanel => components/Table/cell-renderers/BooleanCell}/index.tsx (74%)
 copy superset-frontend/src/{explore/components/DataTableControl/CopyButton.test.tsx => components/Table/cell-renderers/NullCell/NullCell.stories.tsx} (72%)
 copy superset-frontend/src/{explore/components/DataTableControl/CopyButton.test.tsx => components/Table/cell-renderers/NullCell/NullCell.test.tsx} (67%)
 copy superset-frontend/{plugins/plugin-chart-echarts/src/Tree/EchartsTree.tsx => src/components/Table/cell-renderers/NullCell/index.tsx} (72%)
 copy superset-frontend/src/components/Table/cell-renderers/{NumericCell/NumericCell.stories.tsx => TimeCell/TimeCell.stories.tsx} (62%)
 copy superset-frontend/src/components/{Badge/Badge.test.tsx => Table/cell-renderers/TimeCell/TimeCell.test.tsx} (50%)
 copy superset-frontend/{plugins/plugin-chart-pivot-table/src/react-pivottable/PivotTable.jsx => src/components/Table/cell-renderers/TimeCell/index.tsx} (67%)
 create mode 100644 superset-frontend/src/components/Table/header-renderers/HeaderWithRadioGroup.tsx
 copy superset/db_engine_specs/{cockroachdb.py => risingwave.py} (89%)
 create mode 100644 superset/templates/superset/form_view/csv_macros.html
 create mode 100644 superset/templates/superset/form_view/csv_scripts.html