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


    omit b6413ca1320 chore: fix spacing in AGENTS.md
     add 0d5ddb36749 feat(themes): add enhanced validation and error handling 
with fallback mechanisms (#37378)
     add 6328e516206 test(examples): add tests for UUID threading and security 
bypass (#37557)
     add 142b2cc4254 test(e2e): add Playwright E2E tests for Chart List page 
(#37866)
     add 080f629ea21 fix(echarts): formula annotations not rendering with 
dataset-level columns label (#37522)
     add 0c0d915391d fix(echarts-timeseries-combined-labels): combine 
annotation labels for events at same timestamp (#37164)
     add e3e2bece6bc feat(owners): display email in owner selectors (#37906)
     add ffd7f103207 chore(deps): bump markdown-to-jsx from 9.7.3 to 9.7.4 in 
/superset-frontend (#37959)
     add 75d6a95ac39 chore(deps): bump aquasecurity/trivy-action from 0.33.1 to 
0.34.0 (#37958)
     add 79f51e2ae7d chore(deps-dev): bump webpack from 5.105.1 to 5.105.2 in 
/docs (#37953)
     add 475615e1186 chore(deps): bump ioredis from 5.9.2 to 5.9.3 in 
/superset-websocket (#37951)
     add a50d1f384d0 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   (b6413ca1320)
            \
             N -- N -- N   refs/heads/showtime-master (a50d1f384d0)

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/docker.yml                       |   2 +-
 docs/package.json                                  |   2 +-
 docs/yarn.lock                                     |   8 +-
 superset-frontend/package-lock.json                |   8 +-
 superset-frontend/package.json                     |   2 +-
 .../components/modals/ChartPropertiesModal.ts}     |  59 +-
 .../playwright/helpers/api/assertions.ts           |  58 ++
 superset-frontend/playwright/helpers/api/chart.ts  | 104 +++
 .../playwright/helpers/fixtures/testAssets.ts      |  57 +-
 .../playwright/pages/ChartListPage.ts              | 132 ++++
 .../tests/experimental/chart/chart-list.spec.ts    | 307 +++++++++
 .../tests/experimental/chart/chart-test-helpers.ts |  88 +++
 .../experimental/dataset/dataset-list.spec.ts      |  51 +-
 .../src/MixedTimeseries/transformProps.ts          |   2 +-
 .../src/Timeseries/transformProps.ts               |   3 +-
 .../src/Timeseries/transformers.ts                 | 247 ++++---
 .../test/MixedTimeseries/transformProps.test.ts    | 273 +++++---
 .../test/Timeseries/transformProps.test.ts         | 710 ++++++++++++---------
 .../plugins/plugin-chart-echarts/test/helpers.ts   | 110 ++++
 .../test/utils/transformers.test.ts                | 249 +++++---
 .../DatasourceEditor/DatasourceEditor.tsx          |  38 +-
 .../src/components/ListView/Filters/Select.tsx     |  13 +-
 .../src/components/ListView/Filters/index.tsx      |   2 +
 superset-frontend/src/components/ListView/types.ts |   8 +-
 .../PropertiesModal/hooks/useAccessOptions.ts      |  32 +-
 .../dashboard/components/PropertiesModal/index.tsx |  17 +-
 .../PropertiesModal/sections/AccessSection.tsx     |  22 +-
 .../explore/components/PropertiesModal/index.tsx   |  50 +-
 .../src/features/alerts/AlertReportModal.tsx       |  46 +-
 superset-frontend/src/features/alerts/types.ts     |   4 +-
 .../OwnerSelectLabel/OwnerSelectLabel.test.tsx}    |  33 +-
 .../owners/OwnerSelectLabel/index.tsx}             |  71 +--
 .../src/features/themes/ThemeModal.test.tsx        | 174 ++++-
 .../src/features/themes/ThemeModal.tsx             |  65 +-
 .../src/pages/AlertReportList/index.tsx            |  11 +-
 superset-frontend/src/pages/ChartList/index.tsx    |   6 +-
 .../src/pages/DashboardList/index.tsx              |   6 +-
 superset-frontend/src/pages/DatasetList/index.tsx  |   6 +-
 superset-frontend/src/theme/ThemeController.ts     | 147 ++++-
 .../src/theme/hooks/useThemeValidation.test.ts     | 133 ++++
 .../src/theme/hooks/useThemeValidation.ts          | 155 +++++
 .../src/theme/tests/ThemeController.test.ts        | 196 ++++++
 .../src/theme/utils/antdTokenNames.test.ts         | 108 ++++
 .../src/theme/utils/antdTokenNames.ts              | 115 ++++
 .../theme/utils/themeStructureValidation.test.ts   | 346 ++++++++++
 .../src/theme/utils/themeStructureValidation.ts    | 191 ++++++
 superset-frontend/src/types/Owner.ts               |   1 +
 superset-frontend/src/views/CRUD/utils.tsx         |  83 ++-
 superset-websocket/package-lock.json               |  14 +-
 superset-websocket/package.json                    |   2 +-
 superset/charts/api.py                             |   1 +
 superset/charts/schemas.py                         |   1 +
 superset/dashboards/api.py                         |   1 +
 superset/datasets/schemas.py                       |   1 +
 superset/reports/api.py                            |   7 +
 tests/integration_tests/charts/api_tests.py        |   1 +
 tests/integration_tests/reports/api_tests.py       |  20 +-
 .../commands/importers/v1/examples_test.py         | 133 +++-
 .../databases/commands/importers/v1/import_test.py |  33 +
 .../api => tests/unit_tests/examples}/__init__.py  |   0
 tests/unit_tests/examples/data_loading_test.py     | 204 ++++++
 tests/unit_tests/examples/generic_loader_test.py   | 233 +++++++
 tests/unit_tests/examples/utils_test.py            | 206 ++++++
 63 files changed, 4567 insertions(+), 841 deletions(-)
 copy superset-frontend/{src/features/rls/types.ts => 
playwright/components/modals/ChartPropertiesModal.ts} (50%)
 create mode 100644 superset-frontend/playwright/helpers/api/chart.ts
 create mode 100644 superset-frontend/playwright/pages/ChartListPage.ts
 create mode 100644 
superset-frontend/playwright/tests/experimental/chart/chart-list.spec.ts
 create mode 100644 
superset-frontend/playwright/tests/experimental/chart/chart-test-helpers.ts
 create mode 100644 
superset-frontend/plugins/plugin-chart-echarts/test/helpers.ts
 copy superset-frontend/src/{components/ErrorMessage/IssueCode.test.tsx => 
features/owners/OwnerSelectLabel/OwnerSelectLabel.test.tsx} (54%)
 copy superset-frontend/src/{explore/components/optionRenderers.tsx => 
features/owners/OwnerSelectLabel/index.tsx} (50%)
 create mode 100644 superset-frontend/src/theme/hooks/useThemeValidation.test.ts
 create mode 100644 superset-frontend/src/theme/hooks/useThemeValidation.ts
 create mode 100644 superset-frontend/src/theme/utils/antdTokenNames.test.ts
 create mode 100644 superset-frontend/src/theme/utils/antdTokenNames.ts
 create mode 100644 
superset-frontend/src/theme/utils/themeStructureValidation.test.ts
 create mode 100644 
superset-frontend/src/theme/utils/themeStructureValidation.ts
 copy {superset-core/src/superset_core/api => 
tests/unit_tests/examples}/__init__.py (100%)
 create mode 100644 tests/unit_tests/examples/data_loading_test.py
 create mode 100644 tests/unit_tests/examples/generic_loader_test.py
 create mode 100644 tests/unit_tests/examples/utils_test.py

Reply via email to