@@ -858,17 +858,17 @@ func LatestObservedTagGeneration(stream *ImageStream, tag string) int64 {
858
858
}
859
859
860
860
var (
861
- reMajorSemantic = regexp .MustCompile (`^[\d]+$` )
862
- reMinorSemantic = regexp .MustCompile (`^[\d]+\.[\d]+$` )
861
+ reMinorSemantic = regexp .MustCompile (`^[\d]+\.[\d]+$` )
862
+ reMinorReplacement = regexp .MustCompile (`[\d]+\.[\d]+` )
863
+ reMinorWithPatch = regexp .MustCompile (`^[\d]+\.[\d]+-\w+$` )
863
864
)
864
865
865
866
// PrioritizeTags orders a set of image tags with a few conventions:
866
867
//
867
868
// 1. the "latest" tag, if present, should be first
868
- // 2. any tags that represent a semantic major version ("5", "v5") should be next, in descending order
869
- // 3. any tags that represent a semantic minor version ("5.1", "v5.1") should be next, in descending order
870
- // 4. any tags that represent a full semantic version ("5.1.3-other", "v5.1.3-other") should be next, in descending order
871
- // 5. any remaining tags should be sorted in lexicographic order
869
+ // 2. any tags that represent a semantic minor version ("5.1", "v5.1", "v5.1-rc1") should be next, in descending order
870
+ // 3. any tags that represent a full semantic version ("5.1.3-other", "v5.1.3-other") should be next, in descending order
871
+ // 4. any remaining tags should be sorted in lexicographic order
872
872
//
873
873
// The method updates the tags in place.
874
874
func PrioritizeTags (tags []string ) {
@@ -884,7 +884,7 @@ func PrioritizeTags(tags []string) {
884
884
}
885
885
886
886
exact := make (map [string ]string )
887
- var major , minor , micro semver.Versions
887
+ var minor , micro semver.Versions
888
888
other := make ([]string , 0 , len (remaining ))
889
889
for _ , tag := range remaining {
890
890
short := strings .TrimLeft (tag , "v" )
@@ -894,28 +894,25 @@ func PrioritizeTags(tags []string) {
894
894
exact [v .String ()] = tag
895
895
micro = append (micro , v )
896
896
continue
897
- case reMajorSemantic .MatchString (short ):
898
- if v , err = semver .Parse (short + ".0.0 " ); err == nil {
897
+ case reMinorSemantic .MatchString (short ):
898
+ if v , err = semver .Parse (short + ".0" ); err == nil {
899
899
exact [v .String ()] = tag
900
- major = append (major , v )
900
+ minor = append (minor , v )
901
901
continue
902
902
}
903
- case reMinorSemantic .MatchString (short ):
904
- if v , err = semver .Parse (short + ".0" ); err == nil {
903
+ case reMinorWithPatch .MatchString (short ):
904
+ repl := reMinorReplacement .FindString (short )
905
+ if v , err = semver .Parse (strings .Replace (short , repl , repl + ".0" , 1 )); err == nil {
905
906
exact [v .String ()] = tag
906
907
minor = append (minor , v )
907
908
continue
908
909
}
909
910
}
910
911
other = append (other , tag )
911
912
}
912
- sort .Sort (sort .Reverse (major ))
913
913
sort .Sort (sort .Reverse (minor ))
914
914
sort .Sort (sort .Reverse (micro ))
915
915
sort .Sort (sort .StringSlice (other ))
916
- for _ , v := range major {
917
- finalTags = append (finalTags , exact [v .String ()])
918
- }
919
916
for _ , v := range minor {
920
917
finalTags = append (finalTags , exact [v .String ()])
921
918
}
0 commit comments