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/packages/superset-ui-demo/storybook/addon-actions-9.0.8
in repository https://gitbox.apache.org/repos/asf/superset.git
discard fe7a3cf6b86 chore(deps): bump @storybook/addon-actions
add 6b7b23ed788 fix(timeseries): restore ECharts tooltip after closing
drill menu (#37284)
add 2dfc770b0f7 fix(native-filters): update TEMPORAL_RANGE filter subject
when Time Column filter is applied (#36985)
add 89a98ab9a42 fix(dataset-editor): include calculated columns in
currency code dropdown (#37621)
add 8fd34010776 fix(security): update jspdf to 4.0.0 to address
CVE-2025-68428 (#37553)
add 45f883c9cd2 chore(deps-dev): bump webpack from 5.104.1 to 5.105.0 in
/docs (#37656)
add b464979db14 chore(deps-dev): bump webpack from 5.104.1 to 5.105.0 in
/superset-frontend (#37658)
add f96e90b9794 fix(docker): remove accidental command substitutions when
building FE in dev mode (#37670)
add 92438322c0e feat(extensions): Enhances SQL Lab API (#37642)
add e10237fcc14 fix: Security vulnerability in Storybook (#37676)
add 8e86c4c0a5d chore(deps): bump @storybook/addon-actions
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 (fe7a3cf6b86)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/packages/superset-ui-demo/storybook/addon-actions-9.0.8
(8e86c4c0a5d)
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:
docker/docker-frontend.sh | 4 +-
docs/package.json | 20 +-
docs/yarn.lock | 91 ++--
superset-frontend/package-lock.json | 333 +++++++-------
superset-frontend/package.json | 24 +-
.../packages/superset-core/src/api/editors.ts | 345 ++++++++++----
.../packages/superset-core/src/api/sqlLab.ts | 342 ++++++++++++--
.../packages/superset-ui-demo/package.json | 14 +-
.../src/SqlLab/components/EditorWrapper/index.tsx | 13 +-
.../ChartContextMenu/ChartContextMenu.test.tsx | 152 ++++++
.../Chart/ChartContextMenu/ChartContextMenu.tsx | 3 +
.../DatasourceEditor/DatasourceEditor.jsx | 8 +-
.../tests/DatasourceEditorCurrency.test.tsx | 38 +-
superset-frontend/src/core/sqlLab/index.ts | 386 ++++++++++++++--
superset-frontend/src/core/sqlLab/models.ts | 49 +-
superset-frontend/src/core/utils.ts | 12 +-
superset/utils/core.py | 66 ++-
tests/integration_tests/explore/api_tests.py | 92 ++++
tests/unit_tests/utils/test_core.py | 508 +++++++++++++++++++++
19 files changed, 2035 insertions(+), 465 deletions(-)
create mode 100644
superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.test.tsx