From de951376f431b4c8b2d3b89d3fd604e4637a7231 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 08:13:52 +0000 Subject: [PATCH 1/3] Update pre-commit requirement from <4.0,>=3.0 to >=3.0,<5.0 Updates the requirements on [pre-commit](https://github.com/pre-commit/pre-commit) to permit the latest version. - [Release notes](https://github.com/pre-commit/pre-commit/releases) - [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md) - [Commits](https://github.com/pre-commit/pre-commit/compare/v3.0.0...v4.0.0) --- updated-dependencies: - dependency-name: pre-commit dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index a478fcc..1fe5d9f 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -19,7 +19,7 @@ flake8-pytest-style >=2.0, <3.0 flake8-rst-docstrings >=0.2.6, <1.0 isort >=5.0, <6.0 pep8-naming >=0.1, <1.0 -pre-commit >=3.0, <4.0 +pre-commit >=3.0, <5.0 pytest >=8.0, <9.0 shellcheck-py >=0.1, <1.0 shfmt-py >=3.0, <4.0 From 8f9321ce16d98bb4984e7d366ed0d098d38f9cdf Mon Sep 17 00:00:00 2001 From: andthum <56444687+andthum@users.noreply.github.com> Date: Thu, 31 Oct 2024 12:29:28 +0100 Subject: [PATCH 2/3] [requirements-dev.txt]: Update pre-commit Update pre-commit from `>=3.0, <5.0` to `>=4.0, <5.0`. --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 1fe5d9f..c36dc90 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -19,7 +19,7 @@ flake8-pytest-style >=2.0, <3.0 flake8-rst-docstrings >=0.2.6, <1.0 isort >=5.0, <6.0 pep8-naming >=0.1, <1.0 -pre-commit >=3.0, <5.0 +pre-commit >=4.0, <5.0 pytest >=8.0, <9.0 shellcheck-py >=0.1, <1.0 shfmt-py >=3.0, <4.0 From 106196497044077e1661f5fdc963d4f425164c9d Mon Sep 17 00:00:00 2001 From: andthum <56444687+andthum@users.noreply.github.com> Date: Thu, 31 Oct 2024 12:34:02 +0100 Subject: [PATCH 3/3] [.pre-commit-config.yaml]: Update Hooks * https://github.com/pre-commit/pre-commit-hooks from `v4.6.0` to `v5.0.0` * https://github.com/python-jsonschema/check-jsonschema from `0.29.0` to `0.29.4` * https://github.com/PyCQA/flake8 from `7.1.0` to `7.1.1` * https://github.com/PyCQA/bandit from `1.7.9` to `1.7.10` --- .pre-commit-config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b6822f8..6b4f6a0 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -30,7 +30,7 @@ ci: repos: - repo: "https://github.com/pre-commit/pre-commit-hooks" - rev: "v4.6.0" + rev: "v5.0.0" hooks: ### Git ### # Protect specific branches from direct check-ins. @@ -108,7 +108,7 @@ repos: - id: "check-pre-commit-ci-config" - repo: "https://github.com/python-jsonschema/check-jsonschema" - rev: "0.29.0" + rev: "0.29.4" hooks: # Validate Dependabot Config (v2) against the schema provided by # SchemaStore. @@ -176,7 +176,7 @@ repos: - "--color" - repo: "https://github.com/PyCQA/flake8" - rev: "7.1.0" + rev: "7.1.1" hooks: # Lint Python code with Flake8. - id: "flake8" @@ -195,7 +195,7 @@ repos: - "pep8-naming >=0.1, <1.0" - repo: "https://github.com/PyCQA/bandit" - rev: "1.7.9" + rev: "1.7.10" hooks: # Check code security with bandit. - id: "bandit"