From e460f61250dee3d2a4057c609d77ce4d20ab1d3a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Jun 2025 23:10:26 +0000 Subject: [PATCH 1/4] Update pytest requirement from ~=8.4.0 to ~=8.4.1 Updates the requirements on [pytest](https://github.com/pytest-dev/pytest) to permit the latest version. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.4.0...8.4.1) --- updated-dependencies: - dependency-name: pytest dependency-version: 8.4.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- tests/tests-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests-requirements.txt b/tests/tests-requirements.txt index 6e129761..7b962033 100644 --- a/tests/tests-requirements.txt +++ b/tests/tests-requirements.txt @@ -1,2 +1,2 @@ parameterized~=0.9.0 -pytest~=8.4.0 \ No newline at end of file +pytest~=8.4.1 \ No newline at end of file From 0a3a308728fbe81d5606ecbb258a46828ba69bb9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Jul 2025 00:13:47 +0000 Subject: [PATCH 2/4] Update rich requirement from ~=14.0 to ~=14.1 Updates the requirements on [rich](https://github.com/Textualize/rich) to permit the latest version. - [Release notes](https://github.com/Textualize/rich/releases) - [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md) - [Commits](https://github.com/Textualize/rich/compare/v14.0.0...v14.1.0) --- updated-dependencies: - dependency-name: rich dependency-version: 14.1.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 7ea7ba8c..326f258d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,7 +9,7 @@ psycopg2-binary PyGithub python-dotenv pyyaml -rich~=14.0 +rich~=14.1 srsly>=2.4.0 tensorflow==2.19.0 tensorflow-text==2.19.0 From 4eacc6f0270a03bfcf886050b131df0f4ab18fbd Mon Sep 17 00:00:00 2001 From: Marco Rosa Date: Mon, 4 Aug 2025 14:24:35 +0200 Subject: [PATCH 3/4] Change password-model reference (SAP org) --- src/credentialdigger/models/password_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/credentialdigger/models/password_model.py b/src/credentialdigger/models/password_model.py index d1325488..e42cd3ce 100644 --- a/src/credentialdigger/models/password_model.py +++ b/src/credentialdigger/models/password_model.py @@ -12,7 +12,7 @@ class PasswordModel(BaseModel): def __init__(self, - model='SAPOSS/password-model', + model='SAP/password-model', tokenizer='microsoft/codebert-base-mlm'): """ Parameters From ee45471366a8581e2ff441bbf118055534a9ea14 Mon Sep 17 00:00:00 2001 From: Marco Rosa Date: Mon, 4 Aug 2025 14:24:50 +0200 Subject: [PATCH 4/4] Bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 56ebb1ec..fec5b6fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] name = 'credentialdigger' -version = '4.14.9' +version = '4.15.0' dynamic = ['dependencies'] authors = [ {name = 'SAP SE'}