Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/13434.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:improvement
connect: Update supported Envoy versions to 1.20.4, 1.19.5, 1.18.6, 1.17.4
```
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -847,15 +847,15 @@ jobs:
environment:
ENVOY_VERSION: "1.18.6"

envoy-integration-test-1_19_3:
envoy-integration-test-1_19_5:
<<: *ENVOY_TESTS
environment:
ENVOY_VERSION: "1.19.3"
ENVOY_VERSION: "1.19.5"

envoy-integration-test-1_20_2:
envoy-integration-test-1_20_4:
<<: *ENVOY_TESTS
environment:
ENVOY_VERSION: "1.20.2"
ENVOY_VERSION: "1.20.4"

# run integration tests for the connect ca providers
test-connect-ca-providers:
Expand Down Expand Up @@ -1092,10 +1092,10 @@ workflows:
- envoy-integration-test-1_18_6:
requires:
- dev-build
- envoy-integration-test-1_19_3:
- envoy-integration-test-1_19_5:
requires:
- dev-build
- envoy-integration-test-1_20_2:
- envoy-integration-test-1_20_4:
requires:
- dev-build
- noop
Expand Down
4 changes: 2 additions & 2 deletions agent/xds/envoy_versioning_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ func TestDetermineSupportedProxyFeaturesFromString(t *testing.T) {
}}
}
for _, v := range []string{
"1.19.0", "1.19.1", "1.19.2", "1.19.3",
"1.20.0", "1.20.1", "1.20.2",
"1.19.0", "1.19.1", "1.19.2", "1.19.3", "1.19.4", "1.19.5",
"1.20.0", "1.20.1", "1.20.2", "1.20.3", "1.20.4",
} {
cases[v] = testcase{expect: supportedProxyFeatures{}}
}
Expand Down
4 changes: 2 additions & 2 deletions agent/xds/proxysupport/proxysupport.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ package proxysupport
//
// see: https://www.consul.io/docs/connect/proxies/envoy#supported-versions
var EnvoyVersions = []string{
"1.20.2",
"1.19.3",
"1.20.4",
"1.19.5",
"1.18.6",
"1.17.4",
}
2 changes: 1 addition & 1 deletion test/integration/connect/envoy/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readonly HASHICORP_DOCKER_PROXY="docker.mirror.hashicorp.services"
DEBUG=${DEBUG:-}

# ENVOY_VERSION to run each test against
ENVOY_VERSION=${ENVOY_VERSION:-"1.20.2"}
ENVOY_VERSION=${ENVOY_VERSION:-"1.20.4"}
export ENVOY_VERSION

export DOCKER_BUILDKIT=1
Expand Down
2 changes: 1 addition & 1 deletion website/content/docs/connect/proxies/envoy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Consul supports **four major Envoy releases** at the beginning of each major Con

| Consul Version | Compatible Envoy Versions |
| ------------------- | -----------------------------------------------------------------------------------|
| 1.11.x | 1.20.2, 1.19.3, 1.18.6, 1.17.4<sup>1</sup> |
| 1.11.x | 1.20.4, 1.19.5, 1.18.6, 1.17.4<sup>1</sup> |
| 1.10.x | 1.18.6, 1.17.4<sup>1</sup>, 1.16.5<sup>1</sup> , 1.15.5<sup>1</sup> |
| 1.9.x | 1.16.5<sup>1</sup>, 1.15.5<sup>1</sup>, 1.14.7<sup>1,2</sup>, 1.13.7<sup>1,2</sup> |

Expand Down