Skip to content

Commit

Permalink
Merge pull request #11115 from hashicorp/eculver/envoy-1.19.1
Browse files Browse the repository at this point in the history
Add support for Envoy 1.19.1
  • Loading branch information
eculver authored Oct 4, 2021
2 parents 9b1d268 + df4bc6a commit c774721
Show file tree
Hide file tree
Showing 218 changed files with 40 additions and 724 deletions.
3 changes: 3 additions & 0 deletions .changelog/11115.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.19.1, 1.18.4, 1.17.4, 1.16.5
```
8 changes: 8 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -859,6 +859,11 @@ jobs:
environment:
ENVOY_VERSION: "1.18.4"

envoy-integration-test-1_19_1:
<<: *ENVOY_TESTS
environment:
ENVOY_VERSION: "1.19.1"

# run integration tests for the connect ca providers
test-connect-ca-providers:
docker:
Expand Down Expand Up @@ -1117,6 +1122,9 @@ workflows:
- envoy-integration-test-1_18_4:
requires:
- dev-build
- envoy-integration-test-1_19_1:
requires:
- dev-build

website:
unless: << pipeline.parameters.trigger-load-test >>
Expand Down
1 change: 1 addition & 0 deletions agent/xds/envoy_versioning_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ func TestDetermineSupportedProxyFeaturesFromString(t *testing.T) {
"1.16.0", "1.16.1", "1.16.2", "1.16.3", "1.16.4", "1.16.5",
"1.17.0", "1.17.1", "1.17.2", "1.17.3", "1.17.4",
"1.18.0", "1.18.1", "1.18.2", "1.18.3", "1.18.4",
"1.19.0", "1.19.1",
} {
cases[v] = testcase{expect: supportedProxyFeatures{}}
}
Expand Down
1 change: 1 addition & 0 deletions agent/xds/proxysupport/proxysupport.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ package proxysupport
//
// see: https://www.consul.io/docs/connect/proxies/envoy#supported-versions
var EnvoyVersions = []string{
"1.19.1",
"1.18.4",
"1.17.4",
"1.16.5",
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit c774721

Please sign in to comment.