You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by di...@apache.org on 2024/03/11 15:57:00 UTC

(superset) branch master updated (fde93dcf08 -> 89e89de341)

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

diegopucci pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


    from fde93dcf08 fix(dashboard): Only fetch CSS templates for dashboard header menu when in edit mode (#27411)
     add 89e89de341 fix: SSH Tunnel configuration settings  (#27186)

No new revisions were added by this update.

Summary of changes:
 .../superset-ui-core/src/ui-overrides/types.ts     |  18 +-
 .../src/features/alerts/AlertReportModal.test.tsx  |   4 +-
 .../DatabaseConnectionForm/CommonParameters.tsx    |  35 +---
 .../DatabaseConnectionForm/EncryptedField.tsx      |   2 +-
 .../DatabaseConnectionForm/TableCatalog.tsx        |   3 +-
 .../DatabaseConnectionForm/ValidatedInputField.tsx |   2 +-
 .../DatabaseModal/DatabaseConnectionForm/index.tsx | 130 ++++++-------
 .../databases/DatabaseModal/SSHTunnelForm.tsx      |  12 +-
 .../DatabaseModal/SSHTunnelSwitch.test.tsx         | 162 +++++++++++++++++
 .../databases/DatabaseModal/SSHTunnelSwitch.tsx    |  82 ++++++---
 .../databases/DatabaseModal/index.test.tsx         |  11 +-
 .../src/features/databases/DatabaseModal/index.tsx | 132 ++++++++------
 superset-frontend/src/features/databases/types.ts  |  80 +++++++-
 superset-frontend/src/views/CRUD/hooks.ts          |   7 +-
 superset/commands/database/create.py               |  10 +-
 superset/commands/database/ssh_tunnel/create.py    |  11 ++
 .../commands/database/ssh_tunnel/exceptions.py     |   4 +
 superset/commands/database/ssh_tunnel/update.py    |  25 ++-
 superset/commands/database/test_connection.py      |  45 +++--
 superset/commands/database/update.py               |  79 +++++---
 superset/databases/api.py                          |   7 +-
 tests/integration_tests/databases/api_tests.py     | 201 +++++++++++++++++++++
 .../databases/ssh_tunnel/commands/create_test.py   |  45 ++++-
 .../databases/ssh_tunnel/commands/update_test.py   |  35 +++-
 24 files changed, 871 insertions(+), 271 deletions(-)
 create mode 100644 superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.test.tsx