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 6cbfd6cf215 chore: fix spacing in AGENTS.md
add 0ecc69d2f1c chore(deps): bump fastmcp from 2.14.0 to 2.14.3 (#37410)
add 2f81720603d chore(deps-dev): bump @swc/plugin-transform-imports from
10.0.0 to 12.4.0 in /superset-frontend (#37384)
add b09e60c1ec2 fix(deckgl-contour): prevent WebGL freeze by clamping and
auto-scaling cellSize (#37244)
add 19d5fa86fc5 chore(deps-dev): bump baseline-browser-mapping from 2.9.17
to 2.9.18 in /superset-frontend (#37426)
add 09b5af5945f chore(deps): bump markdown-to-jsx from 9.6.0 to 9.6.1 in
/superset-frontend (#37420)
add 04a9be04ab1 chore(deps-dev): bump @playwright/test from 1.57.0 to
1.58.0 in /superset-frontend (#37425)
add 470c593c3d8 chore(deps-dev): bump @types/node from 25.0.9 to 25.0.10
in /superset-frontend (#37418)
add ce84ab4ce26 chore(deps-dev): bump cheerio from 1.1.2 to 1.2.0 in
/superset-frontend (#37423)
add c7cec198272 chore(deps): bump ace-builds from 1.43.5 to 1.43.6 in
/superset-frontend (#37424)
add 8aebfe11059 fix: display correct icon for Multi Chart in quick
switcher (#37256)
add 95a465ad7c1 feat(sqllab): add getActivePanel API for panel visibility
tracking (#37448)
add f2fc5dec110 chore(deps): bump ag-grid-react from 34.3.1 to 35.0.1 in
/superset-frontend (#37419)
add 695e295333a chore(deps): bump ag-grid-community from 34.3.1 to 35.0.1
in /superset-frontend (#37386)
add 89b998d6b78 chore(deps): bump react-intersection-observer from 10.0.0
to 10.0.2 in /superset-frontend (#37338)
add 647f21c26ad chore(deps): bump hot-shots from 13.0.0 to 13.1.0 in
/superset-websocket (#37436)
add 0fd528c7afc feat(sqllab): Improved query status indicator bar (#36936)
add 4db6f9e04c0 chore(trino): Add progress_text for additional running
state info (#36909)
add 7f6796f7098 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 (6cbfd6cf215)
\
N -- N -- N refs/heads/showtime-master (7f6796f7098)
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:
.github/dependabot.yml | 4 +
pyproject.toml | 2 +-
requirements/base.txt | 1 +
requirements/development.txt | 21 +-
superset-frontend/package-lock.json | 130 ++++++-------
superset-frontend/package.json | 16 +-
.../packages/superset-core/src/api/sqlLab.ts | 14 ++
.../packages/superset-ui-core/package.json | 8 +-
.../src/components/Icons/index.tsx | 1 +
.../src/components/Timer/index.tsx | 4 +-
.../superset-ui-core/src/query/types/Query.ts | 1 +
.../src/layers/Contour/Contour.tsx | 15 +-
.../src/layers/Contour/getSafeCellSize.test.ts | 67 +++++++
.../src/layers/Contour/getSafeCellSize.ts | 73 +++++++
.../src/layers/Contour/index.ts | 2 +
superset-frontend/src/SqlLab/actions/sqlLab.ts | 2 +-
.../QueryStatusBar/QueryStatusBar.test.tsx | 161 ++++++++++++++++
.../src/SqlLab/components/QueryStatusBar/index.tsx | 214 +++++++++++++++++++++
.../SqlLab/components/ResultSet/ResultSet.test.tsx | 46 -----
.../src/SqlLab/components/ResultSet/index.tsx | 29 +--
.../src/SqlLab/components/SouthPane/Results.tsx | 51 ++---
.../assets/images/icons/multiple.svg} | Bin 1045 -> 1287 bytes
superset-frontend/src/core/sqlLab/index.ts | 6 +
.../controls/VizTypeControl/FastVizSwitcher.tsx | 6 +-
.../VizTypeControl/VizTypeControl.test.tsx | 29 +++
.../controls/VizTypeControl/constants.tsx | 6 +
superset-websocket/package-lock.json | 14 +-
superset-websocket/package.json | 2 +-
superset/db_engine_specs/trino.py | 12 ++
tests/integration_tests/security_tests.py | 3 +-
tests/unit_tests/db_engine_specs/test_trino.py | 171 ++++++++++++++++
31 files changed, 910 insertions(+), 201 deletions(-)
create mode 100644
superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/getSafeCellSize.test.ts
create mode 100644
superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/getSafeCellSize.ts
create mode 100644
superset-frontend/src/SqlLab/components/QueryStatusBar/QueryStatusBar.test.tsx
create mode 100644
superset-frontend/src/SqlLab/components/QueryStatusBar/index.tsx
copy
superset-frontend/{packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/type-icons/field_num.svg
=> src/assets/images/icons/multiple.svg} (62%)