This is an automated email from the ASF dual-hosted git repository.
beto pushed a change to branch databricks-catalogs
in repository https://gitbox.apache.org/repos/asf/superset.git
discard b1d3d4eca2 Add tests
discard d9bd98faa0 feat: catalog support for Databricks native
add bbfe5c0ae8 feat(explore): Color scheme groups, new color schemes
(#27995)
add 499fb2c631 chore: add a github "action-validator" in CI (#28358)
add de1ae2bd48 chore: Updates CHANGELOG.md with 3.1.3 data (#28398)
add ba2cf5dbbc chore: unit tests for `catalog_access` (#28406)
add e6a85c5901 fix: export/import catalogs (#28408)
add 307ebeaa19 chore(Databricks): New Databricks driver (#28393)
add 337b353bd0 feat: catalog support for Databricks native
add 20c0373d0f Add tests
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 (b1d3d4eca2)
\
N -- N -- N refs/heads/databricks-catalogs (20c0373d0f)
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/ISSUE_TEMPLATE/bug-report.yml | 2 +-
.../workflows/github-action-validator.sh | 17 +-
.github/workflows/github-action-validator.yml | 28 ++
.github/workflows/tag-release.yml | 4 +-
CHANGELOG.md | 1 +
CHANGELOG/3.1.3.md | 47 +++
.../cypress/e2e/dashboard/editmode.test.ts | 28 +-
.../superset-ui-core/src/color/ColorScheme.ts | 7 +
.../src/color/colorSchemes/categorical/airbnb.ts | 1 +
.../categorical/{airbnb.ts => blueToGreen.ts} | 30 +-
.../categorical/{airbnb.ts => colorsOfRainbow.ts} | 32 +-
.../src/color/colorSchemes/categorical/d3.ts | 1 +
.../src/color/colorSchemes/categorical/echarts.ts | 1 +
.../src/color/colorSchemes/categorical/google.ts | 1 +
.../src/color/colorSchemes/categorical/index.ts | 6 +
.../src/color/colorSchemes/categorical/lyft.ts | 1 +
.../categorical/{airbnb.ts => modernSunset.ts} | 32 +-
.../src/color/colorSchemes/categorical/preset.ts | 3 +
.../{airbnb.ts => presetAndSuperset.ts} | 32 +-
.../categorical/{airbnb.ts => redToYellow.ts} | 30 +-
.../src/color/colorSchemes/categorical/superset.ts | 3 +
.../categorical/{airbnb.ts => wavesOfBlue.ts} | 30 +-
.../packages/superset-ui-core/src/color/types.ts | 6 +
superset-frontend/src/components/Select/styles.tsx | 2 +-
.../ColorSchemeControl/ColorSchemeControl.test.tsx | 73 ++++-
.../controls/ColorSchemeControl/index.tsx | 185 ++++++++---
.../DatabaseConnectionForm/CommonParameters.tsx | 63 ++++
.../DatabaseModal/DatabaseConnectionForm/index.tsx | 9 +
.../src/features/databases/DatabaseModal/index.tsx | 16 +-
superset-frontend/src/features/databases/types.ts | 15 +
superset-frontend/src/setup/setupColors.ts | 16 +-
superset/connectors/sqla/models.py | 12 +-
superset/db_engine_specs/databricks.py | 352 +++++++++++++++------
superset/models/sql_lab.py | 4 +
superset/security/manager.py | 5 +-
tests/integration_tests/datasets/commands_tests.py | 2 +
.../queries/saved_queries/commands_tests.py | 2 +
tests/unit_tests/connectors/sqla/models_test.py | 76 +++++
tests/unit_tests/datasets/commands/export_test.py | 2 +
.../datasets/commands/importers/v1/import_test.py | 2 +
.../unit_tests/db_engine_specs/test_databricks.py | 8 +-
tests/unit_tests/security/manager_test.py | 48 +++
42 files changed, 964 insertions(+), 271 deletions(-)
copy scripts/databases/hive/startup.sh =>
.github/workflows/github-action-validator.sh (66%)
mode change 100644 => 100755
create mode 100644 .github/workflows/github-action-validator.yml
create mode 100644 CHANGELOG/3.1.3.md
copy
superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/{airbnb.ts
=> blueToGreen.ts} (70%)
copy
superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/{airbnb.ts
=> colorsOfRainbow.ts} (68%)
copy
superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/{airbnb.ts
=> modernSunset.ts} (68%)
copy
superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/{airbnb.ts
=> presetAndSuperset.ts} (67%)
copy
superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/{airbnb.ts
=> redToYellow.ts} (70%)
copy
superset-frontend/packages/superset-ui-core/src/color/colorSchemes/categorical/{airbnb.ts
=> wavesOfBlue.ts} (70%)