Skip to content
Snippets Groups Projects
Unverified Commit 2d7a0dad authored by Sergei Zharinov's avatar Sergei Zharinov Committed by GitHub
Browse files

fix(sbt): Ignore http4s digest-based milestone releases (#8282)

parent ed892071
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ export const presets: Record<string, Preset> = { ...@@ -9,6 +9,7 @@ export const presets: Record<string, Preset> = {
'workarounds:mavenCommonsAncientVersion', 'workarounds:mavenCommonsAncientVersion',
'workarounds:ignoreSbtLatestIntegration', 'workarounds:ignoreSbtLatestIntegration',
'workarounds:ignoreSpringCloudNumeric', 'workarounds:ignoreSpringCloudNumeric',
'workarounds:ignoreHttp4sDigestMilestones',
], ],
}, },
mavenCommonsAncientVersion: { mavenCommonsAncientVersion: {
...@@ -40,4 +41,14 @@ export const presets: Record<string, Preset> = { ...@@ -40,4 +41,14 @@ export const presets: Record<string, Preset> = {
}, },
], ],
}, },
ignoreHttp4sDigestMilestones: {
description: 'Ignore http4s digest-based 1.x milestones',
packageRules: [
{
managers: ['sbt'],
packagePatterns: ['^org\\.http4s:'],
allowedVersions: `!/^1\\.0-\\d+-[a-fA-F0-9]{7}$/`,
},
],
},
}; };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment