You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2022/09/27 18:56:04 UTC

[superset] branch fix-clickhouse-cpq updated (40fe3136f2 -> 19a0688d1d)

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

hugh pushed a change to branch fix-clickhouse-cpq
in repository https://gitbox.apache.org/repos/asf/superset.git


    from 40fe3136f2 fix
     add b36bd3f083 fix(databases): GSheets and Clickhouse DBs are not allowed to upload files (#21065)
     add 954fc89871 fix(explore): Fix datasource switch for table chart (#21544)
     add 2cdd88aa4f chore(dashboard): Add filter_scopes warning message for json metadata editor (#21543)
     add 24412e282d fix(dashboard): dashboard doesn't load properly if it has tabs (#21576)
     add bb1cf7f145 refactor: Organizes the Select files (#21589)
     add bb08c7e7f0 chore: Updates CHANGELOG.md and UPDATING.md with 1.5.2 changes (#21601)
     add eac74a1234 chore(deps): bump terser from 5.10.0 to 5.14.2 in /superset-embedded-sdk (#20785)
     add 9b058bc238 chore(deps): bump cookie from 0.4.1 to 0.5.0 in /superset-websocket (#20983)
     add c4edcbdb00 chore(deps): bump http-errors from 1.8.0 to 2.0.0 in /superset-websocket/utils/client-ws-app (#20978)
     add 18ec294336 fix(tags): Adding __init__ to tags (#21591)
     add 19a0688d1d Merge branch 'master' of https://github.com/apache/superset into fix-clickhouse-cpq

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.md                                       |  37 ++-
 UPDATING.md                                        |   6 +
 docs/static/resources/openapi.json                 |  13 +
 superset-embedded-sdk/package-lock.json            | 148 +++++++--
 ...{Select.stories.tsx => AsyncSelect.stories.tsx} | 225 +------------
 .../src/components/Select/AsyncSelect.tsx          |  94 ++----
 .../src/components/Select/Select.stories.tsx       | 247 +-------------
 superset-frontend/src/components/Select/Select.tsx |  33 +-
 .../src/components/Select/constants.ts             |  52 +++
 superset-frontend/src/components/Select/styles.tsx |  90 ++++++
 superset-frontend/src/components/Select/types.ts   | 201 ++++++++++++
 superset-frontend/src/components/Select/utils.tsx  | 259 +--------------
 .../dashboard/components/PropertiesModal/index.tsx |  18 ++
 .../dashboard/components/gridComponents/Tabs.jsx   |  50 ++-
 .../components/gridComponents/Tabs.test.jsx        |  12 +
 .../controls/SelectAsyncControl/index.tsx          |   3 +-
 .../getControlValuesCompatibleWithDatasource.ts    |  11 +-
 .../src/views/CRUD/data/database/DatabaseList.tsx  |   8 +-
 .../data/database/DatabaseModal/ExtraOptions.tsx   |  79 ++---
 .../data/database/DatabaseModal/index.test.jsx     | 197 +++++++++++
 .../CRUD/data/database/DatabaseModal/index.tsx     |   4 +-
 .../src/views/CRUD/data/database/types.ts          |   5 +
 .../src/views/components/RightMenu.test.tsx        | 268 +++++++++++++++
 .../src/views/components/RightMenu.tsx             |  18 +-
 superset-frontend/src/views/components/SubMenu.tsx |   2 +-
 superset-frontend/src/views/routes.test.tsx        |   5 +-
 superset-websocket/package-lock.json               |  14 +-
 superset-websocket/package.json                    |   2 +-
 .../utils/client-ws-app/package-lock.json          | 360 ++-------------------
 .../utils/client-ws-app/package.json               |   2 +-
 superset/databases/api.py                          |  10 +
 superset/db_engine_specs/base.py                   |  15 +
 superset/db_engine_specs/clickhouse.py             |   2 +
 superset/db_engine_specs/gsheets.py                |   2 +
 superset/models/core.py                            |   9 +
 superset/{advanced_data_type => tags}/__init__.py  |   0
 superset/tags/core.py                              |   1 +
 superset/views/database/forms.py                   |  14 +
 tests/integration_tests/databases/api_tests.py     |  25 ++
 39 files changed, 1299 insertions(+), 1242 deletions(-)
 copy superset-frontend/src/components/Select/{Select.stories.tsx => AsyncSelect.stories.tsx} (62%)
 create mode 100644 superset-frontend/src/components/Select/constants.ts
 create mode 100644 superset-frontend/src/components/Select/styles.tsx
 create mode 100644 superset-frontend/src/components/Select/types.ts
 create mode 100644 superset-frontend/src/views/components/RightMenu.test.tsx
 copy superset/{advanced_data_type => tags}/__init__.py (100%)