You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
upstream uses a mix of dots and dashes in their versions (otherwise following semver): ${major}.${minor}-${bugfix}.
though sometimes tags also use a more traditional ${major}.${minor}.${bugfix}.
Using a simple tag-pattern: "^([\\d.-]+)$", results in errors like:
: Can't compare 0.10.0 and 0.10-1: '<' not supported between instances of 'int' and 'str'
since only a single capture group in the regex is allowed: is there a way to mangle the version string in the regex (so i could replace all dashes with periods?
The text was updated successfully, but these errors were encountered:
Assuming this is a GitHub repo you're pulling from – or some other forge that has a REST API – you may have more luck using the JSON checker. Can you share the module in question?
upstream uses a mix of dots and dashes in their versions (otherwise following semver):
${major}.${minor}-${bugfix}
.though sometimes tags also use a more traditional
${major}.${minor}.${bugfix}
.Using a simple
tag-pattern: "^([\\d.-]+)$"
, results in errors like:since only a single capture group in the regex is allowed: is there a way to mangle the version string in the regex (so i could replace all dashes with periods?
The text was updated successfully, but these errors were encountered: