2020-08-27 16:33:33 +00:00
|
|
|
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{
|
2021-02-10 19:11:51 +00:00
|
|
|
"1.14.6",
|
|
|
|
"1.13.7",
|
2020-10-22 18:26:51 +00:00
|
|
|
"1.12.7",
|
2020-08-27 16:33:33 +00:00
|
|
|
"1.11.2",
|
|
|
|
}
|