This is an automated email from the ASF dual-hosted git repository.

villebro pushed a change to branch bumping-echarts
in repository https://gitbox.apache.org/repos/asf/superset.git.


    from 3a99e34  bump @superset-ui/plugin-chart-echarts 0.17.47
     add bfbf767  fix: dashboard side actions (#14587)
     add 0d240c3  fix: properly keep state on queryEditorSetSql on tabstateview 
PUT (#14579)
     add 76a06a7  use pre-commit instead (#14581)
     add f1c32b9  feat(native-filters): add sort metric to select (#14590)
     add 31f406a  feat: API endpoint to validate databases using separate 
parameters (#14420)
     add 5f7722c  fix: error icon spacing in explore (#14597)
     add 3eef38f  refactor: change xsm Icons and dnd icons to new dynamic icons 
(#14419)
     add 331eb10  refactor: Bootstrap to AntD - Form - iteration 4 (#14546)
     add ad699e8  fix: don't show busted label for unknown data types (#14585)
     add 3f6bd1e  feat: add generic type to column payload (#14547)
     new 8b156c4  Merge branch 'master' into bumping-echarts

The 1 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:
 Makefile                                           |   4 +-
 docs/src/pages/docs/Miscellaneous/issue_codes.mdx  |  24 +
 .../integration/dashboard/dashboard.helper.ts      |   4 +-
 .../cypress/integration/dashboard/load.test.ts     |   4 +-
 .../integration/explore/annotations.test.ts        |  14 +-
 superset-frontend/package-lock.json                | 874 +++++++--------------
 superset-frontend/package.json                     |  54 +-
 .../components/ColumnTypeLabel_spec.jsx            |  15 +-
 .../spec/javascripts/datasource/fixtures.tsx       |  11 +-
 .../explore/components/TextArea_spec.jsx           |   8 +-
 superset-frontend/src/CRUD/Field.jsx               |  40 +-
 superset-frontend/src/CRUD/Fieldset.jsx            |   4 +-
 superset-frontend/src/SqlLab/actions/sqlLab.js     |   2 +-
 .../src/components/DeleteModal/index.tsx           |  17 +-
 .../src/components/ErrorMessage/types.ts           |   5 +
 .../DashboardBuilder/DashboardContainer.tsx        |   1 +
 .../src/datasource/ChangeDatasourceModal.tsx       |  44 +-
 .../src/datasource/DatasourceEditor.jsx            |  14 +-
 .../explore/components/PropertiesModal/index.tsx   |  62 +-
 .../src/explore/components/QueryAndSaveBtns.jsx    |   5 +-
 .../DndFilterSelect.test.tsx                       |  11 +-
 .../controls/DndColumnSelectControl/Option.tsx     |   7 +-
 ...AdhocFilterEditPopoverSimpleTabContent.test.jsx |   3 +-
 .../index.jsx                                      | 139 ++--
 .../AdhocFilterEditPopoverSqlTabContent.test.jsx   |   3 +-
 .../AdhocFilterEditPopoverSqlTabContent/index.jsx  |   9 +-
 .../AdhocFilterOption/AdhocFilterOption.test.tsx   |   2 +-
 .../explore/components/controls/HiddenControl.jsx  |   4 +-
 .../MetricControl/AdhocMetricEditPopoverTitle.jsx  |   4 +-
 .../components/controls/OptionControls/index.tsx   |   8 +-
 .../components/controls/TextAreaControl.jsx        |  19 +-
 .../components/controls/TextControl/index.tsx      |  35 +-
 .../src/filters/components/Range/buildQuery.ts     |   6 +-
 .../filters/components/Select/buildQuery.test.ts   |  59 ++
 .../src/filters/components/Select/buildQuery.ts    |   1 +
 .../components/TimeGrain/TimeGrainFilterPlugin.tsx |  10 +-
 superset/config.py                                 |   2 +-
 superset/connectors/base/models.py                 |  17 +
 superset/connectors/sqla/models.py                 |  11 +
 superset/constants.py                              |   1 +
 superset/databases/api.py                          |  57 ++
 superset/databases/commands/exceptions.py          |  14 +-
 superset/databases/commands/validate.py            | 127 +++
 superset/databases/schemas.py                      |  32 +-
 superset/db_engine_specs/base.py                   |  90 ++-
 superset/db_engine_specs/bigquery.py               |   5 +-
 superset/db_engine_specs/cockroachdb.py            |   1 +
 superset/db_engine_specs/mssql.py                  |   8 +-
 superset/db_engine_specs/mysql.py                  |   6 +-
 superset/db_engine_specs/postgres.py               |   7 +
 superset/db_engine_specs/presto.py                 |  10 +-
 superset/db_engine_specs/redshift.py               |   8 +-
 superset/errors.py                                 |  30 +
 superset/exceptions.py                             |  27 +
 tests/databases/api_tests.py                       | 150 +++-
 tests/databases/commands_tests.py                  | 127 ++-
 tests/db_engine_specs/base_engine_spec_tests.py    | 101 +++
 tests/db_engine_specs/base_tests.py                |  19 +-
 tests/db_engine_specs/mysql_tests.py               |   9 +-
 tests/db_engine_specs/postgres_tests.py            |  64 +-
 60 files changed, 1525 insertions(+), 924 deletions(-)
 create mode 100644 
superset-frontend/src/filters/components/Select/buildQuery.test.ts
 create mode 100644 superset/databases/commands/validate.py

Reply via email to