This is an automated email from the ASF dual-hosted git repository.
villebro pushed a change to branch 0.35
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.
from 62c2e15 Bump version to 0.35.1
new 5493709 docs: add a note to RELEASING about Slack Channel (#8419)
new ee35bd5 spelling fix (#8442)
new ba8bb6b explain the need to enable async queries (#8444)
new e941bda introduce a space in command line option (#8438)
new ddeb436 Split up tests/db_engine_test.py (#8449)
new 3e6a206 [setup] Fix, download_url (#8439)
new 811b0e9 [Datasource Editor] A few small UI changes in modal to
prevent accidental edits (#8471)
new 87d481b Update UPDATING.md (#8465)
new 27612a1 [datasource editor] Only one click target for edit action
(#8495)
new 240a1c4 Default page: remove title attribute to fall back on
appbuilder.app_name (#8427)
new 8e38ee2 [Dashboard Import] Log error on dashboard import failure
(#8550)
new 7db5283 Math.max(...array) considered harmful (#8575)
new b9941df Fix error when templateParams is undefined (#8581)
new f92bc2c Bump pyarrow to 0.15.1 due to CVE (#8583)
new 611fd02 Fix for BigQuery connection checks and CSV uploads (#8511)
new 946f5c1 [SECURITY] bump packages with security vulnerabilities (#8573)
new 8e47b11 fix: default missing values to zero on area chart (#8678)
new f416f91 [fix] Druid IS NULL/IS NOT NULL filters (#8714)
new b7cc619 Migrate filter_immune_slice_fields (#8718)
new ff092e2 fix: don't show filter popover on explore view load (#8729)
new 6f102bb Bump viz plugins for bug bash (#8759)
new bb5f5fc [database] [log] Fix, Limit the amount of info on response
(#8918)
The 22 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
RELEASING/README.md | 5 +
UPDATING.md | 10 +-
docs/index.rst | 2 +-
docs/installation.rst | 5 +-
requirements.txt | 2 +-
setup.py | 6 +-
.../cypress/integration/explore/control.test.js | 3 +-
superset/assets/package-lock.json | 103 +--
superset/assets/package.json | 5 +-
.../datasource/DatasourceEditor_spec.jsx | 1 +
superset/assets/src/SqlLab/actions/sqlLab.js | 2 +-
.../components/FilterableTable/FilterableTable.jsx | 7 +-
.../assets/src/datasource/DatasourceEditor.jsx | 52 +-
superset/assets/src/datasource/main.css | 9 +
.../src/explore/components/AdhocFilterOption.jsx | 3 +-
.../src/explore/components/AdhocMetricOption.jsx | 4 +-
.../components/controls/DatasourceControl.css} | 30 +-
.../components/controls/DatasourceControl.jsx | 71 +-
superset/connectors/druid/models.py | 4 +-
superset/db_engine_specs/base.py | 11 +-
superset/db_engine_specs/bigquery.py | 8 +
superset/db_engine_specs/hive.py | 8 +-
superset/models/core.py | 12 +
.../templates/superset/models/database/macros.html | 1 +
superset/views/core.py | 5 +-
superset/views/database/api.py | 2 +
superset/views/database/views.py | 8 +-
superset/views/log/api.py | 1 +
superset/viz.py | 7 +-
tests/db_engine_specs/base_engine_spec_tests.py | 204 ++++++
.../db_engine_specs/base_tests.py | 17 +-
tests/db_engine_specs/bigquery_tests.py | 39 +
tests/db_engine_specs/hive_tests.py | 152 ++++
tests/db_engine_specs/mssql_tests.py | 71 ++
.../db_engine_specs/mysql_tests.py | 32 +-
tests/db_engine_specs/oracle_tests.py | 36 +
.../db_engine_specs/pinot_tests.py | 24 +-
tests/db_engine_specs/postgres_tests.py | 72 ++
tests/db_engine_specs/presto_tests.py | 343 +++++++++
tests/db_engine_specs_test.py | 810 ---------------------
tests/druid_func_tests.py | 26 +
41 files changed, 1199 insertions(+), 1014 deletions(-)
copy superset/assets/{stylesheets/explore.css =>
src/explore/components/controls/DatasourceControl.css} (76%)
create mode 100644 tests/db_engine_specs/base_engine_spec_tests.py
copy superset/db_engine_specs/gsheets.py =>
tests/db_engine_specs/base_tests.py (60%)
create mode 100644 tests/db_engine_specs/bigquery_tests.py
create mode 100644 tests/db_engine_specs/hive_tests.py
create mode 100644 tests/db_engine_specs/mssql_tests.py
copy
superset/migrations/versions/a65458420354_add_result_backend_time_logging.py =>
tests/db_engine_specs/mysql_tests.py (59%)
create mode 100644 tests/db_engine_specs/oracle_tests.py
copy superset/bin/superset => tests/db_engine_specs/pinot_tests.py (56%)
mode change 100755 => 100644
create mode 100644 tests/db_engine_specs/postgres_tests.py
create mode 100644 tests/db_engine_specs/presto_tests.py
delete mode 100644 tests/db_engine_specs_test.py