From 777117d88018af28ce1e85337c89e7feada1f616 Mon Sep 17 00:00:00 2001 From: bobokun Date: Sat, 19 Oct 2024 09:48:40 -0400 Subject: [PATCH 01/13] 4.1.13-develop --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index b05079e5..92de62a1 100755 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.1.12 +4.1.13-develop1 From c7c65751f02b933aae84d7b1c53175b72b2c97e0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 00:54:39 +0000 Subject: [PATCH 02/13] Bump croniter from 3.0.3 to 3.0.4 (#680) Bumps [croniter](https://github.com/kiorky/croniter) from 3.0.3 to 3.0.4. - [Changelog](https://github.com/kiorky/croniter/blob/master/CHANGELOG.rst) - [Commits](https://github.com/kiorky/croniter/compare/3.0.3...3.0.4) --- updated-dependencies: - dependency-name: croniter dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index d8661da6..27835433 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ bencodepy==0.9.5 -croniter==3.0.3 +croniter==3.0.4 GitPython==3.1.43 humanize==4.11.0 pytimeparse2==1.7.1 From d7ef27cba123a0fbf18ff5a0148bbb48b5a8f1de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 00:41:20 +0000 Subject: [PATCH 03/13] Bump qbittorrent-api from 2024.9.67 to 2024.10.68 (#684) Bumps [qbittorrent-api](https://github.com/rmartin16/qbittorrent-api) from 2024.9.67 to 2024.10.68. - [Release notes](https://github.com/rmartin16/qbittorrent-api/releases) - [Changelog](https://github.com/rmartin16/qbittorrent-api/blob/main/CHANGELOG.md) - [Commits](https://github.com/rmartin16/qbittorrent-api/compare/v2024.9.67...v2024.10.68) --- updated-dependencies: - dependency-name: qbittorrent-api dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 27835433..7987c842 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,7 @@ croniter==3.0.4 GitPython==3.1.43 humanize==4.11.0 pytimeparse2==1.7.1 -qbittorrent-api==2024.9.67 +qbittorrent-api==2024.10.68 requests==2.32.3 retrying==1.3.4 ruamel.yaml==0.18.6 From 2c6b9b9a1e5ca26732dda7ae022df1b7a967bb9b Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Sat, 2 Nov 2024 17:00:07 +0000 Subject: [PATCH 04/13] Update SUPPORTED_VERSIONS.json --- SUPPORTED_VERSIONS.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SUPPORTED_VERSIONS.json b/SUPPORTED_VERSIONS.json index 8bcf3e5b..994f2b0c 100644 --- a/SUPPORTED_VERSIONS.json +++ b/SUPPORTED_VERSIONS.json @@ -4,7 +4,7 @@ "qbitapi": "2024.9.67" }, "develop": { - "qbit": "v5.0.0", - "qbitapi": "2024.9.67" + "qbit": "v5.0.1", + "qbitapi": "2024.10.68" } } From 23bc1a23244194fc800aa57da50d23904d92d4d7 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Mon, 4 Nov 2024 16:53:39 -0600 Subject: [PATCH 05/13] bump develop --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 92de62a1..a7c86821 100755 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.1.13-develop1 +4.1.13-develop2 From ed6cb083141ea66e41ad621d7b28ffd851558293 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Mon, 4 Nov 2024 20:31:26 -0600 Subject: [PATCH 06/13] (ci): add ci for version bump on develop (#688) --- .github/workflows/ci.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..94f8a0a1 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,30 @@ +name: Run Pre-Commit + +on: + pull_request: + branches: + - develop # Adjust as needed to only run on branches containing 'develop' + push: + branches: + - develop # Adjust as needed + +jobs: + pre-commit: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v3 + with: + python-version: '3.9' + + - name: Install dependencies + run: | + pip install pre-commit + + - name: Run pre-commit version check + run: | + pre-commit run increase-version --all-files From dde0d019dd6dcd5219be23016f6f7e3c66ef9ba6 Mon Sep 17 00:00:00 2001 From: bobokun Date: Tue, 5 Nov 2024 09:51:14 -0500 Subject: [PATCH 07/13] Fixes bug in torrent exporting for qbit versions under 4.5.0 --- VERSION | 2 +- modules/qbittorrent.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index a7c86821..1f81d740 100755 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.1.13-develop2 +4.1.13-develop3 diff --git a/modules/qbittorrent.py b/modules/qbittorrent.py index 62d6c430..ffab1ae4 100755 --- a/modules/qbittorrent.py +++ b/modules/qbittorrent.py @@ -447,7 +447,7 @@ def tor_delete_recycle(self, torrent, info): torrent_export_path = os.path.join(recycle_path, "torrents_export") # Exported torrent file (qbittorrent v4.5.0+) torrents_json_path = os.path.join(recycle_path, "torrents_json") torrent_name = info["torrents"][0] - torrent_exportable = self.current_version >= "4.5.0" + torrent_exportable = self.current_version >= "v4.5.0" os.makedirs(recycle_path, exist_ok=True) if self.config.recyclebin["save_torrents"]: if os.path.isdir(torrent_path) is False: From bb793c25660f8bc520a3fbf55eb994283e1955e2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 05:08:40 -0500 Subject: [PATCH 08/13] Bump actions/checkout from 3 to 4 (#690) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94f8a0a1..478b4734 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v3 From 75c047a4c6d86d0372b1c9fc6bb62c9032af7a88 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 05:08:51 -0500 Subject: [PATCH 09/13] Bump actions/setup-python from 3 to 5 (#689) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 478b4734..ca3ceefe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: '3.9' From 9a5b095d2372b3cdc475f38f3945599112fafb41 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 05:09:03 -0500 Subject: [PATCH 10/13] Bump croniter from 3.0.4 to 5.0.1 (#685) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 7987c842..bc7ae36e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ bencodepy==0.9.5 -croniter==3.0.4 +croniter==5.0.1 GitPython==3.1.43 humanize==4.11.0 pytimeparse2==1.7.1 From 8842093c2c83e19e46113199add7718716e5f01e Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 05:09:42 -0500 Subject: [PATCH 11/13] [pre-commit.ci] pre-commit autoupdate (#682) --- .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 d12bc9a1..59690a19 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -38,7 +38,7 @@ repos: name: isort (python) args: [--force-single-line-imports, --profile, black] - repo: https://github.com/asottile/pyupgrade - rev: v3.18.0 + rev: v3.19.0 hooks: - id: pyupgrade args: [--py3-plus] From 87655025a1e3190d2b0ce00702679662f76d92e0 Mon Sep 17 00:00:00 2001 From: bobokun Date: Sat, 9 Nov 2024 16:57:17 -0500 Subject: [PATCH 12/13] 4.1.13 --- CHANGELOG | 11 ++++------- VERSION | 2 +- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 63460674..a0f424fe 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,11 +1,8 @@ # Requirements Updated -humanize==4.11.0 - -# New Updates -- Adds new script to remove cross-seed tag (`scripts/remove_cross-seed_tag.py`) +croniter==5.0.1 +qbittorrent-api==2024.10.68 # Bug Fixes -- List orphaned files when reaches max threshold. (Closes #672) -- Removing empty directories now ignores exclude patterns (Closes #624) +- Fixes bug in torrent exporting for versions < 4.5.0 -**Full Changelog**: https://github.com/StuffAnThings/qbit_manage/compare/v4.1.11...v4.1.12 +**Full Changelog**: https://github.com/StuffAnThings/qbit_manage/compare/v4.1.12...v4.1.13 diff --git a/VERSION b/VERSION index 1f81d740..467d0937 100755 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.1.13-develop3 +4.1.13 From 5003c95af5617b35505b77b9095260b32408d51e Mon Sep 17 00:00:00 2001 From: bobokun <12660469+bobokun@users.noreply.github.com> Date: Sat, 9 Nov 2024 21:58:05 +0000 Subject: [PATCH 13/13] Update SUPPORTED_VERSIONS.json --- SUPPORTED_VERSIONS.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SUPPORTED_VERSIONS.json b/SUPPORTED_VERSIONS.json index 994f2b0c..c487eb18 100644 --- a/SUPPORTED_VERSIONS.json +++ b/SUPPORTED_VERSIONS.json @@ -1,7 +1,7 @@ { "master": { - "qbit": "v5.0.0", - "qbitapi": "2024.9.67" + "qbit": "v5.0.1", + "qbitapi": "2024.10.68" }, "develop": { "qbit": "v5.0.1",