Skip to content

Commit 46188e5

Browse files
committed
Bug 1339754 - Fix tag sorting according to semantic versioning rules
1 parent 1b04cb2 commit 46188e5

File tree

2 files changed

+39
-6
lines changed

2 files changed

+39
-6
lines changed

pkg/image/api/helper.go

+20-2
Original file line numberDiff line numberDiff line change
@@ -896,8 +896,12 @@ func LatestObservedTagGeneration(stream *ImageStream, tag string) int64 {
896896
}
897897

898898
var (
899-
reMajorSemantic = regexp.MustCompile(`^[\d]+$`)
900-
reMinorSemantic = regexp.MustCompile(`^[\d]+\.[\d]+$`)
899+
reMajorSemantic = regexp.MustCompile(`^[\d]+$`)
900+
reMinorSemantic = regexp.MustCompile(`^[\d]+\.[\d]+$`)
901+
reMajorReplacement = regexp.MustCompile(`[\d]+`)
902+
reMinorReplacement = regexp.MustCompile(`[\d]+\.[\d]+`)
903+
reMajorWithPatch = regexp.MustCompile(`^[\d]+-\w+$`)
904+
reMinorWithPatch = regexp.MustCompile(`^[\d]+\.[\d]+-\w+$`)
901905
)
902906

903907
// PrioritizeTags orders a set of image tags with a few conventions:
@@ -944,6 +948,20 @@ func PrioritizeTags(tags []string) {
944948
minor = append(minor, v)
945949
continue
946950
}
951+
case reMajorWithPatch.MatchString(short):
952+
repl := reMajorReplacement.FindString(short)
953+
if v, err = semver.Parse(strings.Replace(short, repl, repl+".0.0", 1)); err == nil {
954+
exact[v.String()] = tag
955+
major = append(major, v)
956+
continue
957+
}
958+
case reMinorWithPatch.MatchString(short):
959+
repl := reMinorReplacement.FindString(short)
960+
if v, err = semver.Parse(strings.Replace(short, repl, repl+".0", 1)); err == nil {
961+
exact[v.String()] = tag
962+
minor = append(minor, v)
963+
continue
964+
}
947965
}
948966
other = append(other, tag)
949967
}

pkg/image/api/helper_test.go

+19-4
Original file line numberDiff line numberDiff line change
@@ -1405,10 +1405,25 @@ func TestDockerImageReferenceEquality(t *testing.T) {
14051405
}
14061406

14071407
func TestPrioritizeTags(t *testing.T) {
1408-
tags := []string{"5", "other", "latest", "v5.5", "v6", "5.2.3", "v5.3.6-bother", "5.3.6-abba", "5.6"}
1409-
PrioritizeTags(tags)
1410-
if !reflect.DeepEqual(tags, []string{"latest", "v6", "5", "5.6", "v5.5", "v5.3.6-bother", "5.3.6-abba", "5.2.3", "other"}) {
1411-
t.Errorf("unexpected order: %v", tags)
1408+
tests := []struct {
1409+
tags []string
1410+
expected []string
1411+
}{
1412+
{
1413+
tags: []string{"5", "other", "latest", "v5.5", "v6", "5.2.3", "v5.3.6-bother", "5.3.6-abba", "5.6"},
1414+
expected: []string{"latest", "v6", "5", "5.6", "v5.5", "v5.3.6-bother", "5.3.6-abba", "5.2.3", "other"},
1415+
},
1416+
{
1417+
tags: []string{"1.1-beta1", "1.2-rc1", "1.1-rc1", "1.1-beta2", "1.2-beta1", "1.2-alpha1", "1.2-beta4", "latest"},
1418+
expected: []string{"latest", "1.2-rc1", "1.2-beta4", "1.2-beta1", "1.2-alpha1", "1.1-rc1", "1.1-beta2", "1.1-beta1"},
1419+
},
1420+
}
1421+
1422+
for i, tc := range tests {
1423+
PrioritizeTags(tc.tags)
1424+
if !reflect.DeepEqual(tc.tags, tc.expected) {
1425+
t.Errorf("%d: unexpected order: %v", i, tc.tags)
1426+
}
14121427
}
14131428
}
14141429

0 commit comments

Comments
 (0)