Skip to content

Commit 0fce655

Browse files
authored
[v2.1.x] bump envoy-gloo to v1.35.6-patch1 (#12683)
Signed-off-by: Andy Fong <[email protected]>
1 parent 74c99c7 commit 0fce655

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export VERSION
3939
SOURCES := $(shell find . -name "*.go" | grep -v test.go)
4040

4141
# Note: When bumping this version, update the version in pkg/validator/validator.go as well.
42-
export ENVOY_IMAGE ?= quay.io/solo-io/envoy-gloo:1.35.2-patch4
42+
export ENVOY_IMAGE ?= quay.io/solo-io/envoy-gloo:1.35.6-patch1
4343
export LDFLAGS := -X 'github.com/kgateway-dev/kgateway/v2/internal/version.Version=$(VERSION)'
4444
export GCFLAGS ?=
4545

internal/envoyinit/rustformations/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/envoyinit/rustformations/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# The SDK version must match the Envoy version due to the strict compatibility requirements.
8-
envoy-proxy-dynamic-modules-rust-sdk = { git = "https://github.com/envoyproxy/envoy", rev = "2c2cd7efd119a5c9028b68a97d88a540248f8d18" }
8+
envoy-proxy-dynamic-modules-rust-sdk = { git = "https://github.com/envoyproxy/envoy", rev = "0d240c4b0f5b5db91ef14b1bf424520144b1a75d" }
99
serde = { version = "1.0", features = ["derive"] }
1010
serde_json = "1.0"
1111
rand = "0.9.0"

pkg/validator/validator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
var (
1414
defaultEnvoyPath = "/usr/local/bin/envoy"
1515
// TODO(tim): avoid hardcoding the envoy image version in multiple places.
16-
defaultEnvoyImage = "quay.io/solo-io/envoy-gloo:1.35.2-patch4"
16+
defaultEnvoyImage = "quay.io/solo-io/envoy-gloo:1.35.6-patch1"
1717
)
1818

1919
// ErrInvalidXDS is returned when Envoy rejects the supplied JSON.

pkg/validator/validator_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ func TestExtractEnvoyError(t *testing.T) {
346346
},
347347
{
348348
name: "docker pull logs present",
349-
input: `Unable to find image 'quay.io/solo-io/envoy-gloo:1.35.2-patch4' locally
349+
input: `Unable to find image 'quay.io/solo-io/envoy-gloo:1.35.6-patch1' locally
350350
1.35.2-patch1: Pulling from solo-io/envoy-gloo
351351
f90c8eb4724c: Pulling fs layer
352352
9f37c34398c2: Pulling fs layer
@@ -365,16 +365,16 @@ f90c8eb4724c: Pull complete
365365
1cc4dfe322cb: Pull complete
366366
e800bbdc2f77: Pull complete
367367
Digest: sha256:98c645568997299a1c4301e6077a1d2f566bb20828c0739e6c4177a821524dad
368-
Status: Downloaded newer image for quay.io/solo-io/envoy-gloo:1.35.2-patch4
368+
Status: Downloaded newer image for quay.io/solo-io/envoy-gloo:1.35.6-patch1
369369
error initializing configuration '/dev/fd/0': invalid named capture group: (?<=foo)bar`,
370370
expected: "error initializing configuration '/dev/fd/0': invalid named capture group: (?<=foo)bar",
371371
},
372372
{
373373
name: "docker pull logs with multi-line error",
374-
input: `Unable to find image 'quay.io/solo-io/envoy-gloo:1.35.2-patch4' locally
374+
input: `Unable to find image 'quay.io/solo-io/envoy-gloo:1.35.6-patch1' locally
375375
1.35.2-patch1: Pulling from solo-io/envoy-gloo
376376
f90c8eb4724c: Pull complete
377-
Status: Downloaded newer image for quay.io/solo-io/envoy-gloo:1.35.2-patch4
377+
Status: Downloaded newer image for quay.io/solo-io/envoy-gloo:1.35.6-patch1
378378
error initializing configuration '/dev/fd/0': missing ]:
379379
at line 42 in filter configuration
380380
regex validation failed`,

0 commit comments

Comments
 (0)