From efd4eb3e3158707ad6e2d2fac8dd8cf26f68b699 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 02:05:20 +0000 Subject: [PATCH 01/11] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [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/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1ebeab8..561768b 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Initialize CodeQL uses: github/codeql-action/init@v3 From db1fc0e9abd5353c3c23344c6e6e40cc6459aebe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 02:05:22 +0000 Subject: [PATCH 02/11] Bump python from 3.13-slim to 3.14-slim Bumps python from 3.13-slim to 3.14-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5dddd1b..79f71d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13-slim +FROM python:3.14-slim # Set environment variables to prevent interactive prompts and optimize Python ENV DEBIAN_FRONTEND=noninteractive \ From abb500ec95d2236252555d7b2f74aa916a3051fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 02:05:24 +0000 Subject: [PATCH 03/11] Bump werkzeug from 3.1.6 to 3.1.7 Bumps [werkzeug](https://github.com/pallets/werkzeug) from 3.1.6 to 3.1.7. - [Release notes](https://github.com/pallets/werkzeug/releases) - [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst) - [Commits](https://github.com/pallets/werkzeug/compare/3.1.6...3.1.7) --- updated-dependencies: - dependency-name: werkzeug dependency-version: 3.1.7 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 b4332e5..bb0198a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ flask==3.1.3 flask-login==0.6.3 flask-wtf==1.2.2 -werkzeug==3.1.6 +werkzeug==3.1.7 bcrypt==5.0.0 APScheduler==3.11.2 PyGithub==2.9.0 From 6fbc3a589ce67dc93a4f21ba5982c7b0f33df0d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 02:05:29 +0000 Subject: [PATCH 04/11] Bump requests from 2.32.5 to 2.33.0 Bumps [requests](https://github.com/psf/requests) from 2.32.5 to 2.33.0. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.32.5...v2.33.0) --- updated-dependencies: - dependency-name: requests dependency-version: 2.33.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b4332e5..ec629b3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,7 +7,7 @@ APScheduler==3.11.2 PyGithub==2.9.0 gitpython==3.1.46 python-dotenv==1.2.2 -requests==2.32.5 +requests==2.33.0 sqlalchemy==2.0.48 flask-sqlalchemy==3.1.1 wtforms==3.2.1 From c9d341a3e7aafd4418898059b54da7ffe2b0688e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 02:05:30 +0000 Subject: [PATCH 05/11] Bump github/codeql-action from 3 to 4 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3 to 4. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3...v4) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1ebeab8..a4e993b 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -22,14 +22,14 @@ jobs: uses: actions/checkout@v4 - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: python - name: Autobuild - uses: github/codeql-action/autobuild@v3 + uses: github/codeql-action/autobuild@v4 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 with: category: "/language:python" From 7e8362303eb9471dc45f337c836c18efff8b40fa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 02:05:32 +0000 Subject: [PATCH 06/11] Bump gunicorn from 25.1.0 to 25.2.0 Bumps [gunicorn](https://github.com/benoitc/gunicorn) from 25.1.0 to 25.2.0. - [Release notes](https://github.com/benoitc/gunicorn/releases) - [Commits](https://github.com/benoitc/gunicorn/compare/25.1.0...25.2.0) --- updated-dependencies: - dependency-name: gunicorn dependency-version: 25.2.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b4332e5..17f8c1e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,6 +11,6 @@ requests==2.32.5 sqlalchemy==2.0.48 flask-sqlalchemy==3.1.1 wtforms==3.2.1 -gunicorn==25.1.0 +gunicorn==25.2.0 pytz==2026.1.post1 From 9bc618df5a1035376eb9b392f6ce6416f5904dc4 Mon Sep 17 00:00:00 2001 From: Timeraider <57343973+GitTimeraider@users.noreply.github.com> Date: Sun, 29 Mar 2026 13:26:45 +0200 Subject: [PATCH 07/11] Change pull request branch to 'develop' Updated pull request branch for Docker build workflow. --- .github/workflows/docker-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 89c7617..f468b0c 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -5,7 +5,7 @@ on: branches: [ main, develop ] tags: [ 'v*' ] pull_request: - branches: [ main ] + branches: [ develop ] env: REGISTRY: ghcr.io From d1e8f2dc2736ee329df95a7b41ce1e13304374d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Apr 2026 05:16:37 +0000 Subject: [PATCH 08/11] Bump requests from 2.33.0 to 2.33.1 Bumps [requests](https://github.com/psf/requests) from 2.33.0 to 2.33.1. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.33.0...v2.33.1) --- updated-dependencies: - dependency-name: requests dependency-version: 2.33.1 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 8b52401..c18dfaf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,7 +7,7 @@ APScheduler==3.11.2 PyGithub==2.9.0 gitpython==3.1.46 python-dotenv==1.2.2 -requests==2.33.0 +requests==2.33.1 sqlalchemy==2.0.48 flask-sqlalchemy==3.1.1 wtforms==3.2.1 From f16f47312c5f1130c968cadb3e47eef66a45d2a2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Apr 2026 05:16:41 +0000 Subject: [PATCH 09/11] Bump gunicorn from 25.2.0 to 25.3.0 Bumps [gunicorn](https://github.com/benoitc/gunicorn) from 25.2.0 to 25.3.0. - [Release notes](https://github.com/benoitc/gunicorn/releases) - [Commits](https://github.com/benoitc/gunicorn/compare/25.2.0...25.3.0) --- updated-dependencies: - dependency-name: gunicorn dependency-version: 25.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 8b52401..be1abee 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,6 +11,6 @@ requests==2.33.0 sqlalchemy==2.0.48 flask-sqlalchemy==3.1.1 wtforms==3.2.1 -gunicorn==25.2.0 +gunicorn==25.3.0 pytz==2026.1.post1 From 3ba830352261a6c0634a235f6c1b99134a89a8f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Apr 2026 02:05:59 +0000 Subject: [PATCH 10/11] Bump werkzeug from 3.1.7 to 3.1.8 Bumps [werkzeug](https://github.com/pallets/werkzeug) from 3.1.7 to 3.1.8. - [Release notes](https://github.com/pallets/werkzeug/releases) - [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst) - [Commits](https://github.com/pallets/werkzeug/compare/3.1.7...3.1.8) --- updated-dependencies: - dependency-name: werkzeug dependency-version: 3.1.8 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 11b990f..026ab75 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ flask==3.1.3 flask-login==0.6.3 flask-wtf==1.2.2 -werkzeug==3.1.7 +werkzeug==3.1.8 bcrypt==5.0.0 APScheduler==3.11.2 PyGithub==2.9.0 From 883d11c0599b28ea644ddeaa880c15abaeeb2878 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Apr 2026 02:06:08 +0000 Subject: [PATCH 11/11] Bump sqlalchemy from 2.0.48 to 2.0.49 Bumps [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) from 2.0.48 to 2.0.49. - [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases) - [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/main/CHANGES.rst) - [Commits](https://github.com/sqlalchemy/sqlalchemy/commits) --- updated-dependencies: - dependency-name: sqlalchemy dependency-version: 2.0.49 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 11b990f..1c9247e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,7 @@ PyGithub==2.9.0 gitpython==3.1.46 python-dotenv==1.2.2 requests==2.33.1 -sqlalchemy==2.0.48 +sqlalchemy==2.0.49 flask-sqlalchemy==3.1.1 wtforms==3.2.1 gunicorn==25.3.0