From 90a02b9fab96b39f9c050e12a6c5e8af487c3c24 Mon Sep 17 00:00:00 2001 From: Guy Daich Date: Wed, 11 Dec 2024 18:30:00 -0600 Subject: [PATCH] release: v1.1.4 Signed-off-by: Guy Daich --- release-notes/v1.1.4.yaml | 15 +++++++++++++++ site/content/en/news/releases/notes/v1.1.4.md | 18 ++++++++++++++++++ site/layouts/shortcodes/helm-version.html | 2 +- site/layouts/shortcodes/yaml-version.html | 2 +- 4 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 release-notes/v1.1.4.yaml create mode 100644 site/content/en/news/releases/notes/v1.1.4.md diff --git a/release-notes/v1.1.4.yaml b/release-notes/v1.1.4.yaml new file mode 100644 index 00000000000..24e14388ae2 --- /dev/null +++ b/release-notes/v1.1.4.yaml @@ -0,0 +1,15 @@ +date: December 12, 2024 + +# Fixes for bugs identified in previous versions. +bug fixes: | + Fixed validate proto messages before converting them to anypb.Any + Fixed BackendTlsPolicy specify multiple targetRefs of the same service, only one will work + Fixed Envoy rejecting TCP Listeners that have no attached TCPRoutes + Fixed frequent 503 errors when connecting to a Service experiencing high Pod churn + Fixed reference grant from EnvoyExtensionPolicy to referenced ext-proc backend not respected + Fixed BackendTrafficPolicy not applying to Gateway Route when Route has a Request Timeout defined + +# Other notable changes not covered by the above sections. +Other changes: | + Bumped Rate Limit to 49af5cca + diff --git a/site/content/en/news/releases/notes/v1.1.4.md b/site/content/en/news/releases/notes/v1.1.4.md new file mode 100644 index 00000000000..d8911a01cc4 --- /dev/null +++ b/site/content/en/news/releases/notes/v1.1.4.md @@ -0,0 +1,18 @@ +--- +title: "v1.1.4" +publishdate: 2024-12-12 +--- + +Date: December 12, 2024 + +## Bug fixes +- Fixed validate proto messages before converting them to anypb.Any +- Fixed BackendTlsPolicy specify multiple targetRefs of the same service, only one will work +- Fixed Envoy rejecting TCP Listeners that have no attached TCPRoutes +- Fixed frequent 503 errors when connecting to a Service experiencing high Pod churn +- Fixed reference grant from EnvoyExtensionPolicy to referenced ext-proc backend not respected +- Fixed BackendTrafficPolicy not applying to Gateway Route when Route has a Request Timeout defined + +## Other changes +- Bumped Rate Limit to 49af5cca + diff --git a/site/layouts/shortcodes/helm-version.html b/site/layouts/shortcodes/helm-version.html index 421a5cae3d2..b21ca9586b8 100644 --- a/site/layouts/shortcodes/helm-version.html +++ b/site/layouts/shortcodes/helm-version.html @@ -3,7 +3,7 @@ {{- "v0.0.0-latest" -}} {{- end -}} {{- with (strings.HasPrefix $pagePrefix "v1.1") -}} -{{- "v1.1.3" -}} +{{- "v1.1.4" -}} {{- end -}} {{- with (strings.HasPrefix $pagePrefix "v1.2") -}} {{- "v1.2.3" -}} diff --git a/site/layouts/shortcodes/yaml-version.html b/site/layouts/shortcodes/yaml-version.html index d5f7514e571..d68a435454c 100644 --- a/site/layouts/shortcodes/yaml-version.html +++ b/site/layouts/shortcodes/yaml-version.html @@ -3,7 +3,7 @@ {{- "latest" -}} {{- end -}} {{- with (strings.HasPrefix $pagePrefix "v1.1") -}} -{{- "v1.1.3" -}} +{{- "v1.1.4" -}} {{- end -}} {{- with (strings.HasPrefix $pagePrefix "v1.2") -}} {{- "v1.2.3" -}}