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/multi-ef5618d354
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 146818909e chore(deps): bump d3-scale and @types/d3-scale in
/superset-frontend
add 52c711b0bc fix(dashboard): import with overwrite flag replaces charts
instead of merging (#36551)
add cd2c889c9a feat(frontend): upgrade Storybook and add extension
component documentation (#36498)
add 28e3ba749e feat: SQL execution API for Superset (#36529)
add 2e64e99bdf chore(deps): bump d3-scale and @types/d3-scale 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 (146818909e)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/multi-ef5618d354
(2e64e99bdf)
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/superset-frontend.yml | 18 +
.../extensions/components/alert.mdx | 131 +
.../extensions/components/index.mdx | 93 +
docs/developer_portal/extensions/development.md | 70 +
docs/docs/contributing/development.mdx | 14 +
docs/docusaurus.config.ts | 9 +-
docs/package.json | 8 +-
docs/scripts/generate-extension-components.mjs | 676 ++
docs/sidebarTutorials.js | 11 +
docs/src/theme/ReactLiveScope/index.tsx | 53 +
.../src/types/apache-superset-core/index.d.ts | 21 +-
docs/src/webpack.extend.ts | 9 +
docs/tsconfig.json | 24 +-
.../version-6.0.0/contributing/development.mdx | 14 +
docs/yarn.lock | 223 +-
superset-core/src/superset_core/api/models.py | 88 +-
superset-core/src/superset_core/api/types.py | 177 +
superset-frontend/.storybook/main.js | 61 +-
superset-frontend/.storybook/preview.jsx | 3 +-
.../test-runner.ts} | 32 +-
superset-frontend/package-lock.json | 8173 +++++++++++---------
superset-frontend/package.json | 27 +-
.../src/ui/components/Alert/Alert.stories.tsx | 11 +-
.../src/components/DesignSystem.stories.tsx | 117 +-
.../ListViewCard/ListViewCard.stories.tsx | 61 +-
.../packages/superset-ui-demo/.storybook/main.js | 15 +-
.../packages/superset-ui-demo/package.json | 12 +-
.../storybook/stories/ExampleApp.stories.jsx | 3 +-
.../AlteredSliceTag/AlteredSliceTag.stories.tsx | 4 +-
.../test-runner-jest.config.js | 14 +-
superset-frontend/webpack.config.js | 2 +-
.../commands/dashboard/importers/v1/__init__.py | 42 +-
superset/commands/security/create.py | 4 +-
superset/commands/security/update.py | 4 +-
superset/daos/base.py | 2 +-
superset/models/core.py | 34 +
.../sql/execution/__init__.py | 3 +-
superset/sql/execution/celery_task.py | 486 ++
superset/sql/execution/executor.py | 1108 +++
.../commands/importers/v1/import_command_test.py | 214 +
tests/unit_tests/models/core_test.py | 84 +
.../unit_tests/sql/execution}/__init__.py | 0
tests/unit_tests/sql/execution/conftest.py | 324 +
tests/unit_tests/sql/execution/test_celery_task.py | 1077 +++
tests/unit_tests/sql/execution/test_executor.py | 2114 +++++
45 files changed, 11778 insertions(+), 3892 deletions(-)
create mode 100644 docs/developer_portal/extensions/components/alert.mdx
create mode 100644 docs/developer_portal/extensions/components/index.mdx
create mode 100644 docs/scripts/generate-extension-components.mjs
create mode 100644 docs/src/theme/ReactLiveScope/index.tsx
copy superset-frontend/packages/superset-ui-core/src/query/api/v1/index.ts =>
docs/src/types/apache-superset-core/index.d.ts (65%)
create mode 100644 superset-core/src/superset_core/api/types.py
copy
superset-frontend/{packages/superset-ui-core/src/utils/removeDuplicates.ts =>
.storybook/test-runner.ts} (56%)
copy docs/babel.config.js => superset-frontend/test-runner-jest.config.js (67%)
copy superset-extensions-cli/src/superset_extensions_cli/constants.py =>
superset/sql/execution/__init__.py (92%)
create mode 100644 superset/sql/execution/celery_task.py
create mode 100644 superset/sql/execution/executor.py
create mode 100644
tests/unit_tests/dashboards/commands/importers/v1/import_command_test.py
copy {superset-core/src/superset_core/api =>
tests/unit_tests/sql/execution}/__init__.py (100%)
create mode 100644 tests/unit_tests/sql/execution/conftest.py
create mode 100644 tests/unit_tests/sql/execution/test_celery_task.py
create mode 100644 tests/unit_tests/sql/execution/test_executor.py