This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/docs/caniuse-lite-1.0.30001774
in repository https://gitbox.apache.org/repos/asf/superset.git
omit 89cb7b0ee72 chore(deps): bump caniuse-lite in /docs
add 5eb35a47957 fix(reports): validate database field on PUT report
schedule (#38084)
add 1cd35bb1029 feat(mcp): dynamic feature availability via menus and
feature flags (#37964)
add 30849079318 feat(mcp): support unsaved state in Explore and Dashboard
tools (#37183)
add a1312a86e88 fix(mcp): normalize column names to fix time series filter
prompt issue (#37187)
add b543358d2f5 chore(deps-dev): bump @swc/core from 1.15.11 to 1.15.13 in
/superset-frontend (#38237)
add 1b605c4ddad chore(deps): bump fs-extra from 11.3.2 to 11.3.3 in
/superset-frontend (#38234)
add 79b2647481b chore(deps): bump @swc/core from 1.15.11 to 1.15.13 in
/docs (#38207)
add d382351ebe9 chore(deps): bump caniuse-lite 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 (89cb7b0ee72)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/docs/caniuse-lite-1.0.30001774 (d382351ebe9)
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 | 128 ++--
superset-frontend/package-lock.json | 90 +--
superset-frontend/package.json | 2 +-
superset/commands/report/exceptions.py | 12 +
superset/commands/report/update.py | 18 +-
superset/mcp_service/app.py | 4 +
superset/mcp_service/chart/schemas.py | 68 +-
superset/mcp_service/chart/tool/get_chart_data.py | 128 +++-
superset/mcp_service/chart/tool/get_chart_info.py | 67 +-
.../chart/validation/dataset_validator.py | 153 ++++-
superset/mcp_service/chart/validation/pipeline.py | 86 ++-
superset/mcp_service/dashboard/schemas.py | 43 +-
.../dashboard/tool/get_dashboard_info.py | 99 ++-
.../explore/tool/generate_explore_link.py | 15 +-
superset/mcp_service/system/schemas.py | 22 +
superset/mcp_service/system/system_utils.py | 29 +
.../mcp_service/system/tool/get_instance_info.py | 2 +
superset/reports/schemas.py | 2 +-
tests/integration_tests/reports/api_tests.py | 294 ++++++++-
.../unit_tests/commands/report}/__init__.py | 0
tests/unit_tests/commands/report/update_test.py | 254 ++++++++
.../validation/test_column_name_normalization.py | 681 +++++++++++++++++++++
.../explore/tool/test_generate_explore_link.py | 149 +++++
.../mcp_service/system/test_system_utils.py | 60 ++
.../system/tool/test_get_current_user.py | 2 +
tests/unit_tests/mcp_service/test_mcp_config.py | 9 +
27 files changed, 2278 insertions(+), 141 deletions(-)
copy {superset-core/src/superset_core/api =>
tests/unit_tests/commands/report}/__init__.py (100%)
create mode 100644 tests/unit_tests/commands/report/update_test.py
create mode 100644
tests/unit_tests/mcp_service/chart/validation/test_column_name_normalization.py
create mode 100644 tests/unit_tests/mcp_service/system/test_system_utils.py