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/yargs-18.0.0
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 8c699b42c8 chore(deps): bump yargs from 17.7.2 to 18.0.0 in
/superset-frontend
add 57ec3b5a6d chore(deps-dev): bump eslint from 9.39.1 to 9.39.2 in /docs
(#36608)
add d6d8e71b71 chore(deps): Remove redundant polished direct dependency
(#36431)
add c7a4d4f2cc fix(sql): handle backtick-quoted identifiers with base
dialect (#36545)
add 5844c05281 docs: clarify Jinja from_dttm/to_dttm availability in SQL
Lab (#36544)
add a1a57d50a4 fix(tests): resolve flaky "should edit correctly" test in
chart list (#36641)
add de7a72a37b feat(ci): use TTL labels for showtime cleanup (#36643)
add 5f431ee1ec chore(deps-dev): bump @types/node from 24.8.1 to 25.0.2 in
/superset-frontend (#36620)
add 6f8052b828 docs: add contribution guidelines from wiki to Developer
Portal (#36523)
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 2f64617e86 chore(deps): bump yargs from 17.7.2 to 18.0.0 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 (8c699b42c8)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/yargs-18.0.0 (2f64617e86)
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/showtime-cleanup.yml | 18 +-
.github/workflows/superset-frontend.yml | 18 +
.../extensions/components/alert.mdx | 131 +
.../extensions/components/index.mdx | 93 +
docs/developer_portal/extensions/development.md | 70 +
.../guidelines/backend-style-guidelines.md | 36 +-
.../guidelines/backend/dao-style-guidelines.md | 24 +-
.../guidelines/design-guidelines.md | 131 +-
.../guidelines/frontend-style-guidelines.md | 42 +-
.../frontend/component-style-guidelines.md | 250 +-
.../frontend/emotion-styling-guidelines.md | 425 +-
.../guidelines/frontend/testing-guidelines.md | 297 -
.../developer_portal/testing/testing-guidelines.md | 129 +
docs/docs/configuration/sql-templating.mdx | 52 +-
docs/docs/contributing/development.mdx | 14 +
docs/docusaurus.config.ts | 9 +-
docs/package.json | 10 +-
docs/scripts/generate-extension-components.mjs | 676 ++
docs/sidebarTutorials.js | 48 +-
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/configuration/sql-templating.mdx | 52 +-
.../version-6.0.0/contributing/development.mdx | 14 +
docs/yarn.lock | 240 +-
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 +-
.../cypress/e2e/chart_list/list.test.ts | 12 +-
superset-frontend/package-lock.json | 8291 +++++++++++---------
superset-frontend/package.json | 30 +-
.../src/ui/components/Alert/Alert.stories.tsx | 11 +-
.../packages/superset-ui-core/package.json | 2 +-
.../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 +++
superset/sql/parse.py | 17 +
.../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 +++++
tests/unit_tests/sql/parse_tests.py | 93 +
60 files changed, 12699 insertions(+), 4728 deletions(-)
create mode 100644 docs/developer_portal/extensions/components/alert.mdx
create mode 100644 docs/developer_portal/extensions/components/index.mdx
delete mode 100644
docs/developer_portal/guidelines/frontend/testing-guidelines.md
create mode 100644 docs/developer_portal/testing/testing-guidelines.md
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