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/eslint-10.0.2
in repository https://gitbox.apache.org/repos/asf/superset.git
omit fe9179f2fe chore(deps-dev): bump eslint from 8.57.1 to 10.0.2 in
/superset-frontend
add 3b656f9cc2 fix(dashboard): restore filterState prop for cross-filter
functionality (#38349)
add c25adbc395 test(DashboardList): migrate Cypress E2E tests to RTL
(#38368)
add e2ebc135e4 test(playwright): add dashboard list E2E tests (#38377)
add 27d54f8421 fix(build/backend): migrate to deps-free `pygeohash` with
pre-built wheels at runtime (#37524)
add 796c206ee7 fix(charts): apply resample before rolling window in
post-processing pipeline (#37987)
add 63e7ee70bf fix(echarts): adaptive formatting labels (#38017)
add 8c9efe5659 feat: support for import/export masked_encrypted_extra
(backend) (#38077)
add dc995328a8 chore(deps): bump cryptography from 44.0.3 to 46.0.5
(#37912)
add 8f28a8734a chore(deps): bump flask from 2.3.3 to 3.1.3 (#38168)
add 1bfd41df0c chore(deps): bump aquasecurity/trivy-action from 0.34.1 to
0.34.2 (#38352)
add 88241d3e71 chore(deps-dev): bump oxlint from 1.50.0 to 1.51.0 in
/superset-frontend (#38353)
add a79dcbbb66 chore(deps): update d3-cloud requirement from ^1.2.8 to
^1.2.9 in /superset-frontend/plugins/plugin-chart-word-cloud (#38381)
add 939e4194c6 fix(alerts): fix error toast when editing report with saved
tab selection (#38198)
add 0d5827ac42 chore(extensions): unified contribution api and automatic
prefixing (#38412)
add 5a2a72cf31 chore(deps): bump svgo from 3.3.2 to 3.3.3 in /docs (#38422)
add fdf19db5e6 chore(deps): bump svgo from 3.3.2 to 3.3.3 in
/superset-frontend (#38421)
add 4dfb0e66cb chore(deps-dev): bump webpack from 5.105.3 to 5.105.4 in
/superset-frontend (#38385)
add 1bfdc54e33 chore(deps-dev): bump eslint from 8.57.1 to 10.0.2 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 (fe9179f2fe)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/eslint-10.0.2 (1bfdc54e33)
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 +-
.../extensions/contribution-types.md | 51 ++-
docs/developer_docs/extensions/development.md | 62 ++-
docs/developer_docs/extensions/overview.md | 2 +-
docs/developer_docs/extensions/quick-start.md | 44 +-
docs/yarn.lock | 18 +-
pyproject.toml | 8 +-
requirements/base.txt | 4 +-
requirements/development.txt | 8 +-
superset-core/src/superset_core/api/rest_api.py | 97 +++--
.../cypress/e2e/dashboard_list/filter.test.ts | 47 ---
.../cypress/e2e/dashboard_list/list.test.ts | 279 ------------
superset-frontend/package-lock.json | 217 +++++-----
superset-frontend/package.json | 4 +-
.../playwright/helpers/api/dashboard.ts | 170 ++++++++
.../playwright/helpers/fixtures/testAssets.ts | 24 +-
.../{ChartListPage.ts => DashboardListPage.ts} | 67 +--
.../experimental/dashboard/dashboard-list.spec.ts | 403 ++++++++++++++++++
.../dashboard-test-helpers.ts} | 47 ++-
.../BigNumberWithTrendline/buildQuery.test.ts | 4 +-
.../BigNumber/BigNumberWithTrendline/buildQuery.ts | 2 +-
.../src/MixedTimeseries/buildQuery.ts | 2 +-
.../src/Timeseries/buildQuery.ts | 6 +-
.../src/Timeseries/transformProps.ts | 2 +-
.../plugin-chart-echarts/src/utils/formatters.ts | 91 +++-
.../test/MixedTimeseries/transformProps.test.ts | 2 +-
.../test/Timeseries/Scatter/transformProps.test.ts | 8 +-
.../test/Timeseries/transformProps.test.ts | 6 +-
.../test/utils/formatters.test.ts | 174 +++++++-
.../plugins/plugin-chart-word-cloud/package.json | 2 +-
superset-frontend/src/components/Chart/Chart.tsx | 2 +
.../components/gridComponents/Chart/Chart.test.tsx | 30 ++
.../components/gridComponents/Chart/Chart.tsx | 1 +
.../src/features/alerts/AlertReportModal.test.tsx | 467 ++++++++++++++++++++-
.../src/features/alerts/AlertReportModal.tsx | 40 +-
superset-frontend/src/features/alerts/types.ts | 7 +
.../DashboardList/DashboardList.behavior.test.tsx | 394 +++++++++++++++++
.../DashboardList/DashboardList.cardview.test.tsx | 417 ++++++++++++++++++
.../DashboardList/DashboardList.listview.test.tsx | 402 ++++++++++++++++++
.../DashboardList.permissions.test.tsx | 340 +++++++++++++++
.../src/pages/DashboardList/DashboardList.test.tsx | 391 +++++++++--------
.../DashboardList/DashboardList.testHelpers.tsx | 360 ++++++++++++++++
superset/commands/database/export.py | 9 +
superset/commands/database/importers/v1/utils.py | 26 +-
superset/commands/importers/v1/__init__.py | 4 +
superset/commands/importers/v1/assets.py | 4 +
superset/commands/importers/v1/utils.py | 19 +
superset/core/api/core_api_injection.py | 64 ++-
superset/core/mcp/core_mcp_injection.py | 66 ++-
superset/databases/api.py | 14 +
superset/databases/schemas.py | 62 +++
superset/extensions/context.py | 90 ++++
superset/extensions/contributions.py | 94 +++++
superset/importexport/api.py | 13 +
superset/initialization/__init__.py | 5 +-
superset/tasks/decorators.py | 15 +-
superset/utils/json.py | 43 ++
superset/utils/pandas_postprocessing/geography.py | 6 +-
superset/viz.py | 24 +-
tests/integration_tests/databases/api_tests.py | 91 ++++
tests/integration_tests/fixtures/importexport.py | 26 ++
tests/unit_tests/databases/api_test.py | 70 +++
.../databases/commands/importers/v1/import_test.py | 123 ++++++
tests/unit_tests/databases/schema_tests.py | 106 +++++
tests/unit_tests/importexport/api_test.py | 52 +++
tests/unit_tests/utils/json_tests.py | 139 ++++++
66 files changed, 5023 insertions(+), 846 deletions(-)
delete mode 100644
superset-frontend/cypress-base/cypress/e2e/dashboard_list/filter.test.ts
delete mode 100644
superset-frontend/cypress-base/cypress/e2e/dashboard_list/list.test.ts
create mode 100644 superset-frontend/playwright/helpers/api/dashboard.ts
copy superset-frontend/playwright/pages/{ChartListPage.ts =>
DashboardListPage.ts} (56%)
create mode 100644
superset-frontend/playwright/tests/experimental/dashboard/dashboard-list.spec.ts
copy
superset-frontend/playwright/tests/experimental/{dataset/dataset-test-helpers.ts
=> dashboard/dashboard-test-helpers.ts} (53%)
create mode 100644
superset-frontend/src/pages/DashboardList/DashboardList.behavior.test.tsx
create mode 100644
superset-frontend/src/pages/DashboardList/DashboardList.cardview.test.tsx
create mode 100644
superset-frontend/src/pages/DashboardList/DashboardList.listview.test.tsx
create mode 100644
superset-frontend/src/pages/DashboardList/DashboardList.permissions.test.tsx
create mode 100644
superset-frontend/src/pages/DashboardList/DashboardList.testHelpers.tsx
create mode 100644 superset/extensions/context.py
create mode 100644 superset/extensions/contributions.py