You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by dp...@apache.org on 2020/11/30 13:08:24 UTC

[incubator-superset] branch master updated (4666445 -> 9dd33d5)

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

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


    from 4666445  chore: type a couple easy to type files (#11838)
     add 9dd33d5  feat(saved queries): security perm simplification (#11764)

No new revisions were added by this update.

Summary of changes:
 .../CRUD/data/savedquery/SavedQueryList_spec.jsx   |   2 +-
 .../views/CRUD/data/savedquery/SavedQueryList.tsx  |   4 +-
 superset/constants.py                              |  33 +++
 .../migrations/shared}/__init__.py                 |   0
 superset/migrations/shared/security_converge.py    | 273 +++++++++++++++++++++
 ...e38177dbf641_security_converge_saved_queries.py |  85 +++++++
 superset/queries/saved_queries/api.py              |   6 +-
 superset/views/sql_lab.py                          |   8 +-
 tests/queries/saved_queries/api_tests.py           |  16 +-
 tests/security/migrate_roles_tests.py              | 237 ++++++++++++++++++
 10 files changed, 657 insertions(+), 7 deletions(-)
 copy {tests/security => superset/migrations/shared}/__init__.py (100%)
 create mode 100644 superset/migrations/shared/security_converge.py
 create mode 100644 superset/migrations/versions/e38177dbf641_security_converge_saved_queries.py
 create mode 100644 tests/security/migrate_roles_tests.py