From 182b2cfee6accae9224b0f5ea51ecca6271da23d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Mon, 6 May 2024 15:42:45 +0200 Subject: [PATCH] Fix issue: Use matchDepNames instead of matchPackageNames --- .github/renovate.json5 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index df4153cda..c1d78c602 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -37,17 +37,17 @@ }, { matchDatasources: ['docker'], - matchPackageNames: ['camptocamp/mapserver'], + matchDepNames: ['camptocamp/mapserver'], versioning: 'regex:^(?\\d+)\\.(?\\d+)$', }, { matchDatasources: ['docker'], - matchPackageNames: ['redis'], + matchDepNames: ['redis'], versioning: 'regex:^(?\\d+)\\.(?\\d+)\\.(?\\d+)$', }, { matchDatasources: ['docker'], - matchPackageNames: ['ghcr.io/osgeo/gdal'], + matchDepNames: ['ghcr.io/osgeo/gdal'], versioning: 'regex:^(?.*)-(?\\d+)\\.(?\\d+)\\.(?\\d+)?$', }, /** Automerge the patch, the minor and the dev dependency */ @@ -74,7 +74,7 @@ }, /** Group Poetry packages */ { - matchPackageNames: ['poetry', 'pip'], + matchDepNames: ['poetry', 'pip'], matchPackagePrefixes: ['poetry-'], groupName: 'Poetry', automerge: true, @@ -88,24 +88,24 @@ /** Disable upgrading the supported Python version */ { matchFileNames: ['pyproject.toml'], - matchPackageNames: ['python'], + matchDepNames: ['python'], enabled: false, }, /** Only LTS version of Node */ { allowedVersions: '/(0|2|4|6|8)$/', - matchPackageNames: ['node'], + matchDepNames: ['node'], enabled: false, }, /** Disable types-request update on version <= 1.20 */ { - matchPackageNames: ['types-requests'], + matchDepNames: ['types-requests'], matchBaseBranches: ['1.17', '1.18', '1.19', '1.20'], enabled: false, }, /** Support the 4 parts of shellcheck-py version with a v prefix */ { - matchPackageNames: ['shellcheck-py/shellcheck-py'], + matchDepNames: ['shellcheck-py/shellcheck-py'], versioning: 'regex:^v(?\\d+)\\.(?\\d+)\\.(?\\d+)\\.(?\\d+)$', }, /** Group and auto merge the CI dependencies */