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/webpack-5.105.1
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 78fbcb5fb9f chore(deps-dev): bump webpack in /superset-frontend
     add 77148277b96 feat(charts): improve negative stacked bar label 
positioning and accessibility (#37405)
     add 19ec7b48a0f fix: Conditional formatting painting empty cells (#37894)
     add 30ccbb2e050 chore(deps): update @types/geojson requirement from 
^7946.0.10 to ^7946.0.16 in 
/superset-frontend/plugins/plugin-chart-cartodiagram (#37908)
     add afacca350f0 chore(deps-dev): bump oxlint from 1.42.0 to 1.46.0 in 
/superset-frontend (#37917)
     add 3f64c257120 fix(mcp): Add database_name as valid filter column for 
list_datasets (#37865)
     add 4dfece9ee54 feat(mcp): add event_logger instrumentation to MCP tools 
(#37859)
     add 88ce1425e2c fix(roles): optimize user fetching and resolve N+1 query 
issue (#37235)
     add dbf5e1f1314 feat(theme): use IBM Plex Mono for code and numerical 
displays (#37366)
     add f814b1516b6 chore(deps-dev): bump webpack 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   (78fbcb5fb9f)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/superset-frontend/webpack-5.105.1 
(f814b1516b6)

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:
 UPDATING.md                                        |  36 ++
 docs/package.json                                  |   1 +
 docs/yarn.lock                                     |   5 +
 superset-frontend/oxlint.json                      |   2 +-
 superset-frontend/package-lock.json                | 709 +++++++++------------
 superset-frontend/package.json                     |   5 +-
 .../packages/superset-core/package.json            |   2 +-
 .../superset-core/src/ui/theme/GlobalStyles.tsx    |   6 +-
 .../superset-core/src/ui/theme/Theme.test.tsx      |   2 +-
 .../packages/superset-core/src/utils/index.ts      |   1 +
 .../superset-core/src/utils/isBlank.test.ts        |  59 ++
 .../superset-core/src/utils/isBlank.ts}            |  16 +-
 .../src/utils/getColorFormatters.ts                |  13 +-
 .../test/utils/getColorFormatters.test.ts          | 111 ++++
 .../AsyncAceEditor/AsyncAceEditor.test.tsx         |  15 +
 .../src/components/AsyncAceEditor/index.tsx        |   5 +-
 .../src/components/Label/Label.test.tsx            |   5 +
 .../src/ScatterPlotGlowOverlay.tsx                 |   2 +-
 .../plugins/plugin-chart-cartodiagram/package.json |   2 +-
 .../src/Timeseries/transformers.ts                 |  47 +-
 .../test/Timeseries/transformers.test.ts           |  97 +--
 .../src/react-pivottable/utilities.ts              |   4 +-
 .../plugin-chart-table/test/TableChart.test.tsx    |   4 +-
 .../src/SqlLab/components/ResultSet/index.tsx      |   1 +
 .../src/components/RowCountLabel/index.tsx         |   2 +-
 .../components/gridComponents/Row/Row.test.tsx     |   2 +-
 .../src/features/roles/RoleListEditModal.test.tsx  |  37 ++
 .../src/features/roles/RoleListEditModal.tsx       |  12 +-
 .../src/pages/ExecutionLogList/index.tsx           |  12 +-
 superset/config.py                                 |   2 +-
 superset/daos/dataset.py                           |  41 +-
 superset/mcp_service/chart/tool/generate_chart.py  | 270 ++++----
 superset/mcp_service/chart/tool/get_chart_data.py  |  80 ++-
 superset/mcp_service/chart/tool/get_chart_info.py  |  20 +-
 .../mcp_service/chart/tool/get_chart_preview.py    | 149 +++--
 superset/mcp_service/chart/tool/list_charts.py     |  27 +-
 superset/mcp_service/chart/tool/update_chart.py    |  83 +--
 .../mcp_service/chart/tool/update_chart_preview.py |  23 +-
 .../tool/add_chart_to_existing_dashboard.py        | 135 ++--
 .../dashboard/tool/generate_dashboard.py           |  99 +--
 .../dashboard/tool/get_dashboard_info.py           |  20 +-
 .../mcp_service/dashboard/tool/list_dashboards.py  |  25 +-
 superset/mcp_service/dataset/schemas.py            |   1 +
 .../mcp_service/dataset/tool/get_dataset_info.py   |  20 +-
 superset/mcp_service/dataset/tool/list_datasets.py |  28 +-
 .../explore/tool/generate_explore_link.py          |  20 +-
 superset/mcp_service/middleware.py                 | 118 +++-
 superset/mcp_service/sql_lab/tool/execute_sql.py   |  44 +-
 .../sql_lab/tool/open_sql_lab_with_context.py      |   6 +-
 .../mcp_service/system/tool/get_instance_info.py   |   4 +-
 superset/mcp_service/system/tool/get_schema.py     |   6 +-
 superset/mcp_service/system/tool/health_check.py   |   8 +-
 superset/security/api.py                           |  10 +-
 tests/integration_tests/security/api_tests.py      | 111 +++-
 tests/unit_tests/extensions/test_types.py          |  11 +-
 .../mcp_service/dataset/tool/test_dataset_tools.py |  46 ++
 .../mcp_service/test_middleware_logging.py         | 207 ++++++
 57 files changed, 1794 insertions(+), 1035 deletions(-)
 create mode 100644 
superset-frontend/packages/superset-core/src/utils/isBlank.test.ts
 copy superset-frontend/{src/dashboard/util/componentIsResizable.ts => 
packages/superset-core/src/utils/isBlank.ts} (74%)
 create mode 100644 tests/unit_tests/mcp_service/test_middleware_logging.py

Reply via email to