feat(workarounds): add node docker versioning template (#26059)

This commit is contained in:
Philipp 2023-12-01 11:01:58 +01:00 committed by GitHub
parent c11037b299
commit e9ee32e84f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,6 +13,7 @@ export const presets: Record<string, Preset> = {
'workarounds:ignoreWeb3jCoreWithOldReleaseTimestamp',
'workarounds:ignoreHttp4sDigestMilestones',
'workarounds:typesNodeVersioning',
'workarounds:nodeDockerVersioning',
'workarounds:reduceRepologyServerLoad',
'workarounds:doNotUpgradeFromAlpineStableToEdge',
'workarounds:supportRedHatImageVersion',
@ -137,6 +138,13 @@ export const presets: Record<string, Preset> = {
},
],
},
nodeDockerVersioning: {
description: 'Use node versioning for `node` docker images.',
matchDatasources: ['docker'],
matchPackageNames: ['node'],
versionCompatibility: '^(?<version>[^-]+)(?<compatibility>-.*)?$',
versioning: 'node',
},
reduceRepologyServerLoad: {
description:
'Limit requests to reduce load on Repology servers until we can fix this properly, see issue `#10133`.',