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/typescript-eslint/eslint-plugin-8.56.1
in repository https://gitbox.apache.org/repos/asf/superset.git
discard dd78573ec4 chore(deps-dev): bump @typescript-eslint/eslint-plugin
add 35d0aad854 feat(explore): Add Echarts option editor (#37868)
add 69732d9dca fix(superset-ui-core): achieve 100% coverage for npm run
core:cover (#38397)
add 832fee3ff8 refactor(mcp): move superset_core MCP module from mcp to
api/mcp (#38394)
add 19f949276c refactor(config): SIGNAL_CACHE_CONFIG →
DISTRIBUTED_COORDINATION_CONFIG (#38395)
add aff6e26089 build(deps): replace monolithic `googleapis` with
lightweight `@googleapis/sheet` sub-package (#38124)
add 3d5694ee0f chore: regular `npm audit fix` (#38248)
add d539afe329 chore(deps-dev): bump @typescript-eslint/eslint-plugin
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 (dd78573ec4)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/typescript-eslint/eslint-plugin-8.56.1
(d539afe329)
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 | 8 +-
docs/admin_docs/configuration/cache.mdx | 16 +-
docs/developer_docs/extensions/mcp.md | 6 +-
docs/developer_docs/extensions/tasks.md | 4 +-
.../superset_core/{mcp/__init__.py => api/mcp.py} | 2 +-
superset-frontend/package-lock.json | 1053 +++++++-------------
superset-frontend/package.json | 5 +-
.../packages/superset-core/src/api/editors.ts | 10 +-
.../src/shared-controls/sharedControls.tsx | 15 +
.../superset-ui-chart-controls/src/types.ts | 1 +
.../src/utils/metricColumnFilter.test.ts | 8 +
.../test/utils/getColorFormatters.test.ts | 41 +
.../Matrixify/MatrixifyGridGenerator.test.ts | 120 +++
.../components/Matrixify/MatrixifyGridGenerator.ts | 8 +-
.../types/matrixify.mocks.test.ts} | 12 +-
.../src/chart/types/matrixify.test.ts | 82 ++
.../superset-ui-core/src/chart/types/matrixify.ts | 36 +-
.../src/components/AsyncAceEditor/index.tsx | 6 +
.../AsyncAceEditor/useJsonValidation.test.ts | 25 +
.../src/components/List/List.test.tsx | 10 +
.../src/components/Select/constants.test.ts | 49 +
.../Table/utils/InteractiveTableUtils.test.ts | 574 +++++++++++
.../superset-ui-core/src/components/index.ts | 1 +
.../src/types/react-syntax-highlighter.d.ts | 7 -
.../src/utils/rankedSearchCompare.test.ts | 20 +
.../index.ts => utils/withLabel.test.ts} | 24 +-
.../test/connection/SupersetClient.test.ts | 6 +
.../test/connection/SupersetClientClass.test.ts | 33 +
.../test/currency-format/CurrencyFormatter.test.ts | 78 ++
.../test/currency-format/utils.test.ts | 193 ++++
.../test/query/types/Column.test.ts | 14 +
.../test/query/types/Dashboard.test.ts | 33 +
.../plugins/plugin-chart-echarts/package.json | 4 +-
.../src/MixedTimeseries/controlPanel.tsx | 1 +
.../src/MixedTimeseries/transformProps.ts | 20 +-
.../src/Timeseries/Area/controlPanel.tsx | 1 +
.../src/Timeseries/Regular/Bar/controlPanel.tsx | 1 +
.../src/Timeseries/Regular/Line/controlPanel.tsx | 1 +
.../Timeseries/Regular/SmoothLine/controlPanel.tsx | 1 +
.../src/Timeseries/transformProps.ts | 21 +-
.../plugins/plugin-chart-echarts/src/index.ts | 3 +
.../src/utils/eChartOptionsSchema.ts | 827 +++++++++++++++
.../src/utils/mergeCustomEChartOptions.test.ts | 163 +++
.../src/utils/mergeCustomEChartOptions.ts | 79 ++
.../src/utils/safeEChartOptionsParser.test.ts | 525 ++++++++++
.../src/utils/safeEChartOptionsParser.ts | 477 +++++++++
.../scripts/eslint-metrics-uploader.js | 144 ---
.../scripts/oxlint-metrics-uploader.js | 7 +-
.../src/core/editors/AceEditorProvider.tsx | 3 +
.../components/controls/JSEditorControl.test.tsx | 125 +++
.../components/controls/JSEditorControl.tsx | 105 ++
.../src/explore/components/controls/index.ts | 2 +
superset/commands/distributed_lock/acquire.py | 2 +-
superset/commands/distributed_lock/base.py | 6 +-
superset/commands/distributed_lock/release.py | 2 +-
superset/config.py | 20 +-
superset/core/mcp/core_mcp_injection.py | 8 +-
superset/distributed_lock/__init__.py | 2 +-
superset/mcp_service/CLAUDE.md | 16 +-
superset/mcp_service/app.py | 2 +-
.../chart/prompts/create_chart_guided.py | 2 +-
superset/mcp_service/chart/tool/generate_chart.py | 2 +-
superset/mcp_service/chart/tool/get_chart_data.py | 2 +-
superset/mcp_service/chart/tool/get_chart_info.py | 2 +-
.../mcp_service/chart/tool/get_chart_preview.py | 2 +-
superset/mcp_service/chart/tool/list_charts.py | 2 +-
superset/mcp_service/chart/tool/update_chart.py | 2 +-
.../mcp_service/chart/tool/update_chart_preview.py | 2 +-
.../tool/add_chart_to_existing_dashboard.py | 2 +-
.../dashboard/tool/generate_dashboard.py | 2 +-
.../dashboard/tool/get_dashboard_info.py | 2 +-
.../mcp_service/dashboard/tool/list_dashboards.py | 2 +-
.../mcp_service/dataset/tool/get_dataset_info.py | 2 +-
superset/mcp_service/dataset/tool/list_datasets.py | 2 +-
.../explore/tool/generate_explore_link.py | 2 +-
superset/mcp_service/sql_lab/tool/execute_sql.py | 2 +-
.../sql_lab/tool/open_sql_lab_with_context.py | 2 +-
superset/mcp_service/system/prompts/quickstart.py | 2 +-
.../mcp_service/system/tool/get_instance_info.py | 2 +-
superset/mcp_service/system/tool/get_schema.py | 2 +-
superset/mcp_service/system/tool/health_check.py | 2 +-
superset/tasks/locks.py | 4 +-
superset/tasks/manager.py | 8 +-
superset/utils/cache_manager.py | 34 +-
.../integration_tests/tasks/test_sync_join_wait.py | 4 +-
tests/unit_tests/tasks/test_handlers.py | 4 +-
tests/unit_tests/tasks/test_manager.py | 34 +-
tests/unit_tests/tasks/test_timeout.py | 32 +-
88 files changed, 4212 insertions(+), 1018 deletions(-)
rename superset-core/src/superset_core/{mcp/__init__.py => api/mcp.py} (99%)
copy
superset-frontend/packages/superset-ui-core/src/{components/EmptyState/Empty.test.tsx
=> chart/types/matrixify.mocks.test.ts} (72%)
create mode 100644
superset-frontend/packages/superset-ui-core/src/components/Select/constants.test.ts
create mode 100644
superset-frontend/packages/superset-ui-core/src/components/Table/utils/InteractiveTableUtils.test.ts
copy
superset-frontend/packages/superset-ui-core/src/{color/colorSchemes/index.ts =>
utils/withLabel.test.ts} (53%)
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/src/utils/eChartOptionsSchema.ts
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/src/utils/mergeCustomEChartOptions.test.ts
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/src/utils/mergeCustomEChartOptions.ts
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/src/utils/safeEChartOptionsParser.test.ts
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/src/utils/safeEChartOptionsParser.ts
delete mode 100644 superset-frontend/scripts/eslint-metrics-uploader.js
create mode 100644
superset-frontend/src/explore/components/controls/JSEditorControl.test.tsx
create mode 100644
superset-frontend/src/explore/components/controls/JSEditorControl.tsx