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 2023/01/11 19:50:05 UTC

[superset] branch ssh-logging updated (fdd45f8b66 -> 68a50a65bc)

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

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


    from fdd45f8b66 Merge branch 'master' of https://github.com/apache/superset into ssh-logging
     add 539936522f feat(ssh_tunnel): SQLAlchemy Form UI (#22513)
     add 68a50a65bc Merge branch 'master' of https://github.com/apache/superset into ssh-logging

No new revisions were added by this update.

Summary of changes:
 .../superset-ui-core/src/utils/featureFlags.ts     |   1 +
 .../DatabaseModal/DatabaseConnectionForm/index.tsx |   1 +
 .../data/database/DatabaseModal/SSHTunnelForm.tsx  | 265 +++++++++++++++++++++
 .../data/database/DatabaseModal/SqlAlchemyForm.tsx |   5 +-
 .../data/database/DatabaseModal/index.test.tsx     | 208 ++++++++++++++++
 .../CRUD/data/database/DatabaseModal/index.tsx     | 101 +++++++-
 .../src/views/CRUD/data/database/types.ts          |  48 ++++
 superset/databases/api.py                          |   3 +
 superset/databases/commands/test_connection.py     |   9 +
 superset/databases/schemas.py                      |   1 +
 superset/databases/ssh_tunnel/commands/update.py   |   3 +-
 superset/databases/ssh_tunnel/dao.py               |  23 ++
 superset/databases/ssh_tunnel/models.py            |  11 +-
 superset/db_engine_specs/base.py                   |   2 +
 superset/utils/ssh_tunnel.py                       |  13 +
 tests/integration_tests/databases/api_tests.py     |  13 +
 16 files changed, 701 insertions(+), 6 deletions(-)
 create mode 100644 superset-frontend/src/views/CRUD/data/database/DatabaseModal/SSHTunnelForm.tsx