This is an automated email from the ASF dual-hosted git repository.
diegopucci pushed a change to branch chore/hfb-e2e-tests
in repository https://gitbox.apache.org/repos/asf/superset.git
from 06c91c73a6 Enhance window resize test@
add 5c77f1ad2a feat: add databricks form (#21573)
add 997950ecf5 chore(native-filters): Grid units, type guard, feature flag
guard (#22307)
add 8018982e7b build(deps): bump decode-uri-component from 0.2.0 to 0.2.2
in /superset-frontend (#22315)
add 09bb1cc3b5 fix(alerts): cron picker alignment issues (#22274)
add 3df1c99f00 docs: update Flask-Babel links (#22023)
add 6d3591cb9e build(deps-dev): bump @typescript-eslint/eslint-plugin from
4.19.0 to 5.45.0 in /superset-websocket (#22309)
add 1c20206057 fix: convert <NA> values to None instead of stringifying
(#22321)
add 1ad5147016 fix(sqla): use same template processor in all methods
(#22280)
add d881c5df30 chore: Support Python 3.11 (#22217)
add aba3b81e13 fix: DropdownContainer resize algorithm (#22318)
add 8f649cd1fd Merge branch 'master' of https://github.com/apache/superset
into chore/hfb-e2e-tests
add 62ee06995f Enhance resize test
No new revisions were added by this update.
Summary of changes:
CONTRIBUTING.md | 4 +-
Makefile | 6 +-
docs/docs/contributing/translations.mdx | 6 +-
requirements/base.txt | 8 +-
requirements/development.txt | 2 +-
requirements/docker.txt | 2 +-
requirements/testing.txt | 23 +-
setup.py | 10 +-
.../integration/dashboard/nativeFilters.test.ts | 22 +-
superset-frontend/package-lock.json | 12 +-
.../superset-ui-core/src/query/types/Dashboard.ts | 11 +-
.../test/query/types/Dashboard.test.ts | 65 ++-
.../src/components/CronPicker/CronPicker.tsx | 6 +
.../DropdownContainer.stories.tsx | 21 +-
.../src/components/DropdownContainer/index.tsx | 113 +++--
superset-frontend/src/dashboard/actions/hydrate.js | 4 +-
.../FilterBar/FilterControls/FilterControls.tsx | 6 +-
.../FilterBar/FilterControls/FilterDivider.tsx | 2 +-
.../FilterBar/useFilterControlFactory.tsx | 3 +-
.../dashboard/components/nativeFilters/state.ts | 9 +-
.../DatabaseConnectionForm/CommonParameters.tsx | 46 +-
.../DatabaseModal/DatabaseConnectionForm/index.tsx | 130 +++---
.../data/database/DatabaseModal/SqlAlchemyForm.tsx | 2 +-
.../data/database/DatabaseModal/index.test.tsx | 35 +-
.../CRUD/data/database/DatabaseModal/index.tsx | 78 +++-
.../src/views/CRUD/data/database/types.ts | 3 +
superset-websocket/package-lock.json | 488 +++++++++++----------
superset-websocket/package.json | 2 +-
superset/connectors/sqla/models.py | 152 +++++--
superset/db_engine_specs/base.py | 2 +-
superset/db_engine_specs/databricks.py | 256 ++++++++++-
superset/result_set.py | 6 +-
.../db_engine_specs/databricks_tests.py | 67 +++
tests/integration_tests/sqla_models_tests.py | 43 +-
.../unit_tests/db_engine_specs/test_databricks.py | 135 ++++++
tests/unit_tests/result_set_test.py | 41 ++
36 files changed, 1340 insertions(+), 481 deletions(-)
create mode 100644 tests/integration_tests/db_engine_specs/databricks_tests.py
create mode 100644 tests/unit_tests/db_engine_specs/test_databricks.py