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/typescript-eslint/parser-8.45.0
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 8d9cd79be6 chore(deps-dev): bump @typescript-eslint/parser in
/superset-frontend
add 88e5581d04 fix: Broken splitter in sql lab and some minor visual fixes
(#35416)
add 19db0353a9 feat(db): custom database error messages (#34674)
add a66c230058 fix(SqlLab): Hit tableschemaview with a valid queryEditorId
(#35341)
add 6fbbc85df7 chore(deps): bump actions/setup-node from 4 to 5 (#35394)
add 5a90a84685 chore(deps): bump actions/github-script from 7 to 8 (#35385)
add d27210794c chore(deps): bump actions/setup-python from 5 to 6 (#35390)
add 84e21434b3 chore(deps): bump aws-actions/configure-aws-credentials
from 4 to 5 (#35387)
add 40378afbf8 chore(deps): bump actions/labeler from 5 to 6 (#35386)
add d8688cf8b1 fix(explore): close unsaved changes modal when discarding
changes (#35307)
add a3b91f924d chore(deps): bump @babel/runtime from 7.28.2 to 7.28.4 in
/superset-frontend (#35403)
add c188952de2 chore(deps-dev): bump webpack from 5.99.9 to 5.102.0 in
/superset-frontend (#35402)
add 6b0b13e4e7 chore(deps-dev): bump typescript-eslint from 8.40.0 to
8.45.0 in /docs (#35381)
add 13a164dd63 fix: table quoting in DBs with
`supports_cross_catalog_queries=True` (#35350)
add 50ed9b9e0e chore(deps-dev): bump @types/jquery from 3.5.32 to 3.5.33
in /superset-frontend (#35410)
add 0c639abe17 chore(deps-dev): bump jsdom from 26.0.0 to 27.0.0 in
/superset-frontend (#35409)
add 85ec3b1901 chore(deps-dev): bump @applitools/eyes-storybook from
3.55.6 to 3.60.0 in /superset-frontend (#35407)
add 2991f60368 chore(deps-dev): bump @types/react-json-tree from 0.6.11 to
0.13.0 in /superset-frontend (#35406)
add 2ef7232959 chore(deps-dev): bump eslint from 9.34.0 to 9.36.0 in /docs
(#35377)
add 35df0c410e chore(deps-dev): bump @typescript-eslint/parser 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 (8d9cd79be6)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/typescript-eslint/parser-8.45.0
(35df0c410e)
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/bump-python-package.yml | 2 +-
.github/workflows/check_db_migration_confict.yml | 2 +-
.github/workflows/claude.yml | 2 +-
.github/workflows/embedded-sdk-release.yml | 2 +-
.github/workflows/embedded-sdk-test.yml | 2 +-
.github/workflows/ephemeral-env-pr-close.yml | 4 +-
.github/workflows/ephemeral-env.yml | 16 +-
.github/workflows/github-action-validator.yml | 2 +-
.github/workflows/labeler.yml | 2 +-
.github/workflows/no-hold-label.yml | 2 +-
.github/workflows/pre-commit.yml | 2 +-
.github/workflows/release.yml | 2 +-
.github/workflows/showtime-trigger.yml | 2 +-
.github/workflows/superset-applitool-cypress.yml | 2 +-
.../workflows/superset-applitools-storybook.yml | 2 +-
.github/workflows/superset-docs-deploy.yml | 2 +-
.github/workflows/superset-docs-verify.yml | 2 +-
.github/workflows/superset-e2e.yml | 2 +-
.github/workflows/superset-helm-release.yml | 2 +-
.github/workflows/superset-playwright.yml | 2 +-
.github/workflows/superset-translations.yml | 2 +-
.github/workflows/supersetbot.yml | 2 +-
.github/workflows/tag-release.yml | 4 +-
.github/workflows/tech-debt.yml | 2 +-
docs/docs/configuration/databases.mdx | 42 +
docs/package.json | 4 +-
docs/yarn.lock | 232 ++--
superset-frontend/package-lock.json | 1306 ++++++++++++++------
superset-frontend/package.json | 12 +-
.../packages/superset-core/package.json | 2 +-
.../packages/superset-ui-core/package.json | 6 +-
superset-frontend/src/SqlLab/actions/sqlLab.js | 5 +-
.../components/TableElement/TableElement.test.tsx | 232 ++++
.../src/SqlLab/components/TableElement/index.tsx | 38 +-
.../Datasource/ChangeDatasourceModal/index.tsx | 4 +-
.../{IssueCode.test.tsx => CustomDocLink.test.tsx} | 28 +-
.../components/ErrorMessage/CustomDocLink.tsx} | 20 +-
.../ErrorMessage/DatabaseErrorMessage.test.tsx | 57 +
.../ErrorMessage/DatabaseErrorMessage.tsx | 29 +-
.../src/components/ErrorMessage/ErrorAlert.tsx | 2 +-
.../src/explore/components/ExploreAlert.test.tsx | 248 ++++
.../src/explore/components/ExploreAlert.tsx | 17 +-
.../src/hooks/useUnsavedChangesPrompt/index.ts | 1 +
.../useUnsavedChangesPrompt.test.tsx | 29 +
superset/commands/database/test_connection.py | 4 +-
superset/commands/database/validate.py | 4 +-
superset/config.py | 8 +
superset/connectors/sqla/models.py | 21 +-
superset/custom_database_errors.py | 83 ++
superset/db_engine_specs/base.py | 29 +-
superset/db_engine_specs/databricks.py | 15 +-
superset/models/helpers.py | 5 +-
superset/sql_lab.py | 4 +-
tests/unit_tests/connectors/sqla/models_test.py | 154 ++-
tests/unit_tests/db_engine_specs/test_base.py | 355 ++++++
55 files changed, 2410 insertions(+), 652 deletions(-)
copy superset-frontend/src/components/ErrorMessage/{IssueCode.test.tsx =>
CustomDocLink.test.tsx} (61%)
copy superset-frontend/{plugins/legacy-preset-chart-deckgl/src/TooltipRow.tsx
=> src/components/ErrorMessage/CustomDocLink.tsx} (71%)
create mode 100644
superset-frontend/src/explore/components/ExploreAlert.test.tsx
create mode 100644 superset/custom_database_errors.py