From 1d43b81309524c8bb3e756be01693b6efb82a797 Mon Sep 17 00:00:00 2001 From: Timeraider <57343973+GitTimeraider@users.noreply.github.com> Date: Tue, 5 Aug 2025 11:20:11 +0200 Subject: [PATCH 1/6] Update dependabot.yml --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c6d89a6..b394a29 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,13 +4,16 @@ updates: directory: "/" schedule: interval: "weekly" + target-branch: "dev" - package-ecosystem: "docker" directory: "/" schedule: interval: "weekly" + target-branch: "dev" - package-ecosystem: "github-actions" directory: "/" schedule: interval: "weekly" + target-branch: "dev" From f93cf55c8f81625df6ebebd0fa64267193654f97 Mon Sep 17 00:00:00 2001 From: Timeraider <57343973+GitTimeraider@users.noreply.github.com> Date: Tue, 5 Aug 2025 11:21:35 +0200 Subject: [PATCH 2/6] Update dependabot.yml From 2875a0df6caf17d199a7d94f440088ddbc029c48 Mon Sep 17 00:00:00 2001 From: Timeraider <57343973+GitTimeraider@users.noreply.github.com> Date: Tue, 5 Aug 2025 11:28:03 +0200 Subject: [PATCH 3/6] Update dependabot.yml --- .github/dependabot.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b394a29..c6d89a6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,16 +4,13 @@ updates: directory: "/" schedule: interval: "weekly" - target-branch: "dev" - package-ecosystem: "docker" directory: "/" schedule: interval: "weekly" - target-branch: "dev" - package-ecosystem: "github-actions" directory: "/" schedule: interval: "weekly" - target-branch: "dev" From 88631b8cc42912aeb3000ea91d8b981ee817d2a6 Mon Sep 17 00:00:00 2001 From: Timeraider <57343973+GitTimeraider@users.noreply.github.com> Date: Tue, 5 Aug 2025 11:31:38 +0200 Subject: [PATCH 4/6] Update requirements.txt --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 458dc05..cd64b35 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,4 +7,4 @@ pyotp==2.9.0 qrcode==8.2 pillow==11.3.0 requests==2.32.4 -cryptography==41.0.3 +cryptography>=43.0.1 From 449865da446c469515df685d1f20bbb87e2f168f Mon Sep 17 00:00:00 2001 From: Timeraider <57343973+GitTimeraider@users.noreply.github.com> Date: Tue, 5 Aug 2025 11:35:02 +0200 Subject: [PATCH 5/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 57cbd8c..a88d38a 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # DirectAdmin Email Forwarder Manager [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) -[![Python 3.11](https://img.shields.io/badge/python-3.11-blue.svg)](https://www.python.org/downloads/) +[![Python 3.11](https://img.shields.io/badge/python-3.13-blue.svg)](https://www.python.org/downloads/) A Dockerized secure web application for managing email forwarders through the DirectAdmin API. Features a clean web interface with authentication, 2FA support, user management options. From 0a78fde35893cdb9407d93884755cf0993037669 Mon Sep 17 00:00:00 2001 From: Timeraider <57343973+GitTimeraider@users.noreply.github.com> Date: Tue, 5 Aug 2025 11:43:19 +0200 Subject: [PATCH 6/6] Potential fix for code scanning alert no. 15: Flask app is run in debug mode Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 399b416..5190f22 100644 --- a/app/main.py +++ b/app/main.py @@ -360,4 +360,4 @@ def create_admin(): app = create_app() if __name__ == '__main__': - app.run(host='0.0.0.0', port=5000, debug=True) + app.run(host='0.0.0.0', port=5000)