-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
constraint Parser Error #34
Comments
There is no rule about digit length. In this case the pre-release would be |
A PR was started in #35 |
mattfarina
added a commit
that referenced
this issue
Dec 13, 2016
Fixed #34: Simple range syntax requires a space
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've encountered the following issue by way of specifying a 'pre-release' Helm chart version dependency.
When specifying a chart version of, say,
v2.3.5-sha.20d586f
, it is happily parsed/constrained by this package and Helm is happy as well.However, when adding a timestamp, resulting in a chart version of
v2.3.5-20161202202307-sha.e8fc5e5
, this package returns aconstraint Parser Error
from the following logic.In local testing,
semver.NewConstraint()
seems to allow up to 10 digits for the timestamp without throwing this particular error -- is there a semver rule that is being broken here in using >10 digits (14 to be precise)? Or, might this be an addressable parsing issue in this package?The text was updated successfully, but these errors were encountered: