This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a change to branch template_less
in repository https://gitbox.apache.org/repos/asf/superset.git
from 33f2ffd2a9 chore: rip antd-v4 from the app! (#33411)
add 29ac507d56 fix(deckgl): fix deckgl multiple layers chart filter and
viewport (#33364)
add dc4474889d fix(table-chart): time shift is not working (#33425)
add 8a8fb49617 docs: CVEs fixed on 4.1.2 (#33435)
add fa1693dc5f feat(Pie Chart): threshold for Other (#33348)
add fbc84a1f9a chore(🦾): bump python shillelagh subpackage(s) (#33278)
add 928a052440 chore(deps): bump express from 4.21.2 to 5.1.0 in
/superset-websocket/utils/client-ws-app (#32948)
add 9f680a63f8 fix(NativeFilters): Apply existing values (#33467)
add d12f86363f docs(installation): show example of extending Docker image
(#33472)
add 0bdd8a223d docs: added europace to INTHEWILD.md (#33458)
add b050897ebd fix: allow metadata to parse json (#33444)
add 1921ba993e fix(dependabot): adds required schedule to uv updates
(#33475)
add e03d840d06 chore(deps-dev): bump @babel/preset-env from 7.26.7 to
7.27.2 in /superset-frontend (#33499)
add e520538af6 chore(deps): bump antd from 5.24.9 to 5.25.1 in /docs
(#33490)
add 0f240ea1b2 chore(deps-dev): bump webpack from 5.99.7 to 5.99.8 in
/docs (#33492)
add be41e0526a chore(deps-dev): bump eslint-config-prettier from 10.1.2 to
10.1.5 in /docs (#33491)
add 51c25831e8 chore(deps): bump debug from 4.4.0 to 4.4.1 in
/superset-websocket/utils/client-ws-app (#33476)
add af21ef2497 chore(deps): bump ace-builds from 1.37.5 to 1.41.0 in
/superset-frontend (#33498)
add 217f11a8f7 fix(table): table ui fixes (#33494)
add 76358ed64e chore(fab): bumped fab from 4.6.3 to 4.6.4 (#33469)
add 0653e123cc feat(chart): add dynamicQueryObjectCount property to Chart
Metadata (#33451)
add 26563bb330 fix: optimize Explore popovers rendering (#33501)
add 39b3de6b5d fix(CI): adding explicit allowable licenses for python
dependencies (#33521)
add 0af5770a49 Merge branch 'master' into template_less
No new revisions were added by this update.
Summary of changes:
.github/dependabot.yml | 2 +
.github/workflows/dependency-review.yml | 2 +
RESOURCES/INTHEWILD.md | 1 +
docs/docs/installation/docker-builds.mdx | 45 +
docs/docs/installation/installation-methods.mdx | 4 +-
docs/docs/security/cves.mdx | 6 +
docs/package.json | 6 +-
docs/yarn.lock | 54 +-
pyproject.toml | 11 +-
requirements/base.txt | 50 +-
requirements/development.txt | 49 +-
superset-frontend/package-lock.json | 1520 ++++++++++----------
superset-frontend/package.json | 5 +-
.../src/chart/models/ChartMetadata.ts | 5 +
.../src/connection/callApi/parseResponse.ts | 15 +-
.../src/validator/validateServerPagination.ts | 14 +-
.../test/connection/callApi/parseResponse.test.ts | 3 +-
.../validator/validateServerPagination.test.ts | 139 +-
.../packages/superset-ui-demo/package.json | 2 +-
.../legacy-preset-chart-deckgl/src/Multi/Multi.tsx | 71 +-
.../src/layers/Arc/Arc.tsx | 2 +-
.../src/layers/Contour/Contour.tsx | 2 +-
.../src/layers/Geojson/Geojson.tsx | 27 +-
.../src/layers/Grid/Grid.tsx | 2 +-
.../src/layers/Heatmap/Heatmap.tsx | 2 +-
.../src/layers/Hex/Hex.tsx | 2 +-
.../src/layers/Path/Path.tsx | 2 +-
.../src/layers/Polygon/Polygon.tsx | 6 +-
.../src/layers/Scatter/Scatter.tsx | 2 +-
.../src/layers/Screengrid/Screengrid.tsx | 2 +-
.../plugins/legacy-preset-chart-nvd3/package.json | 2 +-
.../plugin-chart-echarts/src/Pie/buildQuery.ts | 18 +-
.../plugin-chart-echarts/src/Pie}/constants.ts | 3 +-
.../plugin-chart-echarts/src/Pie/controlPanel.tsx | 17 +
.../plugin-chart-echarts/src/Pie/transformProps.ts | 87 +-
.../plugins/plugin-chart-echarts/src/Pie/types.ts | 12 +
.../src => plugin-chart-echarts/src/Pie}/utils.ts | 7 +-
.../test/Pie/transformProps.test.ts | 85 +-
.../plugin-chart-table/src/DataTable/DataTable.tsx | 16 +-
.../plugins/plugin-chart-table/src/TableChart.tsx | 6 +-
.../plugins/plugin-chart-table/src/consts.ts | 4 +
.../plugin-chart-table/src/controlPanel.tsx | 5 +-
.../src/components/AsyncAceEditor/Tooltip.test.tsx | 36 +-
.../src/components/AsyncAceEditor/Tooltip.tsx | 47 +-
.../src/components/AsyncAceEditor/index.tsx | 237 +--
.../DataTablesPane/components/useResultsPane.tsx | 33 +-
.../test/ResultsPaneOnDashboard.test.tsx | 29 +
.../controls/NumberControl/NumberControl.test.tsx | 67 +
.../components/controls/NumberControl/index.tsx | 78 +
.../components/controls/TextAreaControl.jsx | 10 +-
.../src/explore/components/controls/index.js | 2 +
.../src/explore/controlUtils/getColumnKeywords.tsx | 7 +-
.../databases/DatabaseModal/ExtraOptions.test.tsx | 194 +++
.../databases/DatabaseModal/ExtraOptions.tsx | 5 +-
.../components/Select/SelectFilterPlugin.tsx | 10 +-
.../utils/client-ws-app/package-lock.json | 1282 +++++++++--------
.../utils/client-ws-app/package.json | 4 +-
superset/viz.py | 24 +
58 files changed, 2585 insertions(+), 1795 deletions(-)
copy
superset-frontend/{src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal
=> plugins/plugin-chart-echarts/src/Pie}/constants.ts (92%)
copy superset-frontend/plugins/{legacy-plugin-chart-world-map/src =>
plugin-chart-echarts/src/Pie}/utils.ts (84%)
create mode 100644
superset-frontend/src/explore/components/controls/NumberControl/NumberControl.test.tsx
create mode 100644
superset-frontend/src/explore/components/controls/NumberControl/index.tsx
create mode 100644
superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.test.tsx