You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by bk...@apache.org on 2020/09/15 18:17:38 UTC

[incubator-superset] branch master updated (838a70e -> 9c420d6)

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

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


    from 838a70e  docs: fix ubuntu 20.04 installation instructions (#10888)
     add 9c420d6  feat: implement cache invalidation api (#10761)

No new revisions were added by this update.

Summary of changes:
 superset/app.py                                |   2 +
 {tests/util => superset/cachekeys}/__init__.py |   0
 superset/cachekeys/api.py                      | 123 +++++++++++++++++++
 superset/cachekeys/schemas.py                  |  45 +++++++
 superset/charts/schemas.py                     |   4 +
 tests/base_tests.py                            |  63 +++++++---
 tests/{util => cachekeys}/__init__.py          |   0
 tests/cachekeys/api_tests.py                   | 163 +++++++++++++++++++++++++
 tests/datasets/api_tests.py                    |   9 --
 tests/superset_test_config.py                  |   8 ++
 10 files changed, 390 insertions(+), 27 deletions(-)
 copy {tests/util => superset/cachekeys}/__init__.py (100%)
 create mode 100644 superset/cachekeys/api.py
 create mode 100644 superset/cachekeys/schemas.py
 copy tests/{util => cachekeys}/__init__.py (100%)
 create mode 100644 tests/cachekeys/api_tests.py