mirror of
https://github.com/status-im/consul.git
synced 2025-01-23 20:19:29 +00:00
f5e62f1d1b
also backport of a portion of c599a2f5f411a5820b7f0b9b126e2d2270ba3a67 from #8424
15 lines
372 B
Go
15 lines
372 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.14.2",
|
|
"1.13.2",
|
|
"1.12.4",
|
|
"1.11.2",
|
|
}
|