2020-07-31 15:52:49 -05:00
|
|
|
package proxysupport
|
|
|
|
|
|
|
|
// EnvoyVersions lists the latest officially supported versions of envoy.
|
|
|
|
//
|
2020-08-26 10:04:11 -05:00
|
|
|
// This list must be sorted by semver descending. Only one point release for
|
|
|
|
// each major release should be present.
|
|
|
|
//
|
2020-07-31 15:52:49 -05:00
|
|
|
// see: https://www.consul.io/docs/connect/proxies/envoy#supported-versions
|
|
|
|
var EnvoyVersions = []string{
|
2021-08-31 10:39:18 -06:00
|
|
|
"1.18.4",
|
|
|
|
"1.17.4",
|
|
|
|
"1.16.5",
|
2021-05-12 14:06:06 -05:00
|
|
|
"1.15.5",
|
2021-04-29 15:22:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
var EnvoyVersionsV2 = []string{
|
2021-08-31 10:39:18 -06:00
|
|
|
"1.16.5",
|
2021-05-12 14:06:06 -05:00
|
|
|
"1.15.5",
|
2020-07-31 15:52:49 -05:00
|
|
|
}
|