WhiteSource Renovate App
GitHub.com
...
{
"datasource": "nuget",
"depType": "nuget",
"depName": "AWSSDK.Core",
"currentValue": "3.3.101.15",
"skipReason": "not-a-version",
"depIndex": 0,
"updates": []
},
...
Click here to view the full job logs.
NuGet packages from AWS does not adhere to semver, e.g. the latest version of AWSSDK.Core is 3.5.1.40. I thought I could solve this using versioning in a package rules, but it seems that the versioning configuration is ignored. I think I'm lacking some kind of configuration. This is my renovate.json.
{
"fileName": "renovate.json",
"config": {
"extends": ["github>FantasticFiasco/renovate-config"],
"packageRules": [
{
"packagePatterns": ["^@aws-cdk", "^aws-cdk"],
"groupName": "AWS CDK packages"
},
{
"packageNames": ["AWSSDK.Core", "AWSSDK.S3", "AWSSDK.SecurityToken"],
"versioning": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)\\.(?<prerelease>.*)$"
}
]
}
}
Do you see an obvious configuration error here?
Doesn't seem to be a config problem, I think we need to fix the nuget extract so that doesn't add that skip version value. Will need a code inspection to confirm
:tada: This issue has been resolved in version 23.86.1 :tada:
The release is available on:
23.86.1Your semantic-release bot :package::rocket:
Thanks for the fix, keep up the good work!