Merge branch 'develop' into fix-upload-speed-limit-reached

This commit is contained in:
bobokun 2025-11-24 11:40:46 -05:00 committed by GitHub
commit 76eea80a2a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 19 additions and 19 deletions

View file

@ -35,7 +35,7 @@ jobs:
ENTRY: qbit_manage.py
steps:
- name: Check Out Repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: develop
@ -404,7 +404,7 @@ jobs:
OWNER: '${{ github.repository_owner }}'
- name: Check Out Repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: develop

View file

@ -20,7 +20,7 @@ jobs:
if: github.event_name != 'gollum'
steps:
- name: Checkout Repo
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Sync docs to wiki
uses: newrelic/wiki-sync-action@main
with:
@ -35,7 +35,7 @@ jobs:
if: github.event_name == 'gollum'
steps:
- name: Checkout Repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.PAT }} # allows us to push back to repo
ref: develop

View file

@ -24,7 +24,7 @@ jobs:
id-token: write # Required for trusted publishing to PyPI
steps:
- name: Check Out Repo
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6

View file

@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
token: ${{ secrets.PAT }}
fetch-depth: 2

View file

@ -14,7 +14,7 @@ jobs:
steps:
- name: Check Out Repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
fetch-depth: 0

View file

@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.event.inputs.targetBranch || github.ref_name }}

View file

@ -35,7 +35,7 @@ jobs:
ENTRY: qbit_manage.py
steps:
- name: Check Out Repo
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
@ -432,7 +432,7 @@ jobs:
OWNER: '${{ github.repository_owner }}'
- name: Check Out Repo
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Login to Docker Hub
uses: docker/login-action@v3
@ -502,7 +502,7 @@ jobs:
contents: write
steps:
- name: Check Out Repo
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Get the version
id: get_version

View file

@ -1,10 +1,10 @@
{
"master": {
"qbit": "v5.1.2",
"qbitapi": "2025.7.0"
"qbit": "v5.1.3",
"qbitapi": "2025.11.0"
},
"develop": {
"qbit": "v5.1.2",
"qbitapi": "2025.7.0"
"qbit": "v5.1.4",
"qbitapi": "2025.11.1"
}
}

View file

@ -1 +1 @@
4.6.4
4.6.5-develop2

View file

@ -20,11 +20,11 @@ dependencies = [
"argon2-cffi==25.1.0",
"bencodepy==0.9.5",
"croniter==6.0.0",
"fastapi==0.121.2",
"fastapi==0.121.3",
"GitPython==3.1.45",
"humanize==4.13.0",
"pytimeparse2==1.7.1",
"qbittorrent-api==2025.11.0",
"qbittorrent-api==2025.11.1",
"requests==2.32.5",
"retrying==1.4.2",
"ruamel.yaml==0.18.16",
@ -42,7 +42,7 @@ Repository = "https://github.com/StuffAnThings/qbit_manage"
[project.optional-dependencies]
dev = [
"pre-commit==4.3.0",
"ruff==0.14.5",
"ruff==0.14.6",
]
[tool.ruff]