20 lines
429 B
Go
20 lines
429 B
Go
package proxysupport
|
|
|
|
// EnvoyVersions lists the latest officially supported versions of envoy.
|
|
//
|
|
// This list must be sorted by semver descending. Only one point release for
|
|
// each major release should be present.
|
|
//
|
|
// see: https://www.consul.io/docs/connect/proxies/envoy#supported-versions
|
|
var EnvoyVersions = []string{
|
|
"1.18.2",
|
|
"1.17.2",
|
|
"1.16.3",
|
|
"1.15.4",
|
|
}
|
|
|
|
var EnvoyVersionsV2 = []string{
|
|
"1.16.3",
|
|
"1.15.4",
|
|
}
|