This is an automated email from the ASF dual-hosted git repository.
jli pushed a change to branch showtime-master
in repository https://gitbox.apache.org/repos/asf/superset.git
discard b17d8ac61a8 chore: fix spacing in AGENTS.md
add 81fdc2bd0e9 feat(dates): adding handling for first of (#37098)
add c867d9379f6 chore(deps-dev): bump ts-loader from 9.5.2 to 9.5.4 in
/superset-frontend (#36999)
add 96a3f2a187b chore(deps-dev): bump @babel/preset-react from 7.27.1 to
7.28.5 in /superset-frontend (#37047)
add 68e917c3f68 chore(deps-dev): bump eslint-plugin-testing-library from
7.14.0 to 7.15.4 in /superset-frontend (#37052)
add db61e4f62af chore(deps-dev): bump
eslint-plugin-react-you-might-not-need-an-effect from 0.8.3 to 0.8.5 in
/superset-frontend (#37054)
add 7f6cdc5616d chore(deps-dev): bump prettier from 3.7.4 to 3.8.0 in
/superset-websocket (#37149)
add 4c267b7ee27 chore(deps-dev): bump prettier from 3.7.4 to 3.8.0 in
/docs (#37152)
add f69cd43bd05 chore(deps-dev): bump eslint-plugin-prettier from 5.5.4 to
5.5.5 in /docs (#37153)
add c6ad0dbd3ac chore(deps-dev): bump prettier from 3.7.4 to 3.8.0 in
/superset-frontend (#37156)
add 89380638b0e chore(deps): bump immer from 11.0.1 to 11.1.3 in
/superset-frontend (#37159)
add 82d74d15ecd chore(deps): bump react-intersection-observer from 9.16.0
to 10.0.0 in /superset-frontend (#37162)
add 129b8e10a21 chore(deps-dev): bump @babel/core from 7.28.3 to 7.28.6 in
/superset-frontend (#37154)
add e071e0c5a4a chore(deps-dev): bump eslint-plugin-prettier from 5.5.4 to
5.5.5 in /superset-frontend (#37160)
add b142f1956f0 chore(deps): bump chrono-node from 2.7.8 to 2.9.0 in
/superset-frontend (#36632)
add 95c14b1fc17 chore(Matrixify): disable matrixify for incompatible viz
types (#37163)
add 9555798d37d fix(data-zoom): Data-zoom not rendered properly in
Matrixify (#37134)
add ab8df1ab345 fix: Move head_custom_extra above csrf token input (#37173)
add 54f19856de1 fix: HTML detection in tables (#37171)
add c30edaf075c feat: add tab select with save chart to dashboard (#36332)
add 4532ccf638d fix(mcp): push Flask app context in mcp_auth_hook for tool
execution (#37190)
add d0783da3e55 fix(mcp): Handle big_number charts and make semantic
warnings non-blocking (#37142)
add 2bcb66c2fc0 refactor(mcp): simplify single metric chart type check
(#37215)
add 709d9ab1f45 chore: fix spacing in AGENTS.md
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 (b17d8ac61a8)
\
N -- N -- N refs/heads/showtime-master (709d9ab1f45)
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 | 4 +-
docs/yarn.lock | 36 +-
superset-frontend/package-lock.json | 381 ++++++++++++--------
superset-frontend/package.json | 20 +-
.../packages/superset-core/package.json | 4 +-
.../src/chart/components/StatefulChart.test.tsx | 248 +++++++++++++
.../src/chart/components/StatefulChart.tsx | 26 +-
.../superset-ui-core/src/utils/html.test.tsx | 18 +
.../packages/superset-ui-core/src/utils/html.tsx | 129 +++----
.../packages/superset-ui-demo/package.json | 6 +-
superset-frontend/src/dashboard/constants.ts | 3 +
.../components/ControlPanelsContainer.test.tsx | 109 ++++++
.../explore/components/ControlPanelsContainer.tsx | 14 +-
.../src/explore/components/SaveModal.test.jsx | 383 +++++++++++++++++++++
.../src/explore/components/SaveModal.tsx | 287 ++++++++++++++-
superset-frontend/src/explore/types.ts | 19 +
superset-websocket/package-lock.json | 14 +-
superset-websocket/package.json | 2 +-
superset/mcp_service/auth.py | 83 +++--
superset/mcp_service/chart/tool/get_chart_data.py | 21 +-
.../chart/validation/runtime/__init__.py | 22 +-
superset/templates/superset/spa.html | 7 +-
superset/utils/date_parser.py | 109 +++++-
.../mcp_service/chart/tool/test_get_chart_data.py | 130 ++++++-
.../mcp_service/chart/validation}/__init__.py | 0
.../chart/validation/test_runtime_validator.py | 221 ++++++++++++
tests/unit_tests/utils/date_parser_tests.py | 64 ++++
27 files changed, 2038 insertions(+), 322 deletions(-)
copy {superset-core/src/superset_core/api =>
tests/unit_tests/mcp_service/chart/validation}/__init__.py (100%)
create mode 100644
tests/unit_tests/mcp_service/chart/validation/test_runtime_validator.py