This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a change to branch remove-legacy-viz-pipeline
in repository https://gitbox.apache.org/repos/asf/superset.git
from 464674f193f fix(migrations): re-point bubble-chart migration onto
master's current alembic head
add bbd021925aa fix(viz): follow-ups from #41714 self-review (#42530)
No new revisions were added by this update.
Summary of changes:
.../src/utils/buildSortMetricOrderby.ts | 87 +++
.../superset-ui-chart-controls/src/utils/index.ts | 1 +
.../test/utils/buildSortMetricOrderby.test.ts | 96 ++++
.../src/Bullet/transformProps.ts | 33 +-
.../src/TimePivot/transformProps.ts | 22 +-
.../src/Timeseries/EchartsTimeseries.tsx | 35 +-
.../src/utils/legendLayout.test.ts | 77 +++
.../plugin-chart-echarts/src/utils/legendLayout.ts | 40 ++
.../test/Rose/EchartsRose.test.tsx | 186 ++++++
.../test/TimePivot/transformProps.test.ts | 73 +++
.../test/Timeseries/EchartsTimeseries.test.tsx | 247 ++++++++
.../plugin-chart-paired-t-test/src/buildQuery.ts | 23 +-
.../test/buildQuery.test.ts | 12 +
.../src/buildQuery.ts | 23 +-
.../plugin-chart-partition/src/buildQuery.ts | 22 +-
.../test/transformProps.test.ts | 78 +++
.../src/Multi/Multi.color.test.tsx | 111 ++--
.../preset-chart-deckgl/src/Multi/Multi.test.tsx | 634 +++++++++------------
.../preset-chart-deckgl/src/Multi/Multi.tsx | 85 ++-
superset/cli/viz_migrations.py | 21 +-
superset/migrations/shared/migrate_viz/base.py | 21 +-
.../migrations/viz/downgrade_scope_test.py | 56 ++
.../viz/upgrade_malformed_query_context_test.py | 46 ++
23 files changed, 1486 insertions(+), 543 deletions(-)
create mode 100644
superset-frontend/packages/superset-ui-chart-controls/src/utils/buildSortMetricOrderby.ts
create mode 100644
superset-frontend/packages/superset-ui-chart-controls/test/utils/buildSortMetricOrderby.test.ts
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/src/utils/legendLayout.test.ts
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/test/Rose/EchartsRose.test.tsx
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/test/Timeseries/EchartsTimeseries.test.tsx
create mode 100644
superset-frontend/plugins/plugin-chart-partition/test/transformProps.test.ts
create mode 100644 tests/unit_tests/migrations/viz/downgrade_scope_test.py
create mode 100644
tests/unit_tests/migrations/viz/upgrade_malformed_query_context_test.py