This is an automated email from the ASF dual-hosted git repository.
jli pushed a change to branch showtime-master
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 6187dab07d chore: fix spacing in AGENTS.md
add bb6ee9e722 fix(clickhouse): remove _mutate_label workaround and bump
clickhouse-connect to >=0.13.0 (#38280)
add 7f061a3764 fix(bigquery): pass dialect instead of engine to
select_star in get_extra_table_metadata (#38281)
add 0827ec3811 fix(dataset-modal): include nested folders when dragging
all their children (#38275)
add 11dfda11d3 fix(folders): expand collapsed folders on Select All and
add selection counter (#38270)
add 7743183401 fix(bugs): fixing bugs for world map chart (#38030)
add 761cee2d85 fix(componentParent): Newly created tabs don't show up in
Scoping tab (#37807)
add e5cbc98482 fix(ag-grid): render boolean columns as checkboxes instead
of blank cells (#38279)
add 5e890a8cf7 fix(folders): remove stale column/metric refs from folders
on delete (#38302)
add 63f1d9eb98 feat(folders-editor): drag entire folder block as single
unit (#38122)
add a410b76f99 docs: add Apache Superset CVEs for February 2026 release
(#38278)
add 15d7538435 fix(sqllab): pass queryLimit on data preview queries and
fix Decimal TypeError in results handler (#37614)
add 287a94f46c chore(deps): bump react-syntax-highlighter from 16.1.0 to
16.1.1 in /superset-frontend (#38296)
add b1b10ec329 chore(deps): bump @swc/core from 1.15.13 to 1.15.17 in
/docs (#38292)
add 848cce7b2e chore(deps): bump actions/upload-artifact from 6 to 7
(#38290)
add 1f41777800 chore(deps): bump actions/download-artifact from 7 to 8
(#38289)
add a162b02123 chore(deps-dev): bump @types/node from 25.3.1 to 25.3.2 in
/superset-websocket (#38288)
add a849802a2b chore(deps): bump minimatch in /superset-websocket (#38282)
add 3794591d28 chore(deps): bump caniuse-lite from 1.0.30001770 to
1.0.30001774 in /docs (#38180)
add 6fe69fc81c chore: Support specifying app_root via superset_config.py
(#38284)
add d039172013 chore(deps-dev): bump webpack from 5.105.2 to 5.105.3 in
/docs (#38271)
add 7f280f5de9 fix(Dataset Folders): improve search-collapse (#38188)
add 1d141b2948 fix: Warning toasts when user drops folder item outside of
dnd context (#38304)
add 0d9db04df0 chore(deps-dev): bump @swc/core from 1.15.13 to 1.15.17 in
/superset-frontend (#38295)
add d31a2f96c9 chore(deps-dev): bump webpack from 5.105.2 to 5.105.3 in
/superset-frontend (#38294)
add 92a0a2242b chore: fix spacing in AGENTS.md
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 (6187dab07d)
\
N -- N -- N refs/heads/showtime-master (92a0a2242b)
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-e2e.yml | 4 +-
.github/workflows/superset-extensions-cli.yml | 2 +-
.github/workflows/superset-frontend.yml | 14 +-
.github/workflows/superset-playwright.yml | 2 +-
.../workflows/superset-python-integrationtest.yml | 2 +-
UPDATING.md | 4 +
.../configuration/configuring-superset.mdx | 7 +-
docs/admin_docs/security/cves.mdx | 10 +
docs/package.json | 6 +-
docs/src/data/databases.json | 10 +-
docs/yarn.lock | 164 ++++----
pyproject.toml | 2 +-
superset-frontend/package-lock.json | 452 ++++++++++-----------
superset-frontend/package.json | 4 +-
.../packages/superset-ui-core/package.json | 2 +-
.../src/components/ThemedAgGridReact/index.tsx | 3 +
.../legacy-plugin-chart-world-map/src/WorldMap.ts | 20 +-
.../test/WorldMap.test.ts | 141 ++++++-
.../src/utils/useColDefs.ts | 32 +-
.../test/utils/useColDefs.test.ts | 135 ++++++
superset-frontend/src/SqlLab/actions/sqlLab.ts | 2 +
.../src/SqlLab/components/TablePreview/index.tsx | 2 +-
superset-frontend/src/SqlLab/constants.ts | 2 +
.../FoldersEditor/FoldersEditor.test.tsx | 336 +++++++++++++++
.../Datasource/FoldersEditor/TreeItem.styles.ts | 2 +-
.../FoldersEditor/VirtualizedTreeItem.tsx | 8 +
.../FoldersEditor/VirtualizedTreeList.tsx | 4 +
.../components/DragOverlayContent.test.tsx | 124 ++++++
.../components/DragOverlayContent.tsx | 66 ++-
.../components/FoldersToolbarComponent.tsx | 118 ++++--
.../Datasource/FoldersEditor/constants.ts | 3 +
.../FoldersEditor/hooks/useDragHandlers.test.ts | 164 ++++++++
.../FoldersEditor/hooks/useDragHandlers.ts | 263 ++++++++++--
.../FoldersEditor/hooks/useItemHeights.ts | 7 +-
.../components/Datasource/FoldersEditor/index.tsx | 268 ++++++++++--
.../Datasource/FoldersEditor/sensors.test.ts | 120 ++++++
.../components/Datasource/FoldersEditor/sensors.ts | 58 ++-
.../components/Datasource/FoldersEditor/styles.tsx | 64 +++
.../Datasource/FoldersEditor/treeUtils.test.ts | 84 ++++
.../Datasource/FoldersEditor/treeUtils.ts | 46 +++
.../DatasourceEditor/DatasourceEditor.tsx | 25 +-
.../src/dashboard/components/SliceHeader/index.tsx | 6 +-
.../components/gridComponents/Chart/Chart.tsx | 2 +
.../src/dashboard/reducers/dashboardLayout.test.ts | 105 +++++
.../src/dashboard/reducers/dashboardLayout.ts | 12 +-
.../src/explore/components/ChartPills.tsx | 6 +-
.../useExploreAdditionalActionsMenu/index.tsx | 2 +
superset-websocket/package-lock.json | 63 +--
superset-websocket/package.json | 2 +-
superset/app.py | 5 +-
superset/commands/sql_lab/results.py | 2 +-
superset/db_engine_specs/bigquery.py | 2 +-
superset/db_engine_specs/clickhouse.py | 22 +-
.../unit_tests/db_engine_specs/test_clickhouse.py | 17 -
tests/unit_tests/initialization_test.py | 72 +++-
55 files changed, 2554 insertions(+), 546 deletions(-)
create mode 100644
superset-frontend/plugins/plugin-chart-ag-grid-table/test/utils/useColDefs.test.ts
create mode 100644
superset-frontend/src/components/Datasource/FoldersEditor/components/DragOverlayContent.test.tsx
create mode 100644
superset-frontend/src/components/Datasource/FoldersEditor/hooks/useDragHandlers.test.ts
create mode 100644
superset-frontend/src/components/Datasource/FoldersEditor/sensors.test.ts