This is an automated email from the ASF dual-hosted git repository.
hugh pushed a change to branch pexdax/snowflake
in repository https://gitbox.apache.org/repos/asf/superset.git.
from b071881 feat(snowflake): Snowflake dynamic form (#16861)
add d3f6145 fix(dashboard): Fill form with the latest values when undo in
native filters (#16851)
add 6daf37b move repro steps to front (#16819)
add 27a40d2 chore: Upgrades Storybook to version 6.3.8 to make it
compatible with Webpack 5 (#16857)
add 9ac55d9 fix(build): enable hot reloading of linked packages (#16867)
add b35645c feat: added extraEnvRaw variable to load values from other
secrets (#16219)
add aa74721 feat: Add Private Google Sheets to dynamic form (#16628)
add 0ea83c5 feat: add Databricks ODBC engine spec (#16862)
add e3b14fe fix: Overhead when changing the filter name (#16877)
add 3d8cc15 fix: Clear native filters state (#16893)
add 3f784cc refactor: sql lab: handling command exceptions (#16852)
add b3a23b3 fix conflicts
add 3272d1c fix(sqla): allow series limit without subquery support
(#16896)
add 4da4fe4 fix: Removing parent filter causes incorrect state of child
filter (#16876)
add 904c506 fixing db connection (#16899)
add 331de0c fix: Fix Uniqueness check before update for Sqllab Overwrites
(#16859)
add 9fa95ba Merge branch 'master' of https://github.com/apache/superset
into pexdax/snowflake
No new revisions were added by this update.
Summary of changes:
.github/ISSUE_TEMPLATE/bug_report.md | 13 +-
.../docs/Connecting to Databases/databricks.mdx | 68 +
helm/superset/Chart.yaml | 2 +-
helm/superset/templates/deployment-beat.yaml | 5 +-
helm/superset/templates/deployment-worker.yaml | 5 +-
helm/superset/templates/deployment.yaml | 7 +-
helm/superset/templates/init-job.yaml | 5 +-
helm/superset/values.yaml | 12 +-
superset-frontend/.storybook/main.js | 6 +-
superset-frontend/.storybook/preview.jsx | 19 +-
superset-frontend/package-lock.json | 55112 +++----------------
superset-frontend/package.json | 21 +-
.../src/SqlLab/components/ResultSet.tsx | 35 +-
superset-frontend/src/api/dataset.ts | 63 -
.../src/dashboard/components/Dashboard.jsx | 2 +
.../FilterScope/FilterScope.test.tsx | 1 +
.../FiltersConfigForm/FiltersConfigForm.tsx | 245 +-
.../FiltersConfigModal/FiltersConfigModal.tsx | 57 +-
.../nativeFilters/FiltersConfigModal/types.ts | 2 +-
.../nativeFilters/FiltersConfigModal/utils.ts | 6 +-
.../src/dashboard/containers/Dashboard.ts | 2 +
superset-frontend/src/dataMask/actions.ts | 12 +
superset-frontend/src/dataMask/reducer.ts | 3 +
superset-frontend/src/setup/setupColors.ts | 2 +
.../DatabaseModal/DatabaseConnectionForm.tsx | 190 +-
.../CRUD/data/database/DatabaseModal/index.tsx | 100 +-
.../CRUD/data/database/DatabaseModal/styles.ts | 12 +-
.../src/views/CRUD/data/database/types.ts | 9 +
superset-frontend/src/views/CRUD/hooks.ts | 2 +-
superset-frontend/webpack.config.js | 1 +
superset/connectors/sqla/models.py | 4 +-
superset/databases/api.py | 3 +
superset/databases/schemas.py | 12 +-
superset/datasets/commands/update.py | 4 +-
superset/datasets/dao.py | 15 +-
superset/db_engine_specs/bigquery.py | 12 +-
superset/db_engine_specs/databricks.py | 25 +-
superset/db_engine_specs/gsheets.py | 20 +-
superset/db_engine_specs/hive.py | 4 +
superset/errors.py | 6 +
superset/exceptions.py | 23 +-
superset/models/core.py | 9 +
superset/sqllab/command.py | 123 +-
superset/sqllab/exceptions.py | 83 +
superset/utils/sqllab_execution_context.py | 10 +
superset/views/core.py | 19 +-
tests/integration_tests/databases/api_tests.py | 9 +-
tests/unit_tests/db_engine_specs/test_gsheets.py | 6 +-
48 files changed, 7404 insertions(+), 49002 deletions(-)
create mode 100644 docs/src/pages/docs/Connecting to Databases/databricks.mdx
delete mode 100644 superset-frontend/src/api/dataset.ts
create mode 100644 superset/sqllab/exceptions.py