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 2021/03/30 21:12:01 UTC

[superset] branch 1.1 updated (29d6420 -> eb35b80)

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

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


    from 29d6420  fix: exception when saving dash (#13300)
     add 2facfd8  WIP
     add c881c06  feat: add Firebird DB engine spec (#13353)
     add e98151d  fix(celery): Reset DB connection pools for forked worker processes (#13350)
     add c9f5e1c  fix(alerts&reports): Alerts & Reports will use values from WEBDRIVER_WINDOW option (#13157)
     add d5ef489  chore: bump pyarrow and pandas (#12882)
     add e8162cb  changes added (#13431)
     add eb35b80  fix: url shortener invalid input (#13461)

No new revisions were added by this update.

Summary of changes:
 requirements/base.txt                              | 396 +++++++++++++++------
 setup.py                                           |   5 +-
 superset-frontend/src/dashboard/index.jsx          |   4 +-
 .../explore/components/controls/VizTypeControl.jsx |   2 +-
 superset-frontend/src/explore/index.jsx            |   4 +-
 superset-frontend/src/middleware/asyncEvent.ts     |   6 +-
 superset/common/query_context.py                   |   2 +-
 superset/db_engine_specs/base.py                   |   2 +-
 superset/db_engine_specs/firebird.py               |  83 +++++
 superset/examples/energy.py                        |  16 +-
 superset/reports/commands/execute.py               |  12 +-
 superset/tasks/celery_app.py                       |  14 +-
 superset/utils/core.py                             |   6 +-
 superset/utils/log.py                              |  62 +++-
 superset/utils/screenshots.py                      |  26 +-
 superset/views/redirects.py                        |  22 +-
 superset/viz.py                                    |  27 +-
 tests/core_tests.py                                |  22 ++
 tests/db_engine_specs/firebird_tests.py            |  81 +++++
 tests/fixtures/energy_dashboard.py                 |  13 +-
 tests/utils_tests.py                               |  26 +-
 21 files changed, 657 insertions(+), 174 deletions(-)
 create mode 100644 superset/db_engine_specs/firebird.py
 create mode 100644 tests/db_engine_specs/firebird_tests.py