This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/docs/typescript-eslint/parser-8.53.1
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 90e265451e chore(deps-dev): bump @typescript-eslint/parser in /docs
add 2d20079a88 fix(mcp): Remove screenshot URL functionality from MCP
chart tools (#37228)
add 6e1718910f fix(sqllab): show virtual dataset banner only when
isDataset param is true (#37184)
add fe16c828cf feat(mcp): Add support for AG Grid Interactive Table
(ag-grid-table) viz_type (#37191)
add 2187fb4ab4 fix(transpile_query): Fix export_as_csv error:
"transpile_to_dialect": ['Unknown field.'] (#37249)
add 50d0508a92 feat(mcp): Add Redis EventStore support for multi-pod
deployments (#37216)
add e1fa374517 feat(mcp): add time_grain parameter to XY chart generation
(#37182)
add 3fba967856 fix(delete-filter): deleted native filters are still shown
until [sc-96553] (#37012)
add 25647942fd fix(chart): Horizontal bar chart value labels cut off
(#36989)
add d0e80d2079 refactor: Redesigns the Results panel toolbar and enables
extensions to contribute toolbar actions (#37255)
add 2267b78a10 chore(deps): bump antd from 6.2.0 to 6.2.1 in /docs (#37301)
add 445bc403b8 chore(deps): bump diff in /superset-frontend (#37292)
add 807ff513ef chore(deps): bump fs-extra from 11.3.2 to 11.3.3 in
/superset-frontend (#37274)
add 281c0c9672 chore: add paths to backend extension stack traces (#37300)
add 238bebebec fix(extensions): prevent duplicate initialization of
LOCAL_EXTENSIONS watcher (#37250)
add 801c84f0ef chore(deps-dev): bump typescript-eslint from 8.53.0 to
8.53.1 in /superset-websocket (#37268)
add 3fa7dba094 chore(deps): bump diff from 5.2.0 to 5.2.2 in /docs (#37291)
add 73e88b31db chore(deps-dev): bump @typescript-eslint/parser in /docs
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 (90e265451e)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/docs/typescript-eslint/parser-8.53.1
(73e88b31db)
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:
docs/package.json | 2 +-
docs/yarn.lock | 46 +--
superset-frontend/package-lock.json | 14 +-
.../src/Timeseries/transformProps.ts | 43 ++
.../plugins/plugin-chart-echarts/src/constants.ts | 2 +
.../test/Timeseries/helpers.ts | 122 ++++++
.../test/Timeseries/transformProps.test.ts | 441 ++++++++++++++-------
.../ExploreResultsButton.test.tsx | 8 +-
.../components/ExploreResultsButton/index.tsx | 12 +-
.../src/SqlLab/components/QueryHistory/index.tsx | 3 +
.../src/SqlLab/components/ResultSet/index.tsx | 362 ++++++++---------
.../src/SqlLab/components/SaveQuery/index.tsx | 1 +
.../src/SqlLab/components/SouthPane/Results.tsx | 2 +-
.../src/SqlLab/components/SouthPane/index.tsx | 18 +-
.../src/SqlLab/components/SqlEditor/index.tsx | 26 +-
.../SqlEditorTopBar/SqlEditorTopBar.test.tsx | 62 +--
.../SqlLab/components/SqlEditorTopBar/index.tsx | 29 +-
superset-frontend/src/SqlLab/contributions.ts | 2 +
.../MenuListExtension/MenuListExtension.test.tsx | 374 -----------------
.../src/components/MenuListExtension/index.tsx | 157 --------
.../src/components/PanelToolbar/index.tsx | 165 ++++++++
.../src/dashboard/actions/nativeFilters.ts | 7 +-
.../src/dashboard/reducers/nativeFilters.test.ts | 180 ++++++++-
.../src/dashboard/reducers/nativeFilters.ts | 15 +-
.../src/pages/SqlLab/LocationContext.tsx | 3 +-
superset-websocket/package-lock.json | 244 ++++++------
superset-websocket/package.json | 2 +-
superset/charts/schemas.py | 7 +
superset/extensions/discovery.py | 22 +-
superset/extensions/local_extensions_watcher.py | 12 +
superset/extensions/types.py | 3 +
superset/extensions/utils.py | 55 ++-
superset/initialization/__init__.py | 5 +-
superset/mcp_service/auth.py | 32 +-
superset/mcp_service/chart/chart_utils.py | 20 +-
superset/mcp_service/chart/schemas.py | 28 +-
superset/mcp_service/chart/tool/generate_chart.py | 25 +-
.../mcp_service/chart/tool/get_chart_preview.py | 60 +--
superset/mcp_service/chart/tool/update_chart.py | 7 +-
.../mcp_service/chart/tool/update_chart_preview.py | 30 +-
superset/mcp_service/mcp_config.py | 12 +-
superset/mcp_service/server.py | 99 ++++-
superset/mcp_service/storage.py | 71 +++-
superset/mcp_service/utils/url_utils.py | 28 --
.../mcp_service/chart/test_chart_schemas.py | 53 +++
.../mcp_service/chart/test_chart_utils.py | 128 ++++++
tests/unit_tests/mcp_service/test_mcp_server.py | 126 ++++++
tests/unit_tests/mcp_service/test_mcp_storage.py | 194 ++++++++-
48 files changed, 2061 insertions(+), 1298 deletions(-)
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/test/Timeseries/helpers.ts
delete mode 100644
superset-frontend/src/components/MenuListExtension/MenuListExtension.test.tsx
delete mode 100644 superset-frontend/src/components/MenuListExtension/index.tsx
create mode 100644 superset-frontend/src/components/PanelToolbar/index.tsx
create mode 100644 tests/unit_tests/mcp_service/test_mcp_server.py