From 084c7b65584f6b8aa8d4db2a4fe2b347939f63e3 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 17:35:52 +0000 Subject: [PATCH 1/3] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/python-jsonschema/check-jsonschema: 0.29.4 → 0.30.0](https://github.com/python-jsonschema/check-jsonschema/compare/0.29.4...0.30.0) - [github.com/psf/black-pre-commit-mirror: 23.12.1 → 24.10.0](https://github.com/psf/black-pre-commit-mirror/compare/23.12.1...24.10.0) - [github.com/PyCQA/bandit: 1.7.10 → 1.8.0](https://github.com/PyCQA/bandit/compare/1.7.10...1.8.0) - [github.com/markdownlint/markdownlint: v0.9.0 → v0.12.0](https://github.com/markdownlint/markdownlint/compare/v0.9.0...v0.12.0) --- .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 6b4f6a0..fcea440 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -108,7 +108,7 @@ repos: - id: "check-pre-commit-ci-config" - repo: "https://github.com/python-jsonschema/check-jsonschema" - rev: "0.29.4" + rev: "0.30.0" hooks: # Validate Dependabot Config (v2) against the schema provided by # SchemaStore. @@ -163,7 +163,7 @@ repos: - repo: "https://github.com/psf/black-pre-commit-mirror" # Stay at black version 23, because some formatting rules change in # version 24. Latest 23 version is 23.12.1. - rev: "23.12.1" + rev: "24.10.0" hooks: # Format Python code with black. - id: "black" @@ -195,7 +195,7 @@ repos: - "pep8-naming >=0.1, <1.0" - repo: "https://github.com/PyCQA/bandit" - rev: "1.7.10" + rev: "1.8.0" hooks: # Check code security with bandit. - id: "bandit" @@ -264,7 +264,7 @@ repos: # v0.12.0 requires ruby2.7 # v0.11.0 and v0.10.0 require ruby2.6 # => stay at v0.9.0 - rev: "v0.9.0" + rev: "v0.12.0" hooks: # Lint Markdown files with markdownlint. - id: "markdownlint" From b69c18721c58541468db2d8f02cf73ec5f11a84e Mon Sep 17 00:00:00 2001 From: andthum <56444687+andthum@users.noreply.github.com> Date: Sun, 23 Feb 2025 17:30:22 +0100 Subject: [PATCH 2/3] [.pre-commit-config.yaml]: Update Hooks Downgrade: * https://github.com/psf/black-pre-commit-mirror from `24.10.0` to 23.12.1 * https://github.com/markdownlint/markdownlint from `v0.12.0` to `v0.9.0` Upgrade: * https://github.com/python-jsonschema/check-jsonschema from `0.31.0` to 0.31.2` * https://github.com/PyCQA/isort from `5.13.2` to `6.0.0` * https://github.com/PyCQA/flake8 from `7.1.1` to `7.1.2` * https://github.com/PyCQA/bandit from `1.8.0` to `1.8.3` --- .pre-commit-config.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index fcea440..177da41 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -108,7 +108,7 @@ repos: - id: "check-pre-commit-ci-config" - repo: "https://github.com/python-jsonschema/check-jsonschema" - rev: "0.30.0" + rev: "0.31.2" hooks: # Validate Dependabot Config (v2) against the schema provided by # SchemaStore. @@ -145,7 +145,7 @@ repos: - id: "rst-inline-touching-normal" - repo: "https://github.com/PyCQA/isort" - rev: "5.13.2" + rev: "6.0.0" hooks: # Sort import statements with isort - id: "isort" @@ -163,7 +163,7 @@ repos: - repo: "https://github.com/psf/black-pre-commit-mirror" # Stay at black version 23, because some formatting rules change in # version 24. Latest 23 version is 23.12.1. - rev: "24.10.0" + rev: "23.12.1" hooks: # Format Python code with black. - id: "black" @@ -176,7 +176,7 @@ repos: - "--color" - repo: "https://github.com/PyCQA/flake8" - rev: "7.1.1" + rev: "7.1.2" 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.8.0" + rev: "1.8.3" hooks: # Check code security with bandit. - id: "bandit" @@ -264,7 +264,7 @@ repos: # v0.12.0 requires ruby2.7 # v0.11.0 and v0.10.0 require ruby2.6 # => stay at v0.9.0 - rev: "v0.12.0" + rev: "v0.9.0" hooks: # Lint Markdown files with markdownlint. - id: "markdownlint" From 4891092bb452fdaa5deca014f3a0fd6e91a69a86 Mon Sep 17 00:00:00 2001 From: andthum <56444687+andthum@users.noreply.github.com> Date: Sun, 23 Feb 2025 17:34:09 +0100 Subject: [PATCH 3/3] [requirements-dev.txt]: Update isort Update isort from `>=5.0, <6.0` to `>=6.0, <7.0`. --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index c36dc90..cf161b8 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -17,7 +17,7 @@ flake8-isort >=6.0, <7.0 flake8-logging-format >=0.1, <1.0 flake8-pytest-style >=2.0, <3.0 flake8-rst-docstrings >=0.2.6, <1.0 -isort >=5.0, <6.0 +isort >=6.0, <7.0 pep8-naming >=0.1, <1.0 pre-commit >=4.0, <5.0 pytest >=8.0, <9.0