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/storybook-4448f18730
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 2f5b3ecb6e6 chore(deps-dev): bump @storybook/react-webpack5
add ce872ddaf01 chore(deps-dev): bump @swc/core from 1.14.0 to 1.15.11 in
/superset-frontend (#37511)
add cebdb9e0b7a fix(ListView): add tooltip for layout toggle buttons
(#37581)
add 2b411b32ba0 fix(scatter): Fix ad-hoc metric for pointsize (#37669)
add 15b3c96f8e9 fix(security): Add table blocklist and fix MCP SQL
validation bypass (#37411)
add a1d65c7529c feat(deps): significant `npm audit fix` to trim off
inadvertently runtime dep from upstream libraries (#37220)
add 059b57d784e chore(deps-dev): bump @types/node from 25.2.1 to 25.2.2 in
/superset-frontend (#37801)
add 5125a670025 build(dev-deps): remove `npm` from @apache-superset/core
(#37774)
add f25d95be410 fix: Vertical lines in the middle of Treemap categories
(#37808)
add 6984e93171e fix: SQL Lab improvements and bug fixes (#37760)
add 59dd2fa3857 feat: add global task framework (#36368)
add f6f96ecc49c test(chart-list): migrate Chart List tests from Cypress to
RTL (#37813)
add 044f8f7a872 chore(deps-dev): bump @storybook/react-webpack5
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 (2f5b3ecb6e6)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/storybook-4448f18730
(044f8f7a872)
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:
UPDATING.md | 22 +
docs/developer_portal/extensions/overview.md | 1 +
docs/developer_portal/extensions/registry.md | 2 +-
docs/developer_portal/extensions/tasks.md | 440 +
docs/developer_portal/sidebars.js | 1 +
docs/docs/configuration/cache.mdx | 84 +
docs/sidebarTutorials.js | 1 +
superset-core/src/superset_core/api/daos.py | 44 +
superset-core/src/superset_core/api/models.py | 129 +
superset-core/src/superset_core/api/tasks.py | 361 +
.../templates/frontend/package.json.j2 | 2 -
.../cypress/e2e/chart_list/_skip.filter.test.ts | 57 -
.../cypress/e2e/chart_list/list.test.ts | 57 -
superset-frontend/package-lock.json | 72721 ++++++++-----------
superset-frontend/package.json | 9 +-
.../packages/superset-core/package.json | 2 -
.../packages/superset-ui-core/package.json | 4 +-
.../src/components/Icons/AntdEnhanced.tsx | 2 +
.../superset-ui-core/src/utils/featureFlags.ts | 1 +
.../src/layers/Scatter/buildQuery.test.ts | 245 +-
.../src/layers/Scatter/buildQuery.ts | 44 +-
.../src/layers/buildQueryUtils.ts | 4 -
.../src/Treemap/transformProps.ts | 2 -
.../TableExploreTree/TreeNodeRenderer.tsx | 2 +-
.../SqlLab/components/TableExploreTree/index.tsx | 63 +-
.../src/components/AuditInfo/index.tsx | 25 +-
.../src/components/AuditInfo/types.ts | 2 +-
.../src/components/ListView/ListView.tsx | 54 +-
.../src/components/PanelToolbar/index.tsx | 2 +-
superset-frontend/src/components/index.ts | 2 +-
.../src/core/editors/AceEditorProvider.tsx | 20 +-
.../src/features/tasks/TaskPayloadPopover.tsx | 76 +
.../src/features/tasks/TaskStackTracePopover.tsx | 137 +
.../src/features/tasks/TaskStatusIcon.tsx | 145 +
.../src/features/tasks/timeUtils.test.ts | 145 +
superset-frontend/src/features/tasks/timeUtils.ts | 151 +
superset-frontend/src/features/tasks/types.ts | 115 +
.../pages/ChartList/ChartList.cardview.test.tsx | 45 +-
.../pages/ChartList/ChartList.listview.test.tsx | 189 +-
.../src/pages/ChartList/ChartList.test.tsx | 181 +-
.../src/pages/TaskList/TaskList.test.tsx | 328 +
superset-frontend/src/pages/TaskList/index.tsx | 658 +
superset-frontend/src/views/routes.tsx | 9 +
superset-frontend/webpack.config.js | 6 +
superset/async_events/cache_backend.py | 144 +-
superset/commands/distributed_lock/__init__.py | 24 +
superset/commands/distributed_lock/acquire.py | 132 +
superset/commands/distributed_lock/base.py | 41 +-
superset/commands/distributed_lock/create.py | 64 -
superset/commands/distributed_lock/delete.py | 49 -
superset/commands/distributed_lock/get.py | 45 -
superset/commands/distributed_lock/release.py | 83 +
.../dashboard/tool => commands/tasks}/__init__.py | 16 +-
superset/commands/tasks/cancel.py | 314 +
superset/commands/tasks/exceptions.py | 106 +
superset/commands/tasks/internal_update.py | 184 +
superset/commands/{logs => tasks}/prune.py | 45 +-
superset/commands/tasks/submit.py | 168 +
superset/commands/tasks/update.py | 170 +
superset/config.py | 93 +
superset/core/api/core_api_injection.py | 37 +-
superset/daos/chart.py | 5 +-
superset/daos/tasks.py | 470 +
superset/distributed_lock/__init__.py | 63 +-
superset/exceptions.py | 21 +-
superset/extensions/local_extensions_watcher.py | 5 +-
superset/initialization/__init__.py | 26 +
.../versions/2025_12_18_0220_create_tasks_table.py | 221 +
superset/models/task_subscribers.py | 62 +
superset/models/tasks.py | 367 +
superset/sql/execution/celery_task.py | 5 +-
superset/sql/execution/executor.py | 41 +-
superset/sql/parse.py | 40 +
superset/sql_lab.py | 15 +
superset/sqllab/utils.py | 3 +
superset/tasks/ambient_context.py | 87 +
superset/tasks/api.py | 471 +
superset/tasks/constants.py | 54 +
superset/tasks/context.py | 673 +
superset/tasks/decorators.py | 609 +
superset/tasks/filters.py | 112 +
superset/tasks/locks.py | 81 +
superset/tasks/manager.py | 764 +
superset/tasks/registry.py | 110 +
superset/tasks/scheduler.py | 257 +
superset/tasks/schemas.py | 200 +
superset/tasks/types.py | 2 +
superset/tasks/utils.py | 176 +-
superset/utils/cache_manager.py | 55 +-
superset/utils/log.py | 5 +-
superset/utils/oauth2.py | 10 +-
superset/views/{chart/views.py => tasks.py} | 11 +-
tests/integration_tests/superset_test_config.py | 1 +
tests/integration_tests/tasks/api_tests.py | 538 +
.../integration_tests/tasks/commands}/__init__.py | 0
.../tasks/commands/test_cancel.py | 482 +
.../tasks/commands/test_internal_update.py | 419 +
.../integration_tests/tasks/commands/test_prune.py | 258 +
.../tasks/commands/test_submit.py | 238 +
.../tasks/commands/test_update.py | 260 +
.../integration_tests/tasks/test_event_handlers.py | 415 +
.../integration_tests/tasks/test_sync_join_wait.py | 158 +
tests/integration_tests/tasks/test_throttling.py | 172 +
tests/integration_tests/tasks/test_timeout.py | 226 +
tests/unit_tests/daos/test_tasks.py | 420 +
.../distributed_lock/distributed_lock_tests.py | 158 +-
tests/unit_tests/sql/execution/test_executor.py | 73 +-
tests/unit_tests/sql/parse_tests.py | 33 +
tests/unit_tests/tasks/test_decorators.py | 477 +
tests/unit_tests/tasks/test_handlers.py | 677 +
tests/unit_tests/tasks/test_manager.py | 462 +
tests/unit_tests/tasks/test_timeout.py | 612 +
tests/unit_tests/tasks/test_utils.py | 249 +
tests/unit_tests/utils/json_tests.py | 2 +-
tests/unit_tests/utils/oauth2_tests.py | 6 +-
115 files changed, 48242 insertions(+), 41420 deletions(-)
create mode 100644 docs/developer_portal/extensions/tasks.md
create mode 100644 superset-core/src/superset_core/api/tasks.py
delete mode 100644
superset-frontend/cypress-base/cypress/e2e/chart_list/_skip.filter.test.ts
create mode 100644 superset-frontend/src/features/tasks/TaskPayloadPopover.tsx
create mode 100644
superset-frontend/src/features/tasks/TaskStackTracePopover.tsx
create mode 100644 superset-frontend/src/features/tasks/TaskStatusIcon.tsx
create mode 100644 superset-frontend/src/features/tasks/timeUtils.test.ts
create mode 100644 superset-frontend/src/features/tasks/timeUtils.ts
create mode 100644 superset-frontend/src/features/tasks/types.ts
create mode 100644 superset-frontend/src/pages/TaskList/TaskList.test.tsx
create mode 100644 superset-frontend/src/pages/TaskList/index.tsx
create mode 100644 superset/commands/distributed_lock/acquire.py
delete mode 100644 superset/commands/distributed_lock/create.py
delete mode 100644 superset/commands/distributed_lock/delete.py
delete mode 100644 superset/commands/distributed_lock/get.py
create mode 100644 superset/commands/distributed_lock/release.py
copy superset/{mcp_service/dashboard/tool => commands/tasks}/__init__.py (70%)
create mode 100644 superset/commands/tasks/cancel.py
create mode 100644 superset/commands/tasks/exceptions.py
create mode 100644 superset/commands/tasks/internal_update.py
copy superset/commands/{logs => tasks}/prune.py (74%)
create mode 100644 superset/commands/tasks/submit.py
create mode 100644 superset/commands/tasks/update.py
create mode 100644 superset/daos/tasks.py
create mode 100644
superset/migrations/versions/2025_12_18_0220_create_tasks_table.py
create mode 100644 superset/models/task_subscribers.py
create mode 100644 superset/models/tasks.py
create mode 100644 superset/tasks/ambient_context.py
create mode 100644 superset/tasks/api.py
create mode 100644 superset/tasks/constants.py
create mode 100644 superset/tasks/context.py
create mode 100644 superset/tasks/decorators.py
create mode 100644 superset/tasks/filters.py
create mode 100644 superset/tasks/locks.py
create mode 100644 superset/tasks/manager.py
create mode 100644 superset/tasks/registry.py
create mode 100644 superset/tasks/schemas.py
copy superset/views/{chart/views.py => tasks.py} (84%)
create mode 100644 tests/integration_tests/tasks/api_tests.py
copy {superset-core/src/superset_core/api =>
tests/integration_tests/tasks/commands}/__init__.py (100%)
create mode 100644 tests/integration_tests/tasks/commands/test_cancel.py
create mode 100644
tests/integration_tests/tasks/commands/test_internal_update.py
create mode 100644 tests/integration_tests/tasks/commands/test_prune.py
create mode 100644 tests/integration_tests/tasks/commands/test_submit.py
create mode 100644 tests/integration_tests/tasks/commands/test_update.py
create mode 100644 tests/integration_tests/tasks/test_event_handlers.py
create mode 100644 tests/integration_tests/tasks/test_sync_join_wait.py
create mode 100644 tests/integration_tests/tasks/test_throttling.py
create mode 100644 tests/integration_tests/tasks/test_timeout.py
create mode 100644 tests/unit_tests/daos/test_tasks.py
create mode 100644 tests/unit_tests/tasks/test_decorators.py
create mode 100644 tests/unit_tests/tasks/test_handlers.py
create mode 100644 tests/unit_tests/tasks/test_manager.py
create mode 100644 tests/unit_tests/tasks/test_timeout.py