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

dependabot[bot] pushed a change to branch 
dependabot/npm_and_yarn/superset-frontend/eslint-10.3.0
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 8b56ec3413b chore(deps-dev): bump eslint from 8.57.1 to 10.3.0 in 
/superset-frontend
     add 785a08c7d5c chore(frontend): export typed useAppDispatch / 
useAppSelector hooks (#40027)
     add e77f6ece92e fix(ci): serialize Docs Deployment runs to avoid push 
races (#40030)
     add cfb704dbeb7 test(sqllab): stabilize SaveDatasetModal overwrite-flow 
test helper (#40036)
     add 187bb416e76 fix(plugin-chart-ag-grid-table): use display text for 
filter and sort on HTML cells (#39885)
     add e66fbc91c2d chore(gha): pass commenter login through env in claude.yml 
(#40042)
     add 5ab8583cd0d chore(gha): pin github/codeql-action to a SHA (#40043)
     add 24d76b42495 fix(sunburst): remove label text outline in dark theme 
(#39774)
     add fed29b3017d fix(deploy): prevent double-prefix of logo URL in 
subdirectory deployments (#39472)
     add a6ad0bf1692 fix(re-encrypt-secrets): use db.Model.metadata to discover 
encrypted … (#39390)
     add fa168fcc8a5 fix(Label): use correct color for label component (#38707)
     add 85935b0b882 fix(mcp): handle SSL connection drop during pre-call 
session teardown (#39917)
     add 460992d89b3 fix(mcp): improve not-found errors to suggest 
corresponding list_* tools (#39919)
     add d2ae5fb275c fix(ux): remove CSS-forced uppercase from button labels 
(#40049)
     add c394405fc18 fix(explore): restore spacing between tabs and content in 
control popovers (#40023)
     add b0c5b061c52 fix(sqllab): display horizontal scrollbar in data preview 
modal (#39799)
     add 4a79896bb24 chore(build): replace replaceable `jest-mock-console` with 
native Jest spies (#38643)
     add 658907a0a61 fix(gha): use sound condition gating for latest-tag step 
(#40035)
     add c9fb1bc10fc chore(deps-dev): bump @typescript-eslint/parser from 
8.59.2 to 8.59.3 in /superset-frontend (#40057)
     add ffc16b1ec5a chore(deps-dev): bump eslint from 8.57.1 to 10.3.0 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   (8b56ec3413b)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/superset-frontend/eslint-10.3.0 (ffc16b1ec5a)

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/claude.yml                       |  10 +-
 .github/workflows/codeql-analysis.yml              |   4 +-
 .github/workflows/latest-release-tag.yml           |   2 +-
 .github/workflows/superset-docs-deploy.yml         |  10 +
 docs/package.json                                  |   6 +-
 docs/yarn.lock                                     | 142 +++---
 superset-frontend/.eslintrc.js                     |   4 +
 superset-frontend/package-lock.json                | 249 +++++----
 superset-frontend/package.json                     |   4 +-
 .../packages/superset-ui-core/package.json         |   1 -
 .../src/components/Label/index.tsx                 |   2 +-
 .../test/chart/components/SuperChart.test.tsx      |   8 -
 .../test/chart/components/SuperChartCore.test.tsx  |  11 -
 .../components/createLoadableRenderer.test.tsx     |   7 -
 .../superset-ui-core/test/models/Registry.test.ts  |  25 +-
 .../src/utils/htmlTextFilterValueGetter.test.ts    |  83 +++
 .../src/utils/htmlTextFilterValueGetter.ts         |  74 +++
 .../src/utils/useColDefs.ts                        |  21 +
 .../src/Sunburst/transformProps.ts                 |   2 -
 .../test/Sunburst/transformProps.test.ts           |  53 ++
 .../src/SqlLab/components/QueryTable/styles.ts     |   1 -
 .../SaveDatasetModal/SaveDatasetModal.test.tsx     |  30 +-
 .../explore/components/ExploreContentPopover.tsx   |  10 +-
 .../FilterControl/AdhocFilterEditPopover/index.tsx |  20 +-
 .../index.tsx                                      |   7 +-
 .../LayerConfigsPopoverContent.tsx                 |   2 -
 .../controls/MapViewControl/MapViewControl.tsx     |   1 -
 .../src/hooks/apiResources/tables.test.ts          |   2 +-
 superset-frontend/src/views/store.ts               |  14 +
 superset-websocket/package-lock.json               | 562 +++++----------------
 superset-websocket/package.json                    |   6 +-
 superset/app.py                                    |  16 -
 superset/mcp_service/auth.py                       |  45 +-
 superset/mcp_service/chart/tool/get_chart_data.py  |  11 +-
 .../mcp_service/chart/tool/get_chart_preview.py    |  21 +-
 superset/mcp_service/chart/tool/update_chart.py    |  14 +-
 .../tool/add_chart_to_existing_dashboard.py        |  10 +-
 .../dashboard/tool/generate_dashboard.py           |   5 +-
 superset/mcp_service/dataset/tool/query_dataset.py |   5 +-
 superset/mcp_service/sql_lab/tool/execute_sql.py   |   5 +-
 .../sql_lab/tool/open_sql_lab_with_context.py      |   3 +-
 superset/utils/encrypt.py                          |  21 +-
 tests/integration_tests/utils/encrypt_tests.py     |  15 +
 .../sql_lab/tool/test_open_sql_lab_with_context.py |   3 +-
 .../mcp_service/test_auth_user_resolution.py       |  44 ++
 45 files changed, 820 insertions(+), 771 deletions(-)
 create mode 100644 
superset-frontend/plugins/plugin-chart-ag-grid-table/src/utils/htmlTextFilterValueGetter.test.ts
 create mode 100644 
superset-frontend/plugins/plugin-chart-ag-grid-table/src/utils/htmlTextFilterValueGetter.ts
 create mode 100644 
superset-frontend/plugins/plugin-chart-echarts/test/Sunburst/transformProps.test.ts

Reply via email to