From 2dd93d8d681a5b017d36b0907aeebfb016ed989a Mon Sep 17 00:00:00 2001 From: Stefan Koelle Date: Mon, 10 Aug 2026 19:52:58 +0200 Subject: [PATCH] chore: update dependencies and add Renovate config --- renovate.json | 26 ++++++++++++++++++++++++++ requirements.txt | 18 +++++++++--------- 2 files changed, 35 insertions(+), 9 deletions(-) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..9963872 --- /dev/null +++ b/renovate.json @@ -0,0 +1,26 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "schedule": ["before 6am on Monday"], + "packageRules": [ + { + "matchUpdateTypes": ["minor", "patch"], + "automerge": true + }, + { + "matchUpdateTypes": ["major"], + "automerge": false, + "labels": ["major-update"] + }, + { + "matchManagers": ["github-actions"], + "groupName": "GitHub Actions", + "automerge": true + }, + { + "matchManagers": ["dockerfile"], + "groupName": "Docker", + "automerge": false + } + ] +} diff --git a/requirements.txt b/requirements.txt index c5a0b78..201c62d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,10 @@ -requests==2.32.3 -vobject==0.9.6.1 -PyMySQL==1.1.1 -lxml==5.3.0 -python-dotenv==1.0.1 -fastapi==0.115.0 -uvicorn[standard]==0.32.0 -jinja2==3.1.4 -pydantic==2.9.2 +requests==2.34.2 +vobject==0.9.9 +PyMySQL==1.2.0 +lxml==5.4.0 +python-dotenv==1.2.2 +fastapi==0.141.1 +uvicorn[standard]==0.52.1 +jinja2==3.1.6 +pydantic==2.13.4 itsdangerous==2.2.0