This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a change to branch playwright-in-docker
in repository https://gitbox.apache.org/repos/asf/superset.git
omit 6bb8cb5bfa fix --mount ordering
omit f476411b01 rebase
add 93ba8e16c3 refactor: Creates the VizType enum (#31193)
add 14682b9054 fix(embedded): Hide anchor links in embedded mode (#31194)
add 97dde8c485 fix: x axis title disappears when editing bar chart (#30821)
add 3d3c09d299 chore(Tooltip): Upgrade Tooltip to Ant Design 5 (#31182)
add eab888c63a perf: Optimize dashboard chart-related components (#31241)
add 24d001e498 perf: Optimize Dashboard components (#31242)
add 5006f97f70 perf: Optimize dashboard grid components (#31240)
add ce0e06a935 perf: Optimize native filters and cross filters (#31243)
add 06fb330569 perf: Optimize DashboardPage and SyncDashboardState (#31244)
add d66ac9f3f4 fix(Databricks): Escape catalog and schema names in
pre-queries (#31199)
add 339d491dfc feat(sqllab): Popup notification when download data can
exceed row count (#31187)
add deec63bb5b docs(contributing): how to nuke the docker-compose postgres
(#31186)
add 8020729ced fix: check for column before adding in migrations (#31185)
add 3564740255 chore: pin greenlet in base dependencies (#31254)
add 468dfed416 chore(🦾): bump python pyjwt 2.10.0 -> 2.10.1 (#31253)
add e5e3f9e210 chore(🦾): bump python nh3 0.2.18 -> 0.2.19 (#31249)
add 43efa05113 chore(🦾): bump python flask-migrate subpackage(s) (#31250)
add fe80fb1090 chore(deps): bump codecov/codecov-action from 4 to 5
(#31214)
add f9b87bcbe2 rebase
add dc888062ea fix --mount ordering
add 8e53435f3c rm uv
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (6bb8cb5bfa)
\
N -- N -- N refs/heads/playwright-in-docker (8e53435f3c)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/superset-frontend.yml | 2 +-
.../workflows/superset-python-integrationtest.yml | 6 +-
.github/workflows/superset-python-presto-hive.yml | 4 +-
.github/workflows/superset-python-unittest.yml | 2 +-
Dockerfile | 2 +-
docs/docs/contributing/development.mdx | 18 +
pyproject.toml | 8 +-
requirements/base.txt | 7 +-
.../cypress/e2e/chart_list/list.test.ts | 2 +-
.../cypress/e2e/explore/control.test.ts | 11 +-
.../cypress-base/cypress/support/directories.ts | 2 +-
.../src/components/InfoTooltipWithTrigger.tsx | 3 +-
.../src/components/Tooltip.tsx | 67 +-
.../superset-ui-chart-controls/src/types.ts | 1 +
.../test/operators/boxplotOperator.test.ts | 4 +-
.../test/operators/contributionOperator.test.ts | 4 +-
.../test/operators/flattenOperator.test.ts | 4 +-
.../test/operators/histogramOperator.test.ts | 4 +-
.../test/operators/pivotOperator.test.ts | 4 +-
.../test/operators/prophetOperator.test.ts | 9 +-
.../test/operators/rankOperator.test.ts | 4 +-
.../test/operators/renameOperator.test.ts | 9 +-
.../test/operators/resampleOperator.test.ts | 4 +-
.../test/operators/rollingWindowOperator.test.ts | 4 +-
.../test/operators/sortOperator.test.ts | 4 +-
.../test/operators/timeCompareOperator.test.ts | 4 +-
.../operators/timeComparePivotOperator.test.ts | 4 +-
.../operators/utils/extractExtraMetrics.test.ts | 4 +-
.../test/operators/utils/isDerivedSeries.test.ts | 4 +-
.../test/utils/displayTimeRelatedControls.test.ts | 3 +-
.../test/utils/getStandardizedControls.test.ts | 6 +-
.../packages/superset-ui-core/src/chart/index.ts | 1 +
.../superset-ui-core/src/chart/types/VizType.ts | 72 ++
.../test/chart/clients/ChartClient.test.ts | 23 +-
.../test/chart/fixtures/formData.ts | 10 +-
.../test/chart/models/ChartPlugin.test.tsx | 3 +-
.../test/query/api/legacy/getFormData.test.ts | 3 +-
.../test/query/api/v1/getChartData.test.ts | 4 +-
.../test/query/buildQueryContext.test.ts | 12 +-
.../test/query/buildQueryObject.test.ts | 37 +-
.../superset-ui-core/test/query/getAxis.test.ts | 8 +-
.../test/query/normalizeOrderBy.test.ts | 28 +-
.../test/query/normalizeTimeColumn.test.ts | 21 +-
.../time-comparison/getComparisonFilters.test.ts | 4 +-
.../test/time-comparison/getComparisonInfo.test.ts | 8 +-
.../LegacyPluginChartChord.stories.tsx | 6 +-
.../Heatmap.stories.tsx | 10 +-
.../Histogram.stories.tsx | 8 +-
.../Horizon.stories.tsx | 6 +-
.../Partition.stories.tsx | 6 +-
.../legacy-plugin-chart-rose/Rose.stories.tsx | 6 +-
.../legacy-plugin-chart-sankey/Sankey.stories.tsx | 8 +-
.../BigNumber/BigNumber.stories.tsx | 4 +-
.../BigNumberTotal/BigNumberTotal.stories.tsx | 6 +-
.../Area/NVD3Area.stories.tsx | 3 +-
.../Area/stories/controlsShown.tsx | 6 +-
.../Area/stories/expanded.tsx | 6 +-
.../Area/stories/stacked.tsx | 6 +-
.../Area/stories/stackedWithBounds.tsx | 10 +-
.../Bar/NVD3Bar.stories.tsx | 3 +-
.../stories/barWithPositiveAndNegativeValues.tsx | 6 +-
.../Bar/stories/barWithValues.tsx | 6 +-
.../legacy-preset-chart-nvd3/Bar/stories/basic.tsx | 6 +-
.../Bar/stories/stackedBarWithValues.tsx | 6 +-
.../BoxPlot/stories/basic.tsx | 4 +-
.../Bubble/NVD3Bubble.stories.tsx | 3 +-
.../Bubble/stories/basic.tsx | 6 +-
.../Bullet/NVD3Bullet.stories.tsx | 3 +-
.../Bullet/stories/basic.tsx | 6 +-
.../Compare/NVD3Compare.stories.tsx | 3 +-
.../Compare/stories/basic.tsx | 4 +-
.../Compare/stories/timeFormat.tsx | 4 +-
.../DistBar/stories/basic.tsx | 4 +-
.../DistBar/stories/manyBars.tsx | 4 +-
.../Line/NVD3Line.stories.tsx | 3 +-
.../Line/stories/basic.tsx | 6 +-
.../Line/stories/logScale.tsx | 6 +-
.../Line/stories/markers.tsx | 6 +-
.../Line/stories/yAxisBounds.tsx | 22 +-
.../Pie/NVD3Pie.stories.tsx | 3 +-
.../legacy-preset-chart-nvd3/Pie/stories/basic.tsx | 6 +-
.../Pie/stories/noData.tsx | 6 +-
.../AreaSeries/AreaSeries.stories.tsx | 12 +-
.../Bubble/BubbleChart.stories.tsx | 12 +-
.../plugin-chart-echarts/Funnel/Funnel.stories.tsx | 12 +-
.../plugin-chart-echarts/Pie/Pie.stories.tsx | 19 +-
.../plugin-chart-echarts/Radar/Radar.stories.tsx | 12 +-
.../Waterfall/Waterfall.stories.tsx | 12 +-
.../PivotTable.stories.tsx | 8 +-
.../plugins/plugin-chart-pivot-table/testData.ts | 4 +-
.../plugins/plugin-chart-table/Table.stories.tsx | 8 +-
.../stories/plugins/plugin-chart-table/testData.ts | 2 +-
.../test/OptionDescription.test.jsx | 1 -
.../legacy-preset-chart-nvd3/src/NVD3Vis.js | 88 +-
.../plugins/legacy-preset-chart-nvd3/src/preset.js | 22 +-
.../legacy-preset-chart-nvd3/src/transformProps.js | 12 +-
.../plugins/plugin-chart-echarts/README.md | 2 +-
.../src/Funnel/transformProps.ts | 3 +-
.../src/Timeseries/Regular/Bar/controlPanel.tsx | 24 +
.../plugins/plugin-chart-echarts/src/controls.tsx | 6 +-
.../test/BigNumber/transformProps.test.ts | 5 +-
.../test/Gauge/transformProps.test.ts | 3 +-
.../test/MixedTimeseries/transformProps.test.ts | 4 +-
.../test/Timeseries/buildQuery.test.ts | 4 +-
.../test/Waterfall/buildQuery.test.ts | 4 +-
.../plugin-chart-echarts/test/index.test.ts | 35 +-
.../test/utils/formDataSuffix.test.ts | 7 +-
.../test/plugin/transformProps.test.ts | 9 +-
.../plugin-chart-table/test/buildQuery.test.ts | 4 +-
.../plugins/plugin-chart-table/test/testData.ts | 3 +-
.../test/buildQuery.test.ts | 3 +-
.../spec/fixtures/mockChartQueries.js | 3 +-
.../spec/fixtures/mockExploreFormData.ts | 4 +-
.../spec/fixtures/mockSliceEntities.js | 24 +-
.../src/SqlLab/components/ColumnElement/index.tsx | 2 +-
.../components/ExploreCtasResultsButton/index.tsx | 4 +-
.../SqlLab/components/ResultSet/ResultSet.test.tsx | 40 +-
.../src/SqlLab/components/ResultSet/index.tsx | 20 +-
.../SqlLab/components/SaveDatasetModal/index.tsx | 7 +-
.../src/SqlLab/components/TableElement/index.tsx | 3 +-
superset-frontend/src/components/Button/index.tsx | 3 +-
.../Chart/ChartContextMenu/useContextMenu.test.tsx | 4 +-
.../src/components/Chart/ChartRenderer.jsx | 3 +-
.../src/components/Chart/ChartRenderer.test.jsx | 8 +-
.../DrillDetail/DrillDetailMenuItems.test.tsx | 6 +-
.../src/components/InfoTooltip/index.tsx | 3 +-
.../src/components/ListView/ActionsBar.tsx | 3 +-
.../src/components/ListView/CrossLinks.tsx | 2 +-
.../src/components/Tooltip/Tooltip.stories.tsx | 3 +-
.../src/components/Tooltip/Tooltip.test.tsx | 8 +-
superset-frontend/src/components/Tooltip/index.tsx | 40 +-
.../src/components/TooltipParagraph/index.tsx | 4 +-
.../src/components/TruncatedList/index.tsx | 2 +-
.../components/AddSliceCard/AddSliceCard.test.tsx | 4 +-
.../src/dashboard/components/AnchorLink/index.tsx | 2 +-
.../src/dashboard/components/Dashboard.jsx | 30 +-
.../DashboardBuilder/DashboardBuilder.test.tsx | 6 +-
.../DashboardBuilder/DashboardBuilder.tsx | 83 +-
.../DashboardBuilder/DashboardContainer.tsx | 166 ++--
.../dashboard/components/DashboardBuilder/state.ts | 30 +-
.../dashboard/components/FiltersBadge/index.tsx | 17 +-
.../components/SliceHeader/SliceHeader.test.tsx | 6 +-
.../src/dashboard/components/SliceHeader/index.tsx | 344 ++++----
.../SliceHeaderControls.test.tsx | 20 +-
.../components/SliceHeaderControls/index.tsx | 5 +-
.../components/SyncDashboardState/index.tsx | 68 +-
.../components/URLShortLinkButton/index.tsx | 13 +-
.../dashboard/components/gridComponents/Chart.jsx | 907 +++++++++++----------
.../components/gridComponents/Chart.test.jsx | 114 ++-
.../components/gridComponents/ChartHolder.tsx | 225 ++---
.../dashboard/components/gridComponents/Column.jsx | 380 ++++-----
.../components/gridComponents/DynamicComponent.tsx | 3 +-
.../dashboard/components/gridComponents/Header.jsx | 4 +-
.../components/gridComponents/Header.test.jsx | 16 +
.../dashboard/components/gridComponents/Row.jsx | 504 ++++++------
.../dashboard/components/gridComponents/Tab.jsx | 287 ++++---
.../components/gridComponents/Tab.test.tsx | 39 +
.../dashboard/components/gridComponents/Tabs.jsx | 700 ++++++++--------
.../components/gridComponents/Tabs.test.jsx | 25 +-
.../components/gridComponents/Tabs.test.tsx | 2 +-
.../dashboard/components/gridComponents/index.js | 4 +-
.../components/menu/ShareMenuItems/index.tsx | 13 +-
.../ScopingModal/ScopingModal.test.tsx | 3 +
.../CrossFilters/ScopingModal/ScopingModal.tsx | 24 +-
.../FilterBar/CrossFilters/Vertical.tsx | 18 +-
.../FilterBar/CrossFilters/selectors.ts | 27 +-
.../FilterBar/FilterControls/FilterControls.tsx | 201 ++---
.../FilterBar/FilterControls/FilterValue.tsx | 2 +-
.../nativeFilters/FilterBar/Horizontal.tsx | 38 +-
.../components/nativeFilters/FilterBar/index.tsx | 48 +-
.../nativeFilters/FilterBar/useFilterOutlined.ts | 25 +-
.../components/nativeFilters/FilterBar/utils.ts | 31 +-
.../nativeFilters/FilterCard/FilterCard.test.tsx | 3 +
.../components/nativeFilters/FilterCard/Styles.ts | 2 +-
.../FilterCard/TooltipWithTruncation.tsx | 3 +-
.../FiltersConfigForm/FilterScope/utils.test.ts | 41 +-
.../components/nativeFilters/selectors.ts | 32 +-
.../dashboard/components/nativeFilters/state.ts | 55 +-
.../components/nativeFilters/utils.test.ts | 6 +-
.../dashboard/components/nativeFilters/utils.ts | 93 +--
.../src/dashboard/containers/Chart.jsx | 135 ---
.../src/dashboard/containers/Dashboard.ts | 6 +-
.../dashboard/containers/DashboardComponent.jsx | 147 ++--
.../src/dashboard/containers/DashboardPage.tsx | 46 +-
superset-frontend/src/dashboard/styles.ts | 4 +-
.../src/dashboard/util/charts/useChartIds.ts | 17 +-
.../src/dashboard/util/crossFilters.test.ts | 12 +-
.../src/dashboard/util/crossFilters.ts | 11 +-
.../src/dashboard/util/getChartIdsInFilterScope.ts | 5 +-
...hartIdsFromLayout.js => useChartLayoutItems.ts} | 22 +-
.../util/useFilterFocusHighlightStyles.test.tsx | 50 --
.../util/useFilterFocusHighlightStyles.ts | 64 +-
.../src/explore/actions/hydrateExplore.test.ts | 9 +-
.../src/explore/actions/hydrateExplore.ts | 3 +-
.../src/explore/actions/saveModalActions.test.ts | 9 +-
.../explore/components/ControlPanelsContainer.tsx | 4 +-
.../test/ResultsPaneOnDashboard.test.tsx | 6 +-
.../components/DataTablesPane/test/fixture.tsx | 6 +-
.../ExploreChartHeader/ExploreChartHeader.test.tsx | 10 +-
.../ExploreChartPanel/ExploreChartPanel.test.jsx | 12 +-
.../ExploreViewContainer.test.tsx | 3 +-
.../PropertiesModal/PropertiesModal.test.tsx | 3 +-
.../AnnotationLayer.test.tsx | 12 +-
.../ColorSchemeControl/ColorSchemeLabel.tsx | 2 +-
.../components/DateFunctionTooltip.tsx | 4 +-
.../components/controls/VizTypeControl/VizTile.tsx | 4 +-
.../VizTypeControl/VizTypeControl.test.tsx | 32 +-
.../controls/VizTypeControl/constants.tsx | 13 +-
.../useExploreAdditionalActionsMenu/index.jsx | 3 +-
.../src/explore/controlUtils/controlUtils.test.tsx | 3 +-
.../getFormDataFromDashboardContext.test.ts | 4 +-
.../controlUtils/standardizedFormData.test.ts | 29 +-
.../exploreUtils/getParsedExploreURLParams.test.ts | 3 +-
superset-frontend/src/explore/fixtures.tsx | 8 +-
superset-frontend/src/explore/store.js | 4 +-
.../src/features/alerts/AlertReportModal.test.tsx | 3 +-
.../src/features/alerts/AlertReportModal.tsx | 5 +-
.../src/features/home/ChartTable.test.tsx | 3 +-
.../reports/ReportModal/ReportModal.test.tsx | 2 +-
.../src/features/reports/ReportModal/index.tsx | 11 +-
superset-frontend/src/pages/Chart/Chart.test.tsx | 8 +-
.../src/pages/ChartCreation/index.tsx | 2 +-
.../src/pages/ChartList/ChartList.test.jsx | 2 +-
.../pages/SavedQueryList/SavedQueryList.test.jsx | 4 +-
superset-frontend/src/theme/index.ts | 4 +
.../src/ace-builds.d.ts => src/types/Action.ts} | 2 +-
.../src/types/DashboardContextForExplore.ts | 1 +
superset-frontend/src/utils/colorScheme.ts | 9 +-
.../src/visualizations/presets/MainPreset.js | 115 +--
superset/db_engine_specs/databricks.py | 2 +
superset/migrations/shared/utils.py | 15 +
...4-01_22-44_c22cb5c2e546_user_attr_avatar_url.py | 7 +-
...-04-11_15-41_5f57af97bc3f_add_catalog_column.py | 4 +-
...0-52_58d051681a3b_add_catalog_perm_to_tables.py | 5 +-
.../unit_tests/db_engine_specs/test_databricks.py | 22 +-
235 files changed, 3625 insertions(+), 3176 deletions(-)
create mode 100644
superset-frontend/packages/superset-ui-core/src/chart/types/VizType.ts
delete mode 100644 superset-frontend/src/dashboard/containers/Chart.jsx
copy superset-frontend/src/dashboard/util/{getChartIdsFromLayout.js =>
useChartLayoutItems.ts} (68%)
copy
superset-frontend/{packages/superset-ui-chart-controls/src/ace-builds.d.ts =>
src/types/Action.ts} (92%)