Skip to content

Commit fa5d4dd

Browse files
authored
[release/v1.7] update docs and add release notes (#8947)
Signed-off-by: Karol Szwaj <karol.szwaj@gmail.com>
1 parent 3439cef commit fa5d4dd

4 files changed

Lines changed: 66 additions & 4 deletions

File tree

release-notes/v1.7.3.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
date: May 9, 2026
2+
3+
# Changes that are expected to cause an incompatibility with previous versions, such as deletions or modifications to existing APIs.
4+
breaking changes: |
5+
6+
# Updates addressing vulnerabilities, security flaws, or compliance requirements.
7+
security updates: |
8+
Bumped golang to `1.25.10` for including latest security fixes.
9+
Bumped `google.golang.org/grpc` to v1.79.3 to address CVE-2026-33186 (Critical, gRPC-Go authorization bypass via non-canonical HTTP/2 `:path` header).
10+
Bumped `go.opentelemetry.io/otel/sdk` to v1.40.0 to address CVE-2026-24051 (High, OpenTelemetry Go SDK path hijacking on macOS/Darwin).
11+
12+
# New features or capabilities added in this release.
13+
new features: |
14+
15+
16+
bug fixes: |
17+
Fixed a control plane panic caused by concurrent Status mutation racing with the watchable Map coalesce goroutine.
18+
Fixed `ws` and `wss` Backend appProtocols to force HTTP/1.1 upstream connections instead of negotiating HTTP/2, avoiding compatibility issues with WebSocket backends that do not support RFC 8441 extended CONNECT.
19+
Fixed status conditions not being updated when a route is rejected due to multiple errors.
20+
Fixed benchmark JSON report emitting `0` for p99 and p999 percentiles by using the nearest Nighthawk histogram percentiles.
21+
Fixed active HTTP health checks to use Backend endpoint hostnames before falling back to the effective Route hostname.
22+
23+
# Enhancements that improve performance.
24+
performance improvements: |
25+
26+
27+
# Deprecated features or APIs.
28+
deprecations: |
29+
30+
# Other notable changes not covered by the above sections.
31+
Other changes: |
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: "v1.7.3"
3+
publishdate: 2026-05-09
4+
---
5+
6+
Date: May 9, 2026
7+
8+
## Breaking changes
9+
-
10+
11+
## Security updates
12+
- Bumped golang to `1.25.10` for including latest security fixes.
13+
- Bumped `google.golang.org/grpc` to v1.79.3 to address CVE-2026-33186 (Critical, gRPC-Go authorization bypass via non-canonical HTTP/2 `:path` header).
14+
- Bumped `go.opentelemetry.io/otel/sdk` to v1.40.0 to address CVE-2026-24051 (High, OpenTelemetry Go SDK path hijacking on macOS/Darwin).
15+
16+
## New features
17+
-
18+
19+
## Bug fixes
20+
- Fixed a control plane panic caused by concurrent Status mutation racing with the watchable Map coalesce goroutine.
21+
- Fixed `ws` and `wss` Backend appProtocols to force HTTP/1.1 upstream connections instead of negotiating HTTP/2, avoiding compatibility issues with WebSocket backends that do not support RFC 8441 extended CONNECT.
22+
- Fixed status conditions not being updated when a route is rejected due to multiple errors.
23+
- Fixed benchmark JSON report emitting `0` for p99 and p999 percentiles by using the nearest Nighthawk histogram percentiles.
24+
- Fixed active HTTP health checks to use Backend endpoint hostnames before falling back to the effective Route hostname.
25+
26+
## Performance improvements
27+
28+
-
29+
30+
## Other changes
31+
-

site/layouts/shortcodes/helm-version.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
{{- "v1.6.7" -}}
2222
{{- end -}}
2323
{{- with (strings.HasPrefix $pagePrefix "v1.7") -}}
24-
{{- "v1.7.2" -}}
24+
{{- "v1.7.3" -}}
2525
{{- end -}}
2626
{{- with (strings.HasPrefix $pagePrefix "docs") -}}
27-
{{- "v1.7.2" -}}
27+
{{- "v1.7.3" -}}
2828
{{- end -}}

site/layouts/shortcodes/yaml-version.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
{{- "v1.6.7" -}}
2222
{{- end -}}
2323
{{- with (strings.HasPrefix $pagePrefix "v1.7") -}}
24-
{{- "v1.7.2" -}}
24+
{{- "v1.7.3" -}}
2525
{{- end -}}
2626
{{- with (strings.HasPrefix $pagePrefix "docs") -}}
27-
{{- "v1.7.2" -}}
27+
{{- "v1.7.3" -}}
2828
{{- end -}}

0 commit comments

Comments
 (0)