This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a change to branch revamped-example-loading
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 2131e36d49 refactor(examples): Migrate from DuckDB to Parquet format
 discard 522248b080 refactor(examples): Replace energy.py custom loader with 
config-based loading
 discard 394f777f94 fix(examples): Restore energy.py loader with DuckDB support
 discard f83fcc90ad style: Apply ruff 0.9.7 formatting and fixes
 discard 8c11e0d8b3 style: Fix pytest decorator parentheses (PT001/PT023)
 discard cea64b8463 style: Apply ruff formatting to all Python files
 discard a45d7c379f fix(examples): Preserve remote URLs in 
normalize_example_data_url
 discard 4b1d48675a style: Remove empty parentheses from pytest decorators
 discard cc6945df6e fix(examples): Map energy.duckdb to energy_usage table name
 discard fa53cc18ad chore: Add noqa comments for PT004 fixture naming warnings
 discard 90696a895a fix(examples): Add None check for SqlaTable obj before 
creating slices
 discard 8fee8913b7 fix: Use explicit None check for sample_rows parameter
 discard bc04b5a020 chore: Add Claude Code hook to run pre-commit before commits
 discard 1be164422a perf(tests): Optimize fixture loading to prevent CI timeouts
 discard a1b9b257db fix: Update test fixtures to use DuckDB-based example data
 discard cf37c3489e fix: Skip test fixtures when old example modules are missing
 discard e1a53400b3 fix: Remove unused dashboard_slices import from dashboard 
importer
 discard d5296a63d8 test: Skip birth_names tests conflicting with DuckDB 
example format
 discard f0011aacab fix: Address CodeAnt AI security and performance suggestions
 discard ff409e4397 fix: Add Apache license headers to new README and metadata 
files
 discard dc6acf1202 fix: Add Apache license headers to YAML config files and 
fix lambda binding
 discard 72c732043a fix(examples): Fix example data loading issues and chart 
configurations
 discard 6f10ee9c10 chore: exclude DuckDB example files from large file check
 discard 81b154fa81 feat(examples): add DuckDB data files
 discard d03ed57b0f feat(examples): migrate example datasets to DuckDB and 
simplify loading
     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 e392ba206f feat(examples): migrate example datasets to DuckDB and 
simplify loading
     add 40e95fe28b feat(examples): add DuckDB data files
     add b3b82965f5 chore: exclude DuckDB example files from large file check
     add 98c10b1848 fix(examples): Fix example data loading issues and chart 
configurations
     add 5bf4cc58f7 fix: Add Apache license headers to YAML config files and 
fix lambda binding
     add adaf6608c6 fix: Add Apache license headers to new README and metadata 
files
     add 6048cf9088 fix: Address CodeAnt AI security and performance suggestions
     add 2aebf9af9e test: Skip birth_names tests conflicting with DuckDB 
example format
     add fd81a49a3a fix: Remove unused dashboard_slices import from dashboard 
importer
     add 91d88593e9 fix: Skip test fixtures when old example modules are missing
     add 29442f252b fix: Update test fixtures to use DuckDB-based example data
     add 8e48efdbd1 perf(tests): Optimize fixture loading to prevent CI timeouts
     add 71b20a726d chore: Add Claude Code hook to run pre-commit before commits
     add 4c067c361b fix: Use explicit None check for sample_rows parameter
     add a9c3846ceb fix(examples): Add None check for SqlaTable obj before 
creating slices
     add b27e892a0c chore: Add noqa comments for PT004 fixture naming warnings
     add f6e5f52bbe fix(examples): Map energy.duckdb to energy_usage table name
     add e2a6c2ed7f style: Remove empty parentheses from pytest decorators
     add 296cc97f75 fix(examples): Preserve remote URLs in 
normalize_example_data_url
     add 9361b4e597 style: Apply ruff formatting to all Python files
     add 598fb425c0 style: Fix pytest decorator parentheses (PT001/PT023)
     add aa083ee00b style: Apply ruff 0.9.7 formatting and fixes
     add bef326c199 fix(examples): Restore energy.py loader with DuckDB support
     add bb03de03fe refactor(examples): Replace energy.py custom loader with 
config-based loading
     add cd9cf76cf9 refactor(examples): Migrate from DuckDB to Parquet format

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   (2131e36d49)
            \
             N -- N -- N   refs/heads/revamped-example-loading (cd9cf76cf9)

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 +
 .../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 +-
 ...8d8526_fix_form_data_string_in_query_context.py | 108 +++++++++
 .../charts/commands/importers/v1/utils_test.py     |  41 ++++
 34 files changed, 2410 insertions(+), 118 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-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