Skip to content

Commit

Permalink
fix(kuma-cp): add latest version to compat matrix (#4232) (#4249)
Browse files Browse the repository at this point in the history
* fix(kuma-cp): add latest version to compat matrix

Co-authored-by: Mike Beaumont <mjboamail@gmail.com>
Signed-off-by: Paul Parkanzky <paul.parkanzky@konghq.com>
(cherry picked from commit 1cde04b)
Signed-off-by: Paul Parkanzky <paul.parkanzky@konghq.com>

Co-authored-by: Paul A. Parkanzky <42279121+parkanzky@users.noreply.github.com>
Co-authored-by: Mike Beaumont <mjboamail@gmail.com>
  • Loading branch information
3 people authored May 5, 2022
1 parent fe3d9c7 commit 51582ed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion pkg/api-server/testdata/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@
"~1.5.0": {
"envoy": "~1.21.1"
},
"~1.5.1-anyprerelease": {
"~1.6.0": {
"envoy": "~1.21.1"
},
"~1.6.1-anyprerelease": {
"envoy": "~1.21.1"
}
}
Expand Down
9 changes: 6 additions & 3 deletions pkg/version/compatibility.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,13 @@ var CompatibilityMatrix = Compatibility{
"~1.5.0": {
Envoy: "~1.21.1",
},
"~1.6.0": {
Envoy: "~1.21.1",
},
// This includes all dev versions branched from the first release
// candidate (i.e. both master and release-1.4)
// and all 1.4 releases and RCs. See Masterminds/semver#21
"~1.5.1-anyprerelease": {
// candidate (i.e. both master and release-1.x)
// and all 1.x releases and RCs. See Masterminds/semver#21
"~1.6.1-anyprerelease": {
Envoy: "~1.21.1",
},
},
Expand Down

0 comments on commit 51582ed

Please sign in to comment.