Skip to content

Commit 4fba2bf

Browse files
authored
[release/v1.3] fix 1.3.0-rc.1 release note (envoyproxy#5175)
* fix 1.3.0-rc.1 release note Signed-off-by: Guy Daich <[email protected]> * more fixes Signed-off-by: Guy Daich <[email protected]> --------- Signed-off-by: Guy Daich <[email protected]>
1 parent 3253339 commit 4fba2bf

File tree

2 files changed

+8
-16
lines changed

2 files changed

+8
-16
lines changed

release-notes/v1.3.0-rc.1.yaml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,10 @@ date: January 23, 2025
33
# Changes that are expected to cause an incompatibility with previous versions, such as deletions or modifications to existing APIs.
44
breaking changes: |
55
The Container `ports` field of the gateway instance has been removed, which will cause the gateway Pod to be rebuilt when upgrading the version.
6-
ClientTrafficPolicy previously treated an empty TLS ALPNProtocols list as being undefined and applied Envoy Gateway defaults.
7-
An empty TLS ALPNProtocols list is now treated as user-defined disablement of the TLS ALPN extension.
8-
Outlier detection (passive health check) is now disabled by default.
9-
refer to https://gateway.envoyproxy.io/docs/api/extension_types/#backendtrafficpolicy for working with passive health checks.
6+
ClientTrafficPolicy previously treated an empty TLS ALPNProtocols list as being undefined and applied Envoy Gateway defaults. An empty TLS ALPNProtocols list is now treated as user-defined disablement of the TLS ALPN extension.
7+
Outlier detection (passive health check) is now disabled by default. refer to https://gateway.envoyproxy.io/docs/api/extension_types/#backendtrafficpolicy for working with passive health checks.
108
Envoy Gateway treats errors in calls to an extension service as fail-closed by default. Any error returned from the extension server will replace the affected resource with an "Internal Server Error" immediate response. The previous behavior can be enabled by setting the `failOpen` field to `true` in the extension service configuration.
11-
Envoy Gateway now return a 500 response when a ClientTrafficPolicy translation fails for HTTP/GRPC routes, and forwards.
12-
client traffic to an empty cluster when a ClientTrafficPolicy translation fails for TCP routes.
9+
Envoy Gateway now return a 500 response when a ClientTrafficPolicy translation fails for HTTP/GRPC routes, and forwards client traffic to an empty cluster when a ClientTrafficPolicy translation fails for TCP routes.
1310
Any issues with `EnvoyProxy` reference in a `Gateway` will prevent the Envoy fleet from being created or result in the deletion of an existing Envoy fleet.
1411
Envoy Gateway now returns a 500 response when a BackendTLSPolicy translation fails for HTTP/GRPC/TLS routes.
1512
@@ -37,10 +34,10 @@ new features: |
3734
Added support for overriding status code in response overrides ClientTrafficPolicy.
3835
Added support for AllowModeOverride for ext-proc in EnvoyExtensionPolicy.
3936
Added support for configuring remote JWKS settings with BackendCluster in SecurityPolicy.
40-
Added support for infra deployment in the gateway namespace.
4137
Added support for sending body to Ext-Auth server in SecurityPolicy.
4238
Added support for Sending attributes to ext-proc in EnvoyExtensionPolicy.
4339
Added support for configuring hostEnvKeys for Wasm extensions in EnvoyExtensionPolicy.
40+
Gateway API Route rule name is propagated to XDS metadata as sectionName.
4441
4542
bug fixes: |
4643
Fixed a panic in the provider goroutine when the body in the direct response configuration was nil.
@@ -68,7 +65,6 @@ bug fixes: |
6865
Fixed limitations that prevented creation of FQDN Endpoints with a single-character subdomain in Backend.
6966
Fixed issue where SecurityContext of shutdown-manager container was not updated by overriding helm values.
7067
Fixed issue with incorrect IPFamily detection for backends.
71-
Gateway API Route rule name is propagated to XDS metadata as sectionName.
7268
7369
# Other notable changes not covered by the above sections.
7470
Other changes: |

site/content/en/news/releases/notes/v1.3.0-rc.1.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,10 @@ Date: January 23, 2025
77

88
## Breaking changes
99
- The Container `ports` field of the gateway instance has been removed, which will cause the gateway Pod to be rebuilt when upgrading the version.
10-
- ClientTrafficPolicy previously treated an empty TLS ALPNProtocols list as being undefined and applied Envoy Gateway defaults.
11-
- An empty TLS ALPNProtocols list is now treated as user-defined disablement of the TLS ALPN extension.
12-
- Outlier detection (passive health check) is now disabled by default.
13-
- refer to https://gateway.envoyproxy.io/docs/api/extension_types/#backendtrafficpolicy for working with passive health checks.
10+
- ClientTrafficPolicy previously treated an empty TLS ALPNProtocols list as being undefined and applied Envoy Gateway defaults. An empty TLS ALPNProtocols list is now treated as user-defined disablement of the TLS ALPN extension.
11+
- Outlier detection (passive health check) is now disabled by default. refer to https://gateway.envoyproxy.io/docs/api/extension_types/#backendtrafficpolicy for working with passive health checks.
1412
- Envoy Gateway treats errors in calls to an extension service as fail-closed by default. Any error returned from the extension server will replace the affected resource with an "Internal Server Error" immediate response. The previous behavior can be enabled by setting the `failOpen` field to `true` in the extension service configuration.
15-
- Envoy Gateway now return a 500 response when a ClientTrafficPolicy translation fails for HTTP/GRPC routes, and forwards.
16-
- client traffic to an empty cluster when a ClientTrafficPolicy translation fails for TCP routes.
13+
- Envoy Gateway now return a 500 response when a ClientTrafficPolicy translation fails for HTTP/GRPC routes, and forwards client traffic to an empty cluster when a ClientTrafficPolicy translation fails for TCP routes.
1714
- Any issues with `EnvoyProxy` reference in a `Gateway` will prevent the Envoy fleet from being created or result in the deletion of an existing Envoy fleet.
1815
- Envoy Gateway now returns a 500 response when a BackendTLSPolicy translation fails for HTTP/GRPC/TLS routes.
1916

@@ -39,10 +36,10 @@ Date: January 23, 2025
3936
- Added support for overriding status code in response overrides ClientTrafficPolicy.
4037
- Added support for AllowModeOverride for ext-proc in EnvoyExtensionPolicy.
4138
- Added support for configuring remote JWKS settings with BackendCluster in SecurityPolicy.
42-
- Added support for infra deployment in the gateway namespace.
4339
- Added support for sending body to Ext-Auth server in SecurityPolicy.
4440
- Added support for Sending attributes to ext-proc in EnvoyExtensionPolicy.
4541
- Added support for configuring hostEnvKeys for Wasm extensions in EnvoyExtensionPolicy.
42+
- Gateway API Route rule name is propagated to XDS metadata as sectionName.
4643

4744
## Bug fixes
4845
- Fixed a panic in the provider goroutine when the body in the direct response configuration was nil.
@@ -70,7 +67,6 @@ Date: January 23, 2025
7067
- Fixed limitations that prevented creation of FQDN Endpoints with a single-character subdomain in Backend.
7168
- Fixed issue where SecurityContext of shutdown-manager container was not updated by overriding helm values.
7269
- Fixed issue with incorrect IPFamily detection for backends.
73-
- Gateway API Route rule name is propagated to XDS metadata as sectionName.
7470

7571
## Other changes
7672
- Bumped Gateway API to v1.2.1.

0 commit comments

Comments
 (0)