Skip to content
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

Bug 1339754 - Fix tag sorting according to semantic versioning rules #9600

Merged
merged 1 commit into from
Nov 21, 2016

Conversation

soltysh
Copy link
Contributor

@soltysh soltysh commented Jun 28, 2016

Partially fixes bug 1339754 in that it correctly reads patch part from non-full versions (eg. 1.1-beta1).

@smarterclayton ptal and help me understand why our current sorting algorithm prefers 9.5 over 9.5.1. I know the former isn't fully specified semver but since we're expanding it to make it through semver parsing why not sorting it accordingly?
I'd love to live in a perfect world, but we're not and we need to deal with problems as such from the bug I'm trying to solve. Although that bug is too far from semver we support.

@@ -944,6 +948,20 @@ func PrioritizeTags(tags []string) {
minor = append(minor, v)
continue
}
case reMajorWithPatch.MatchString(short):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

semver.GT doesn't cut it?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

semver is only capable of working with fully specified version string iow. x.y.z with or without -patch part.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

semver is only capable of working with fully specified version string iow. x.y.z with or without -patch part.

You're saying their Parse is broken? That seems like the place to fix it.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not quite, they're stating to be compliant with semver.org which specifically says A normal version number MUST take the form X.Y.Z. The problem is we will deal with all sorts of version schemes, see for example the enclosed bug which uses 9.4-6, 9.4-6.1, 9.4-6.2, 9.4-6.4 which won't work not even with this patch :/ But it's almost impossible to support all possible versioning scheme. "Fixing" those missing Y or Z part is doable and we already are doing that. What I'm more worried here is that additionally we'll sort 9 < 9.4 < 9.4.1 due to the split, which worries me the most.

@soltysh
Copy link
Contributor Author

soltysh commented Jul 20, 2016

@smarterclayton bump

@@ -896,8 +896,12 @@ func LatestObservedTagGeneration(stream *ImageStream, tag string) int64 {
}

var (
reMajorSemantic = regexp.MustCompile(`^[\d]+$`)
reMinorSemantic = regexp.MustCompile(`^[\d]+\.[\d]+$`)
reMajorSemantic = regexp.MustCompile(`^[\d]+$`)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this is that important to support.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're suggesting supporting only x.y and ignore all the rest?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The goal was to select only a subset - something realistic, but not be slavish on it. 9-9 doesn't really mean anything, 9.2-5 kind of means something, 9.3.5-6 is generally accepted to mean something. So only supporting minor with dash is probably ok, but even then, that's not full semantic versioning. I'd say x.y- and x.y.z-w are reasonable, the others are not.

Also, sorting order is really undefined on sub tags (rc1 is only coincidentally sorted above alpha1, so frankly i'm a little skeptical that we should let those be prioritized in numeric order).

@smarterclayton
Copy link
Contributor

I'm not really that interested in supporting non-semver. My opinion of the bug is that it's nice, but not supported.

@smarterclayton
Copy link
Contributor

As in, when I originally did this I intentionally excluded non-semver.

@soltysh
Copy link
Contributor Author

soltysh commented Jul 20, 2016

@smarterclayton you are supporting partially semver, you're suggesting to drop it entirely?

@soltysh
Copy link
Contributor Author

soltysh commented Jul 20, 2016

Discussed on IRC, the final saying is, quoting @smarterclayton:

i'm ok with doing a bit of ordering for the following schemes
v0.0.0
0.0.0
0.0.0-...
0.0
v0.0
0.0-...
that's it (and the existing pure number sort)

@soltysh
Copy link
Contributor Author

soltysh commented Jul 25, 2016

Updated to satisfy previous comments. @smarterclayton good to merge?

@soltysh
Copy link
Contributor Author

soltysh commented Sep 20, 2016

@smarterclayton ping?

@soltysh
Copy link
Contributor Author

soltysh commented Oct 21, 2016

@smarterclayton if I hear no objections I'd like to merge it later today

@sferich888
Copy link
Contributor

@smarterclayton @soltysh do we have any updates on this, it looks like this can be merged?

@soltysh soltysh added this to the 1.5.0 milestone Nov 14, 2016
@soltysh
Copy link
Contributor Author

soltysh commented Nov 14, 2016

@sferich888 I think we can safely merge it, but only when 1.5 merge queue opens.

@soltysh
Copy link
Contributor Author

soltysh commented Nov 21, 2016

[merge]

@soltysh
Copy link
Contributor Author

soltysh commented Nov 21, 2016

Rebased and fixed the test, should be good to merge.

@openshift-bot
Copy link
Contributor

openshift-bot commented Nov 21, 2016

continuous-integration/openshift-jenkins/merge SUCCESS (https://ci.openshift.redhat.com/jenkins/job/test_pr_origin/11608/) (Image: devenv-rhel7_5394)

@soltysh
Copy link
Contributor Author

soltysh commented Nov 21, 2016

Fixed another test in integration.

@openshift-bot
Copy link
Contributor

Evaluated for origin merge up to bff7cab

@openshift-bot
Copy link
Contributor

[Test]ing while waiting on the merge queue

@openshift-bot
Copy link
Contributor

Evaluated for origin test up to bff7cab

@openshift-bot
Copy link
Contributor

continuous-integration/openshift-jenkins/test SUCCESS (https://ci.openshift.redhat.com/jenkins/job/test_pr_origin/11608/) (Base Commit: 1f1e6de)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants