From 967d69ed37edb1e789d57a47084bef312c416715 Mon Sep 17 00:00:00 2001 From: Valerian Roche Date: Mon, 23 Dec 2024 10:04:29 -0500 Subject: [PATCH 1/3] Prepare envoy for version v1.32.2 Signed-off-by: Valerian Roche --- contrib/go.mod | 2 +- examples/dyplomat/go.mod | 2 +- go.mod | 2 +- ratelimit/go.mod | 2 +- xdsmatcher/go.mod | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/contrib/go.mod b/contrib/go.mod index d0b0510fb..d7840eb96 100644 --- a/contrib/go.mod +++ b/contrib/go.mod @@ -6,7 +6,7 @@ replace github.com/envoyproxy/go-control-plane/envoy => ../envoy require ( github.com/cncf/xds/go v0.0.0-20240723142845-024c85f92f20 - github.com/envoyproxy/go-control-plane/envoy v0.0.0-00010101000000-000000000000 + github.com/envoyproxy/go-control-plane/envoy v1.32.2 github.com/envoyproxy/protoc-gen-validate v1.1.0 github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 google.golang.org/grpc v1.67.1 diff --git a/examples/dyplomat/go.mod b/examples/dyplomat/go.mod index 0b4d4bde7..9c861aed6 100644 --- a/examples/dyplomat/go.mod +++ b/examples/dyplomat/go.mod @@ -10,7 +10,7 @@ replace ( require ( github.com/envoyproxy/go-control-plane v0.13.0 - github.com/envoyproxy/go-control-plane/envoy v0.0.0-00010101000000-000000000000 + github.com/envoyproxy/go-control-plane/envoy v1.32.2 google.golang.org/grpc v1.67.1 gopkg.in/yaml.v2 v2.4.0 k8s.io/api v0.28.2 diff --git a/go.mod b/go.mod index bd04c92e1..cde4c4d8d 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ replace ( ) require ( - github.com/envoyproxy/go-control-plane/envoy v0.0.0-00010101000000-000000000000 + github.com/envoyproxy/go-control-plane/envoy v1.32.2 github.com/envoyproxy/go-control-plane/ratelimit v0.0.0-00010101000000-000000000000 github.com/google/go-cmp v0.6.0 github.com/stretchr/testify v1.10.0 diff --git a/ratelimit/go.mod b/ratelimit/go.mod index bd6f0ce72..4e9be050f 100644 --- a/ratelimit/go.mod +++ b/ratelimit/go.mod @@ -5,7 +5,7 @@ go 1.21 replace github.com/envoyproxy/go-control-plane/envoy => ../envoy require ( - github.com/envoyproxy/go-control-plane/envoy v0.0.0-00010101000000-000000000000 + github.com/envoyproxy/go-control-plane/envoy v1.32.2 google.golang.org/grpc v1.67.1 google.golang.org/protobuf v1.35.2 ) diff --git a/xdsmatcher/go.mod b/xdsmatcher/go.mod index 96b2eaa44..f8026bb22 100644 --- a/xdsmatcher/go.mod +++ b/xdsmatcher/go.mod @@ -6,7 +6,7 @@ replace github.com/envoyproxy/go-control-plane/envoy => ../envoy require ( github.com/cncf/xds/go v0.0.0-20240723142845-024c85f92f20 - github.com/envoyproxy/go-control-plane/envoy v0.0.0-00010101000000-000000000000 + github.com/envoyproxy/go-control-plane/envoy v1.32.2 github.com/stretchr/testify v1.10.0 google.golang.org/protobuf v1.35.2 gopkg.in/yaml.v2 v2.4.0 From 7f05e5c333a75f9ea17d476afc56424dbee1f334 Mon Sep 17 00:00:00 2001 From: Valerian Roche Date: Mon, 23 Dec 2024 10:04:39 -0500 Subject: [PATCH 2/3] Prepare ratelimit for version v0.1.0 Signed-off-by: Valerian Roche --- examples/dyplomat/go.mod | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/dyplomat/go.mod b/examples/dyplomat/go.mod index 9c861aed6..3a7560653 100644 --- a/examples/dyplomat/go.mod +++ b/examples/dyplomat/go.mod @@ -27,7 +27,7 @@ require ( github.com/cncf/xds/go v0.0.0-20240723142845-024c85f92f20 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/emicklei/go-restful/v3 v3.9.0 // indirect - github.com/envoyproxy/go-control-plane/ratelimit v0.0.0-00010101000000-000000000000 // indirect + github.com/envoyproxy/go-control-plane/ratelimit v0.1.0 // indirect github.com/envoyproxy/protoc-gen-validate v1.1.0 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-openapi/jsonpointer v0.19.6 // indirect diff --git a/go.mod b/go.mod index cde4c4d8d..429d2ad17 100644 --- a/go.mod +++ b/go.mod @@ -9,7 +9,7 @@ replace ( require ( github.com/envoyproxy/go-control-plane/envoy v1.32.2 - github.com/envoyproxy/go-control-plane/ratelimit v0.0.0-00010101000000-000000000000 + github.com/envoyproxy/go-control-plane/ratelimit v0.1.0 github.com/google/go-cmp v0.6.0 github.com/stretchr/testify v1.10.0 go.uber.org/goleak v1.3.0 From d3a4fc7735418920a7b186d47f78e5070710f1e8 Mon Sep 17 00:00:00 2001 From: Valerian Roche Date: Mon, 23 Dec 2024 10:05:37 -0500 Subject: [PATCH 3/3] Prepare go-control-plane for version v0.13.2 Signed-off-by: Valerian Roche