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

github-bot pushed a change to branch 
dependabot/npm_and_yarn/superset-frontend/types/node-25.3.2
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 85acdc09c4 chore(deps-dev): bump @types/node in /superset-frontend
     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 dccf984d4b chore(deps-dev): bump @types/node in /superset-frontend

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   (85acdc09c4)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/superset-frontend/types/node-25.3.2 
(dccf984d4b)

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 +-
 .../configuration/configuring-superset.mdx         |   7 +-
 docs/admin_docs/security/cves.mdx                  |  10 +
 docs/package.json                                  |   6 +-
 docs/yarn.lock                                     | 164 ++++----
 superset-frontend/package-lock.json                | 434 ++++++++++-----------
 superset-frontend/package.json                     |   2 +-
 .../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           | 272 +++++++++++++
 .../Datasource/FoldersEditor/TreeItem.styles.ts    |   2 +-
 .../FoldersEditor/VirtualizedTreeItem.tsx          |   8 +
 .../FoldersEditor/VirtualizedTreeList.tsx          |   4 +
 .../components/DragOverlayContent.test.tsx         | 124 ++++++
 .../components/DragOverlayContent.tsx              |  66 +++-
 .../Datasource/FoldersEditor/constants.ts          |   3 +
 .../FoldersEditor/hooks/useDragHandlers.test.ts    | 164 ++++++++
 .../FoldersEditor/hooks/useDragHandlers.ts         | 130 ++++--
 .../FoldersEditor/hooks/useItemHeights.ts          |   7 +-
 .../components/Datasource/FoldersEditor/index.tsx  | 232 +++++++++--
 .../Datasource/FoldersEditor/sensors.test.ts       | 120 ++++++
 .../components/Datasource/FoldersEditor/sensors.ts |  58 ++-
 .../components/Datasource/FoldersEditor/styles.tsx |  50 +++
 .../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 +-
 tests/unit_tests/initialization_test.py            |  72 +++-
 48 files changed, 2195 insertions(+), 463 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

Reply via email to