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

dependabot[bot] pushed a change to branch 
dependabot/github_actions/zizmorcore/zizmor-action-0.6.1
in repository 
https://gitbox.apache.org/repos/asf/fineract-business-intelligence.git


 discard 9f315f1  build(deps): bump zizmorcore/zizmor-action from 0.6.0 to 0.6.1
     add 1ebeca6  test: add unit tests for extractor module with pytest
     add 79601d7  Merge pull request #49 from 
airajena/test/add-extractor-unit-tests
     add 8e1430f  test: add dbt transformation layer tests with dbt-utils and 
singular SQL checks
     add f5de51c  fix: install dbt-utils before dbt parse in compilation-checks 
job
     add 19e163b  Merge pull request #50 from 
airajena/test/add-dbt-transformation-tests
     add bc25307  chore: add .gitattributes to force LF line endings on scripts 
and configs
     add 8bf3605  Merge pull request #47 from 
airajena/chore/normalize-line-endings
     add 26f2f8b  fix: increase dependabot cooldown to 7 days to satisfy zizmor 
audit
     add 6f26fb2  Merge pull request #53 from 
airajena/fix/dependabot-cooldown-zizmor
     add 0dd0071  build(deps): bump zizmorcore/zizmor-action from 0.6.0 to 0.6.1

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   (9f315f1)
            \
             N -- N -- N   
refs/heads/dependabot/github_actions/zizmorcore/zizmor-action-0.6.1 (0dd0071)

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:
 docker/dbt/Dockerfile => .gitattributes            |  36 +++--
 .github/dependabot.yml                             |  12 +-
 .github/workflows/ci.yml                           |  10 +-
 .rat-excludes                                      |   1 +
 dbt/dbt_project.yml                                |   3 +
 dbt/models/marts/_marts.yml                        |  38 +++++
 dbt/package-lock.yml                               |   5 +
 dbt/{requirements.txt => packages.yml}             |   4 +-
 ..._borrower_count_never_exceeds_transactions.sql} |  16 ++-
 ...assert_collection_efficiency_within_bounds.sql} |  15 +-
 ...assert_marts_have_no_orphan_dimension_keys.sql} |  36 +++--
 .../assert_no_future_dated_facts.sql}              |  32 +++--
 dbt/tests/assert_no_negative_amounts_or_counts.sql |  46 +++++++
 dbt/tests/assert_no_pii_columns_in_marts.sql       |  54 ++++++++
 ...sert_par_components_never_exceed_portfolio.sql} |  32 ++---
 .../assert_par_hierarchy_never_violated.sql}       |  24 ++--
 .../assert_par_ratios_within_bounds.sql}           |  22 +--
 ...ert_repayment_components_dont_exceed_total.sql} |  44 +++---
 .../assert_waived_never_exceeds_charged.sql}       |  13 +-
 pytest.ini                                         |  24 ++++
 extractor/requirements.txt => requirements-dev.txt |   4 +-
 extractor/requirements.txt => tests/__init__.py    |   2 -
 tests/conftest.py                                  | 118 ++++++++++++++++
 .../requirements.txt => tests/unit/__init__.py     |   2 -
 .../unit/extractor/__init__.py                     |   2 -
 tests/unit/extractor/test_cob_gate.py              |  87 ++++++++++++
 tests/unit/extractor/test_config.py                | 134 ++++++++++++++++++
 tests/unit/extractor/test_helpers.py               | 116 ++++++++++++++++
 tests/unit/extractor/test_replica_lag.py           |  80 +++++++++++
 tests/unit/extractor/test_source_query.py          | 102 ++++++++++++++
 tests/unit/extractor/test_upsert_rows.py           | 106 ++++++++++++++
 tests/unit/extractor/test_watermark.py             | 153 +++++++++++++++++++++
 32 files changed, 1246 insertions(+), 127 deletions(-)
 copy docker/dbt/Dockerfile => .gitattributes (53%)
 create mode 100644 dbt/package-lock.yml
 copy dbt/{requirements.txt => packages.yml} (91%)
 copy dbt/{models/marts/dimensions/dim_currency.sql => 
tests/assert_borrower_count_never_exceeds_transactions.sql} (70%)
 copy dbt/{models/marts/dimensions/dim_currency.sql => 
tests/assert_collection_efficiency_within_bounds.sql} (74%)
 copy dbt/{models/staging/stg_m_office.sql => 
tests/assert_marts_have_no_orphan_dimension_keys.sql} (55%)
 copy dbt/{models/staging/stg_m_office.sql => 
tests/assert_no_future_dated_facts.sql} (60%)
 create mode 100644 dbt/tests/assert_no_negative_amounts_or_counts.sql
 create mode 100644 dbt/tests/assert_no_pii_columns_in_marts.sql
 copy dbt/{models/marts/dimensions/dim_office.sql => 
tests/assert_par_components_never_exceed_portfolio.sql} (61%)
 copy dbt/{models/marts/dimensions/dim_client.sql => 
tests/assert_par_hierarchy_never_violated.sql} (68%)
 copy dbt/{models/marts/dimensions/dim_client.sql => 
tests/assert_par_ratios_within_bounds.sql} (72%)
 copy dbt/{models/marts/dimensions/dim_product.sql => 
tests/assert_repayment_components_dont_exceed_total.sql} (58%)
 copy dbt/{models/marts/dimensions/dim_currency.sql => 
tests/assert_waived_never_exceeds_charged.sql} (79%)
 create mode 100644 pytest.ini
 copy extractor/requirements.txt => requirements-dev.txt (91%)
 copy extractor/requirements.txt => tests/__init__.py (97%)
 create mode 100644 tests/conftest.py
 copy extractor/requirements.txt => tests/unit/__init__.py (97%)
 copy extractor/requirements.txt => tests/unit/extractor/__init__.py (97%)
 create mode 100644 tests/unit/extractor/test_cob_gate.py
 create mode 100644 tests/unit/extractor/test_config.py
 create mode 100644 tests/unit/extractor/test_helpers.py
 create mode 100644 tests/unit/extractor/test_replica_lag.py
 create mode 100644 tests/unit/extractor/test_source_query.py
 create mode 100644 tests/unit/extractor/test_upsert_rows.py
 create mode 100644 tests/unit/extractor/test_watermark.py

Reply via email to