From 4cfa61f1c0d71049ee142f721d895c3873598ee9 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 3 Jun 2026 08:27:12 +0000 Subject: [PATCH 1/3] Add renovate.json --- renovate.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..7190a60 --- /dev/null +++ b/renovate.json @@ -0,0 +1,3 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json" +} From 28a0916487a572b537c90172f9592a4ea74b2178 Mon Sep 17 00:00:00 2001 From: Arthur Erlich Date: Wed, 3 Jun 2026 10:37:49 +0200 Subject: [PATCH 2/3] chore(renovate): pinned shymfony version, seperated major and minor. removed major upgrades --- renovate.json | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index 7190a60..24a25c3 100644 --- a/renovate.json +++ b/renovate.json @@ -1,3 +1,22 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json" -} + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ], + "separateMajorMinor": true, + "major": { + "enabled": false + }, + "packageRules": [ + { + "matchPackagePatterns": ["^symfony/"], + "allowedVersions": "^7.0", + "description": "Keep Symfony on 7.x LTS until EOL" + }, + { + "matchPackageNames": ["phpunit/phpunit"], + "allowedVersions": "^12.0", + "description": "Stay on PHPUnit 12.x (compatible with Symfony 7 / PHP 8.2+)" + } + ] +} \ No newline at end of file From 169fa8c76ade8feac8811994c455a34099ba9ef2 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 3 Jun 2026 22:29:25 +0000 Subject: [PATCH 3/3] chore(config): migrate config renovate.json --- renovate.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/renovate.json b/renovate.json index 24a25c3..3888e02 100644 --- a/renovate.json +++ b/renovate.json @@ -9,9 +9,11 @@ }, "packageRules": [ { - "matchPackagePatterns": ["^symfony/"], "allowedVersions": "^7.0", - "description": "Keep Symfony on 7.x LTS until EOL" + "description": "Keep Symfony on 7.x LTS until EOL", + "matchPackageNames": [ + "/^symfony//" + ] }, { "matchPackageNames": ["phpunit/phpunit"], @@ -19,4 +21,4 @@ "description": "Stay on PHPUnit 12.x (compatible with Symfony 7 / PHP 8.2+)" } ] -} \ No newline at end of file +}