You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by am...@apache.org on 2021/08/16 16:16:36 UTC

[superset] branch feat/extra_strategies updated (887fe2a -> fa5d610)

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

amitmiran pushed a change to branch feat/extra_strategies
in repository https://gitbox.apache.org/repos/asf/superset.git.


    from 887fe2a  chore: pre-commit
     add 22231ad  Move pagination outside of table (#16232)
     add 0668eaa  chore: Improves the flow to create a new chart (#16252)
     add 542b864  fix: pivot col names in post_process (#16262)
     add ee9a384  fix: disable text reports for now (#16257)
     add 8e07dd2  chore(pylint): Re-enable super-with-arguments check (#16138)
     add 7b72443  chore(pylint): Reenable ungrouped-imports check (#16256)
     add 6c9f0fb  Merge branch 'master' into feat/extra_strategies
     add fa5d610  chore: refactor file structure

No new revisions were added by this update.

Summary of changes:
 .pylintrc                                          |   2 -
 scripts/ci_check_no_file_changes.sh                |   2 +-
 .../src/addSlice/AddSliceContainer.tsx             | 200 ++++++++++++--------
 superset-frontend/src/common/components/index.tsx  |   1 +
 .../src/components/ReportModal/index.tsx           |   7 +-
 superset-frontend/src/components/Select/Select.tsx |   7 +-
 .../src/components/TableView/TableView.tsx         |  81 +++++----
 .../src/views/CRUD/alert/AlertReportModal.test.jsx |  16 --
 .../src/views/CRUD/alert/AlertReportModal.tsx      |   7 +-
 superset/charts/post_processing.py                 |  20 +-
 superset/tasks/caching/cache.py                    |  10 +-
 superset/tasks/caching/cache_strategy.py           | 201 ---------------------
 .../tasks/caching/{ => strategies}/__init__.py     |   0
 .../tasks/caching/strategies/dashboard_tags.py     |  75 ++++++++
 superset/tasks/caching/strategies/dummy.py         |  32 ++++
 superset/tasks/caching/strategies/top_n.py         |  57 ++++++
 superset/tasks/caching/{ => strategies}/utils.py   |   0
 superset/tasks/caching/strategy.py                 |  49 +++++
 superset/utils/url_map_converters.py               |   2 +-
 superset/views/schedules.py                        |   4 +-
 20 files changed, 411 insertions(+), 362 deletions(-)
 delete mode 100644 superset/tasks/caching/cache_strategy.py
 copy superset/tasks/caching/{ => strategies}/__init__.py (100%)
 create mode 100644 superset/tasks/caching/strategies/dashboard_tags.py
 create mode 100644 superset/tasks/caching/strategies/dummy.py
 create mode 100644 superset/tasks/caching/strategies/top_n.py
 rename superset/tasks/caching/{ => strategies}/utils.py (100%)
 create mode 100644 superset/tasks/caching/strategy.py