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 984c3251710 chore: fix spacing in AGENTS.md
add 27a4575f3e2 refactor: Move frontend related artifacts into frontend
gitignore (#37496)
add 20da4eb86ec fix(sqllab): Over-rendering on result table (#30857)
add 2ec3aaaeea6 feat(dashboard): show dataset column labels in View as
table (#37140)
add f787aec5673 docs: add Netlify to CI services footer and improve layout
(#37451)
add b223f10ab51 chore(deps-dev): bump @typescript-eslint/eslint-plugin
from 8.53.1 to 8.54.0 in /superset-websocket (#37468)
add 3bcd3b1683c chore(deps-dev): bump typescript-eslint from 8.53.1 to
8.54.0 in /superset-websocket (#37466)
add e6d0f97aaba fix(mcp): always filter list responses by
columns_requested (#37505)
add 6663709a23a fix(mcp): tools not listed when JWT auth is enabled
(#37377)
add 3347b9bf6cf fix(table): only show increase/decrease color options when
time comparison enabled (#37362)
add da56bddadad chore(deps-dev): bump globals from 17.1.0 to 17.2.0 in
/docs (#37509)
add 43653d1fa1b fix(dashboard): resolve dropdown popup positioning (#36963)
add ec2509a8b48 fix(dashboard-filters): prevent clearing all filters when
editing a native filter (#37253)
add abf90de0cad fix(select): prevent bulk action buttons from being cut
off in filters (#37453)
add cfeb7ccd318 chore(deps-dev): bump globals from 17.1.0 to 17.2.0 in
/superset-websocket (#37508)
add 912538d176f docs: Updating quickstart for 6.0.0 (#37446)
add d4b89de0017 chore(deps-dev): bump oxlint from 1.41.0 to 1.42.0 in
/superset-frontend (#37512)
add 073c3c72b42 docs: add HPE logo to In the Wild listing (#37506)
add ad0186093f1 docs: add interactive API reference using
docusaurus-openapi-docs (#37434)
add 6776cbf0022 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 (984c3251710)
\
N -- N -- N refs/heads/showtime-master (6776cbf0022)
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:
.gitignore | 4 -
.rat-excludes | 1 +
RESOURCES/INTHEWILD.yaml | 2 +
docs/.gitignore | 4 +
docs/docs/api.mdx | 602 +-
docs/docs/quickstart.mdx | 2 +-
docs/docusaurus.config.ts | 36 +-
docs/i18n/en/docusaurus-theme-classic/footer.json | 2 +-
docs/package.json | 14 +-
docs/scripts/convert-api-sidebar.mjs | 123 +
docs/scripts/fix-openapi-spec.py | 828 +++
docs/scripts/generate-api-index.mjs | 277 +
docs/scripts/generate-api-tag-pages.mjs | 176 +
docs/sidebarTutorials.js | 5 +
docs/sidebars.js | 18 +-
docs/src/styles/custom.css | 77 +
docs/src/styles/main.less | 46 +-
docs/static/img/logos/hpe.png | Bin 0 -> 5212 bytes
docs/static/img/netlify.png | Bin 0 -> 4618 bytes
docs/static/resources/openapi.json | 7414 +++++++++++++++++++-
docs/versioned_docs/version-6.0.0/quickstart.mdx | 2 +-
docs/yarn.lock | 1060 ++-
superset-frontend/.gitignore | 4 +
superset-frontend/package-lock.json | 74 +-
superset-frontend/package.json | 2 +-
.../src/components/Select/Select.test.tsx | 2 +-
.../src/components/Select/Select.tsx | 5 +-
.../src/components/Select/constants.ts | 8 +-
.../src/components/Select/styles.tsx | 1 +
.../src/components/Select/types.ts | 1 +
.../src/controlPanel.tsx | 33 +-
.../test/controlPanel.test.tsx | 208 +
.../plugin-chart-table/src/controlPanel.tsx | 35 +-
.../plugin-chart-table/test/controlPanel.test.tsx | 208 +
.../src/SqlLab/components/ResultSet/index.tsx | 15 +-
.../src/components/FilterableTable/index.tsx | 3 +-
.../components/SliceHeaderControls/index.tsx | 1 +
superset-frontend/src/dataMask/reducer.test.ts | 118 +
superset-frontend/src/dataMask/reducer.ts | 20 +-
.../explore/components/DataTableControl/index.tsx | 12 +-
.../DataTableControl/useTableColumns.test.ts | 28 +
.../components/ResultsPaneOnDashboard.tsx | 2 +
.../components/SingleQueryResultPane.tsx | 2 +
.../DataTablesPane/components/useResultsPane.tsx | 2 +
.../src/explore/components/DataTablesPane/types.ts | 4 +
superset-websocket/package-lock.json | 493 +-
superset-websocket/package.json | 6 +-
superset/mcp_service/app.py | 69 +-
superset/mcp_service/chart/tool/list_charts.py | 23 +-
.../mcp_service/dashboard/tool/list_dashboards.py | 21 +-
superset/mcp_service/dataset/tool/list_datasets.py | 23 +-
superset/mcp_service/mcp_config.py | 10 +-
.../mcp_service/dataset/tool/test_dataset_tools.py | 53 +
tests/unit_tests/mcp_service/test_mcp_config.py | 85 +-
54 files changed, 11515 insertions(+), 749 deletions(-)
create mode 100644 docs/scripts/convert-api-sidebar.mjs
create mode 100644 docs/scripts/fix-openapi-spec.py
create mode 100644 docs/scripts/generate-api-index.mjs
create mode 100644 docs/scripts/generate-api-tag-pages.mjs
create mode 100644 docs/static/img/logos/hpe.png
create mode 100644 docs/static/img/netlify.png
create mode 100644
superset-frontend/plugins/plugin-chart-ag-grid-table/test/controlPanel.test.tsx
create mode 100644
superset-frontend/plugins/plugin-chart-table/test/controlPanel.test.tsx
create mode 100644 superset-frontend/src/dataMask/reducer.test.ts