You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by be...@apache.org on 2020/10/16 18:11:54 UTC

[incubator-superset] branch master updated (8863c93 -> 94e23bf)

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

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


    from 8863c93  fix: should update last_modified_time in client-side after save dash (#11305)
     add 94e23bf  feat: export databases as a ZIP bundle (#11229)

No new revisions were added by this update.

Summary of changes:
 requirements/testing.in                   |   3 +-
 requirements/testing.txt                  |  13 +-
 setup.cfg                                 |   2 +-
 superset/databases/api.py                 |  66 +++++++-
 superset/databases/commands/exceptions.py |   2 +-
 superset/databases/commands/export.py     |  89 ++++++++++
 superset/databases/schemas.py             |   1 +
 superset/models/helpers.py                |  35 +++-
 superset/utils/dict_import_export.py      |  18 ++
 tests/charts/api_tests.py                 |   1 -
 tests/dashboards/api_tests.py             |  15 +-
 tests/databases/api_tests.py              |  44 +++++
 tests/databases/commands_tests.py         | 266 ++++++++++++++++++++++++++++++
 tests/datasets/api_tests.py               |   7 +-
 tests/sqla_models_tests.py                |  28 ++--
 tests/sqllab_tests.py                     |   4 +
 16 files changed, 559 insertions(+), 35 deletions(-)
 create mode 100644 superset/databases/commands/export.py
 create mode 100644 tests/databases/commands_tests.py