Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release/v1.1] release: v1.1.4 #4899

Merged
merged 1 commit into from
Dec 12, 2024
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
16 changes: 16 additions & 0 deletions release-notes/v1.1.4.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
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
Bumped golang.org/x/crypto to 0.31.0

19 changes: 19 additions & 0 deletions site/content/en/news/releases/notes/v1.1.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
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
- Bumped golang.org/x/crypto to 0.31.0

2 changes: 1 addition & 1 deletion site/layouts/shortcodes/helm-version.html
Original file line number Diff line number Diff line change
Expand Up @@ -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" -}}
Expand Down
2 changes: 1 addition & 1 deletion site/layouts/shortcodes/yaml-version.html
Original file line number Diff line number Diff line change
Expand Up @@ -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" -}}
Expand Down
Loading