This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a change to branch chore/zizmor-template-injection
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 19b67e12407 chore(ci): pass workflow inputs via env instead of inline
expressions
add 87be424f9c4 feat(mcp): add list and get tools for row level security
and plugins (#40347)
add dfec51de97d chore(ci): resolve remaining GitHub Actions
static-analysis findings
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (19b67e12407)
\
N -- N -- N refs/heads/chore/zizmor-template-injection
(dfec51de97d)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/actions/setup-backend/action.yml | 16 +-
.github/workflows/showtime-trigger.yml | 1 +
.github/workflows/superset-docs-deploy.yml | 1 +
.github/workflows/superset-docs-verify.yml | 1 +
.github/workflows/superset-e2e.yml | 6 +-
.github/workflows/superset-helm-release.yml | 8 +-
.../workflows/superset-translations-comment.yml | 1 +
.github/workflows/tag-release.yml | 2 +
.github/workflows/welcome-new-users.yml | 1 +
superset/mcp_service/app.py | 23 +-
.../mcp_service/plugin}/__init__.py | 0
.../{daos/css.py => mcp_service/plugin/dao.py} | 5 +-
superset/mcp_service/plugin/schemas.py | 213 +++++++++++++++++
.../mcp_service/{task => plugin}/tool/__init__.py | 8 +-
.../tool/get_plugin_info.py} | 70 +++---
superset/mcp_service/plugin/tool/list_plugins.py | 123 ++++++++++
superset/mcp_service/privacy.py | 2 +-
.../mcp_service/rls}/__init__.py | 0
superset/mcp_service/rls/schemas.py | 255 +++++++++++++++++++++
.../{action_log => rls}/tool/__init__.py | 8 +-
.../tool/get_rls_filter_info.py} | 72 +++---
superset/mcp_service/rls/tool/list_rls_filters.py | 147 ++++++++++++
.../unit_tests/mcp_service/plugin}/__init__.py | 0
.../mcp_service/plugin/tool}/__init__.py | 0
.../mcp_service/plugin/tool/test_plugin_tools.py | 172 ++++++++++++++
.../unit_tests/mcp_service/rls}/__init__.py | 0
.../unit_tests/mcp_service/rls/tool}/__init__.py | 0
.../mcp_service/rls/tool/test_rls_tools.py | 245 ++++++++++++++++++++
28 files changed, 1288 insertions(+), 92 deletions(-)
copy {superset-core/src/superset_core/common =>
superset/mcp_service/plugin}/__init__.py (100%)
copy superset/{daos/css.py => mcp_service/plugin/dao.py} (88%)
create mode 100644 superset/mcp_service/plugin/schemas.py
copy superset/mcp_service/{task => plugin}/tool/__init__.py (86%)
copy superset/mcp_service/{role/tool/get_role_info.py =>
plugin/tool/get_plugin_info.py} (53%)
create mode 100644 superset/mcp_service/plugin/tool/list_plugins.py
copy {superset-core/src/superset_core/common =>
superset/mcp_service/rls}/__init__.py (100%)
create mode 100644 superset/mcp_service/rls/schemas.py
copy superset/mcp_service/{action_log => rls}/tool/__init__.py (84%)
copy superset/mcp_service/{action_log/tool/get_action_log_info.py =>
rls/tool/get_rls_filter_info.py} (53%)
create mode 100644 superset/mcp_service/rls/tool/list_rls_filters.py
copy {superset-core/src/superset_core/common =>
tests/unit_tests/mcp_service/plugin}/__init__.py (100%)
copy {superset-core/src/superset_core/common =>
tests/unit_tests/mcp_service/plugin/tool}/__init__.py (100%)
create mode 100644
tests/unit_tests/mcp_service/plugin/tool/test_plugin_tools.py
copy {superset-core/src/superset_core/common =>
tests/unit_tests/mcp_service/rls}/__init__.py (100%)
copy {superset-core/src/superset_core/common =>
tests/unit_tests/mcp_service/rls/tool}/__init__.py (100%)
create mode 100644 tests/unit_tests/mcp_service/rls/tool/test_rls_tools.py