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/babel/preset-typescript-7.28.5
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 711d87fa84 chore(deps-dev): bump @babel/preset-typescript 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 5e0ee40762 feat(chart): support icons and text in the `deck.gl 
Geojson` visualization (#36201)
     add 6b948ee894 docs(badges): Restore project badges on README - and 
re-implement the Docusaurus ones (#36495)
     add 42311f602e chore(deps-dev): bump npm from 11.5.2 to 11.7.0 in 
/superset-frontend (#36668)
     add 7108658de0 chore(deps-dev): bump @babel/runtime-corejs3 from 7.28.2 to 
7.28.4 in /superset-frontend (#36664)
     add 4ca8c000d1 chore(deps): update classnames requirement from ^2.2.5 to 
^2.5.1 in /superset-frontend/packages/superset-ui-core (#36660)
     add 5eeba2e734 chore(deps-dev): bump @typescript-eslint/parser from 8.49.0 
to 8.50.0 in /docs (#36656)
     add 8407e9cf3b chore(deps): bump antd from 6.1.0 to 6.1.1 in /docs (#36655)
     add 39f7c43bb4 chore(deps-dev): bump @babel/preset-typescript 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   (711d87fa84)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/superset-frontend/babel/preset-typescript-7.28.5
 (39f7c43bb4)

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 +-
 README.md                                          |    15 +
 docs/.gitignore                                    |     3 +
 docs/docusaurus.config.ts                          |     6 +-
 docs/package.json                                  |     7 +-
 docs/plugins/remark-localize-badges.mjs            |   224 +
 docs/yarn.lock                                     |   119 +-
 superset-frontend/.gitignore                       |     3 +
 superset-frontend/package-lock.json                | 47050 +++++++++----------
 superset-frontend/package.json                     |     3 +-
 .../packages/superset-core/package.json            |     2 +-
 .../packages/superset-ui-core/package.json         |     2 +-
 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 +
 .../src/layers/Geojson/Geojson.test.ts             |   121 +
 .../src/layers/Geojson/Geojson.tsx                 |   151 +-
 .../src/layers/Geojson/controlPanel.ts             |   265 +-
 .../src/utilities/Shared_DeckGL.tsx                |     2 +-
 .../src/utilities/controls.ts                      |     1 +
 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 +-
 44 files changed, 26284 insertions(+), 23763 deletions(-)
 create mode 100644 docs/plugins/remark-localize-badges.mjs
 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-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/Geojson.test.ts
 create mode 100644 
superset/migrations/versions/2025-12-16_12-00_f5b5f88d8526_fix_form_data_string_in_query_context.py

Reply via email to