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/npm-11.7.0
in repository https://gitbox.apache.org/repos/asf/superset.git
discard a9297d1fc5 chore(deps-dev): bump npm from 11.5.2 to 11.7.0 in
/superset-frontend
add 821b259805 fix: Support datetime_format during import (#36679)
add d0361cb881 test(playwright): convert and create new dataset list
playwright tests (#36196)
add d14f502126 fix: store form_data as dict during viz type migration
(#36680)
add 6aaf2266a9 chore(deps-dev): add baseline-browser-mapping (#36645)
add 18250be049 chore(deps-dev): bump npm from 11.5.2 to 11.7.0 in
/superset-frontend
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 (a9297d1fc5)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/npm-11.7.0 (18250be049)
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/workflows/bashlib.sh | 13 ++
.github/workflows/superset-e2e.yml | 2 +-
.github/workflows/superset-playwright.yml | 2 +-
superset-frontend/.gitignore | 3 +
superset-frontend/package-lock.json | 7 +-
superset-frontend/package.json | 1 +
superset-frontend/playwright.config.ts | 31 ++-
.../playwright/components/core/Modal.ts | 118 ++++++++++
.../playwright/components/core/Table.ts | 102 +++++++++
.../playwright/components/core/Toast.ts | 105 +++++++++
.../playwright/components/core/index.ts | 2 +
.../components/modals/DeleteConfirmationModal.ts | 75 ++++++
.../components/modals/DuplicateDatasetModal.ts | 73 ++++++
.../components/modals}/index.ts | 6 +-
superset-frontend/playwright/global-setup.ts | 93 ++++++++
.../playwright/helpers/api/database.ts | 79 +++++++
.../playwright/helpers/api/dataset.ts | 133 +++++++++++
.../playwright/helpers/api/requests.ts | 193 ++++++++++++++++
superset-frontend/playwright/pages/AuthPage.ts | 74 +++++-
.../playwright/pages/DatasetListPage.ts | 115 ++++++++++
superset-frontend/playwright/pages/ExplorePage.ts | 88 +++++++
.../playwright/tests/auth/login.spec.ts | 113 ++++-----
.../playwright/tests/experimental/README.md | 112 ++++++---
.../experimental/dataset/dataset-list.spec.ts | 254 +++++++++++++++++++++
.../utils/constants.ts} | 32 ++-
superset-frontend/playwright/utils/urls.ts | 11 +
superset/commands/chart/importers/v1/utils.py | 2 +-
superset/datasets/schemas.py | 1 +
...8d8526_fix_form_data_string_in_query_context.py | 108 +++++++++
.../charts/commands/importers/v1/utils_test.py | 41 ++++
.../datasets/commands/importers/v1/import_test.py | 95 ++++----
31 files changed, 1920 insertions(+), 164 deletions(-)
create mode 100644 superset-frontend/playwright/components/core/Modal.ts
create mode 100644 superset-frontend/playwright/components/core/Table.ts
create mode 100644 superset-frontend/playwright/components/core/Toast.ts
create mode 100644
superset-frontend/playwright/components/modals/DeleteConfirmationModal.ts
create mode 100644
superset-frontend/playwright/components/modals/DuplicateDatasetModal.ts
copy superset-frontend/{src/dashboard/components/AddSliceCard =>
playwright/components/modals}/index.ts (82%)
create mode 100644 superset-frontend/playwright/global-setup.ts
create mode 100644 superset-frontend/playwright/helpers/api/database.ts
create mode 100644 superset-frontend/playwright/helpers/api/dataset.ts
create mode 100644 superset-frontend/playwright/helpers/api/requests.ts
create mode 100644 superset-frontend/playwright/pages/DatasetListPage.ts
create mode 100644 superset-frontend/playwright/pages/ExplorePage.ts
create mode 100644
superset-frontend/playwright/tests/experimental/dataset/dataset-list.spec.ts
copy superset-frontend/{src/setup/setupCodeOverrides.ts =>
playwright/utils/constants.ts} (52%)
create mode 100644
superset/migrations/versions/2025-12-16_12-00_f5b5f88d8526_fix_form_data_string_in_query_context.py