From 9681ba8166119a7e712333cd1a21be7938b2823f Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 29 Aug 2023 02:29:17 +0000 Subject: [PATCH 1/8] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/pre-commit/mirrors-autopep8: v2.0.2 → v2.0.4](https://github.com/pre-commit/mirrors-autopep8/compare/v2.0.2...v2.0.4) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 19a4d8d2..48e7589a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,7 +17,7 @@ repos: - id: pretty-format-json args: [--autofix, --indent, '4', --no-sort-keys] - repo: https://github.com/pre-commit/mirrors-autopep8 - rev: v2.0.2 + rev: v2.0.4 hooks: - id: autopep8 - repo: https://github.com/adrienverge/yamllint.git From 6757e8f01608a5765ef69e2bccd5671eebe8e468 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 01:17:53 +0000 Subject: [PATCH 2/8] Bump gitpython from 3.1.32 to 3.1.34 Bumps [gitpython](https://github.com/gitpython-developers/GitPython) from 3.1.32 to 3.1.34. - [Release notes](https://github.com/gitpython-developers/GitPython/releases) - [Changelog](https://github.com/gitpython-developers/GitPython/blob/main/CHANGES) - [Commits](https://github.com/gitpython-developers/GitPython/compare/3.1.32...3.1.34) --- updated-dependencies: - dependency-name: gitpython dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index cef8e1ce..875bf0b1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ bencodepy==0.9.5 -GitPython==3.1.32 +GitPython==3.1.34 qbittorrent-api==2023.7.52 requests==2.31.0 retrying==1.3.4 From baddf45e8a35a58f4a147a0c8e67c7ab27a9f833 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 01:18:05 +0000 Subject: [PATCH 3/8] Bump pre-commit from 3.3.3 to 3.4.0 Bumps [pre-commit](https://github.com/pre-commit/pre-commit) from 3.3.3 to 3.4.0. - [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.3.3...v3.4.0) --- updated-dependencies: - dependency-name: pre-commit dependency-type: direct:development update-type: version-update:semver-minor ... 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 78b8ac5b..9ad64f96 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,2 +1,2 @@ flake8==6.1.0 -pre-commit==3.3.3 +pre-commit==3.4.0 From 4720e24db97d19813b5ba9c485e73fd8f199e31f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 00:32:01 +0000 Subject: [PATCH 4/8] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/develop.yml | 2 +- .github/workflows/latest.yml | 2 +- .github/workflows/tag.yml | 2 +- .github/workflows/version.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) mode change 100755 => 100644 .github/workflows/tag.yml diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index a60ab8bd..e2b51936 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Check Out Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: develop diff --git a/.github/workflows/latest.yml b/.github/workflows/latest.yml index 7e472c98..d512bb68 100644 --- a/.github/workflows/latest.yml +++ b/.github/workflows/latest.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Check Out Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Trigger Hotio Webhook uses: joelwmale/webhook-action@master diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml old mode 100755 new mode 100644 index c6e32e57..764a4c92 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -8,7 +8,7 @@ jobs: tag-new-versions: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: token: ${{ secrets.PAT }} fetch-depth: 2 diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 39d7c823..64abb17b 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Check Out Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 From 0ffa8fe6e8aade18525233958f102a01d03a13b0 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 03:13:00 +0000 Subject: [PATCH 5/8] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - https://github.com/pre-commit/mirrors-autopep8 → https://github.com/hhatto/autopep8 - [github.com/hhatto/autopep8: v2.0.2 → v2.0.4](https://github.com/hhatto/autopep8/compare/v2.0.2...v2.0.4) --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 19a4d8d2..03bdf2f4 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,8 +16,8 @@ repos: args: [--remove] - id: pretty-format-json args: [--autofix, --indent, '4', --no-sort-keys] - - repo: https://github.com/pre-commit/mirrors-autopep8 - rev: v2.0.2 + - repo: https://github.com/hhatto/autopep8 + rev: v2.0.4 hooks: - id: autopep8 - repo: https://github.com/adrienverge/yamllint.git From e73a3fe2043549f42781a81590e92d773ed35678 Mon Sep 17 00:00:00 2001 From: Jeffrey C <990135+JeffreyBytes@users.noreply.github.com> Date: Thu, 7 Sep 2023 14:05:25 -0500 Subject: [PATCH 6/8] Bump qbittorrent-api to v2023.9.53 Update to use the latest version of qbittorrent-api (v2023.9.53) for compatibility with qBittorrent v4.5.5, resolves #377 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 875bf0b1..e91c9b40 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ bencodepy==0.9.5 GitPython==3.1.34 -qbittorrent-api==2023.7.52 +qbittorrent-api==2023.9.53 requests==2.31.0 retrying==1.3.4 ruamel.yaml==0.17.32 From fcb64409490c4aa396bbb73fdae6b36eb08dfd96 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 Sep 2023 00:34:22 +0000 Subject: [PATCH 7/8] Bump gitpython from 3.1.34 to 3.1.35 Bumps [gitpython](https://github.com/gitpython-developers/GitPython) from 3.1.34 to 3.1.35. - [Release notes](https://github.com/gitpython-developers/GitPython/releases) - [Changelog](https://github.com/gitpython-developers/GitPython/blob/main/CHANGES) - [Commits](https://github.com/gitpython-developers/GitPython/compare/3.1.34...3.1.35) --- updated-dependencies: - dependency-name: gitpython dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e91c9b40..6bdd8a0e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ bencodepy==0.9.5 -GitPython==3.1.34 +GitPython==3.1.35 qbittorrent-api==2023.9.53 requests==2.31.0 retrying==1.3.4 From e5107c8204f778754bbaa19a853fafa7b5ec22f9 Mon Sep 17 00:00:00 2001 From: bobokun Date: Mon, 11 Sep 2023 20:30:36 -0400 Subject: [PATCH 8/8] 4.0.4 --- CHANGELOG | 11 ++++------- VERSION | 2 +- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b7acdcb6..93be2602 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,12 +1,9 @@ # Requirements Updated -- qbitorrent-api updated to 2023.7.52 +- qbitorrent-api updated to 2023.9.53 +- GitPython updated to 3.1.35 # Bug Fixes -- Fixes a few webhook bugs with Notifiarr -- Fixes [#355](https://github.com/StuffAnThings/qbit_manage/issues/355) -- Fixes [#356](https://github.com/StuffAnThings/qbit_manage/issues/356) -- Fixes [#363](https://github.com/StuffAnThings/qbit_manage/issues/363) -- Fixes [#370](https://github.com/StuffAnThings/qbit_manage/issues/370) +- Fixes [#377](https://github.com/StuffAnThings/qbit_manage/issues/377) -**Full Changelog**: https://github.com/StuffAnThings/qbit_manage/compare/v4.0.2...v4.0.3 +**Full Changelog**: https://github.com/StuffAnThings/qbit_manage/compare/v4.0.3...v4.0.4 diff --git a/VERSION b/VERSION index a2adb312..c5106e6d 100755 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.0.4-develop1 +4.0.4