8ea4c482b3
Related changes: - hard-fail the xDS connection attempt if the envoy version is known to be too old to be supported - remove the RouterMatchSafeRegex proxy feature since all supported envoy versions have it - stop using --max-obj-name-len (due to: envoyproxy/envoy#11740)
12 lines
251 B
Go
12 lines
251 B
Go
package proxysupport
|
|
|
|
// EnvoyVersions lists the latest officially supported versions of envoy.
|
|
//
|
|
// see: https://www.consul.io/docs/connect/proxies/envoy#supported-versions
|
|
var EnvoyVersions = []string{
|
|
"1.15.0",
|
|
"1.14.4",
|
|
"1.13.4",
|
|
"1.12.6",
|
|
}
|