2020-07-31 20:52:49 +00:00
|
|
|
package proxysupport
|
|
|
|
|
|
|
|
// EnvoyVersions lists the latest officially supported versions of envoy.
|
|
|
|
//
|
2020-08-26 15:04:11 +00:00
|
|
|
// This list must be sorted by semver descending. Only one point release for
|
|
|
|
// each major release should be present.
|
|
|
|
//
|
2020-07-31 20:52:49 +00:00
|
|
|
// see: https://www.consul.io/docs/connect/proxies/envoy#supported-versions
|
|
|
|
var EnvoyVersions = []string{
|
2021-10-28 01:38:10 +00:00
|
|
|
"1.20.0",
|
2021-09-21 22:39:36 +00:00
|
|
|
"1.19.1",
|
2021-08-31 16:39:18 +00:00
|
|
|
"1.18.4",
|
|
|
|
"1.17.4",
|
2020-07-31 20:52:49 +00:00
|
|
|
}
|