This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/pip/pytest-mock-gte-3.15.1-and-lt-4.0.0
in repository
https://gitbox.apache.org/repos/asf/fineract-business-intelligence.git
discard 64b68ed build(deps-dev): update pytest-mock requirement
add 0dd0071 build(deps): bump zizmorcore/zizmor-action from 0.6.0 to 0.6.1
add a2d146e Merge pull request #46 from
apache/dependabot/github_actions/zizmorcore/zizmor-action-0.6.1
add c306950 build(deps): bump github/codeql-action/init from 4.37.3 to
4.37.4
add c600a33 Merge pull request #58 from
apache/dependabot/github_actions/github/codeql-action/init-4.37.4
add 3594f38 build(deps): bump github/codeql-action/analyze from 4.37.3 to
4.37.4
add a20dc84 Merge pull request #59 from
apache/dependabot/github_actions/github/codeql-action/analyze-4.37.4
add 56b9c10 test: add RLS isolation tests for Superset dataset row-level
security
add b5ff480 Merge pull request #52 from
airajena/test/add-rls-isolation-tests
add ee157b5 test: add unit tests for superset dashboard asset logic
add 614e0db Merge pull request #51 from
airajena/test/add-superset-unit-tests
add b3f1a49 build(deps-dev): update pytest requirement
add dac0ef2 Merge pull request #57 from
apache/dependabot/pip/pytest-gte-9.1.1-and-lt-10.0.0
add 6b6be75 build(deps-dev): update freezegun requirement
add 75cd729 Merge pull request #55 from
apache/dependabot/pip/freezegun-gte-1.5.5-and-lt-2.0.0
add 4c3cc80 build(deps-dev): update pytest-mock requirement
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 (64b68ed)
\
N -- N -- N
refs/heads/dependabot/pip/pytest-mock-gte-3.15.1-and-lt-4.0.0 (4c3cc80)
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/workflows/ci.yml | 23 ++-
.github/workflows/codeql.yml | 4 +-
.github/workflows/zizmor.yml | 2 +-
docker/superset/asset_specs.py | 215 +++++++++++++++++++++++++++
docker/superset/bootstrap_superset_assets.py | 201 ++-----------------------
requirements-dev.txt | 4 +-
tests/{ => integration}/__init__.py | 0
tests/integration/test_rls_isolation.py | 120 +++++++++++++++
tests/{ => unit/superset}/__init__.py | 0
tests/unit/superset/test_asset_specs.py | 94 ++++++++++++
tests/unit/superset/test_build_layout.py | 147 ++++++++++++++++++
tests/unit/superset/test_chart_params.py | 84 +++++++++++
warehouse/schema/pipeline_state.sql | 4 +-
13 files changed, 699 insertions(+), 199 deletions(-)
create mode 100644 docker/superset/asset_specs.py
copy tests/{ => integration}/__init__.py (100%)
create mode 100644 tests/integration/test_rls_isolation.py
copy tests/{ => unit/superset}/__init__.py (100%)
create mode 100644 tests/unit/superset/test_asset_specs.py
create mode 100644 tests/unit/superset/test_build_layout.py
create mode 100644 tests/unit/superset/test_chart_params.py