Skip to content

Commit

Permalink
Merge pull request #2306 from camptocamp/renovate-fix
Browse files Browse the repository at this point in the history
Fix issue: Use matchDepNames instead of matchPackageNames
  • Loading branch information
sbrunner authored May 6, 2024
2 parents 8dd0f60 + 182b2cf commit f6fe7c8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@
},
{
matchDatasources: ['docker'],
matchPackageNames: ['camptocamp/mapserver'],
matchDepNames: ['camptocamp/mapserver'],
versioning: 'regex:^(?<major>\\d+)\\.(?<minor>\\d+)$',
},
{
matchDatasources: ['docker'],
matchPackageNames: ['redis'],
matchDepNames: ['redis'],
versioning: 'regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)$',
},
{
matchDatasources: ['docker'],
matchPackageNames: ['ghcr.io/osgeo/gdal'],
matchDepNames: ['ghcr.io/osgeo/gdal'],
versioning: 'regex:^(?<compatibility>.*)-(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)?$',
},
/** Automerge the patch, the minor and the dev dependency */
Expand All @@ -74,7 +74,7 @@
},
/** Group Poetry packages */
{
matchPackageNames: ['poetry', 'pip'],
matchDepNames: ['poetry', 'pip'],
matchPackagePrefixes: ['poetry-'],
groupName: 'Poetry',
automerge: true,
Expand All @@ -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(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)\\.(?<build>\\d+)$',
},
/** Group and auto merge the CI dependencies */
Expand Down

0 comments on commit f6fe7c8

Please sign in to comment.