Skip to content

Commit ab03a59

Browse files
authored
Merge pull request #2081 from robscott/changelog-v0.7.1
Adding changelog for v0.7.1
2 parents 54bd466 + 27efbb5 commit ab03a59

15 files changed

+49
-14
lines changed

CHANGELOG.md

+35
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## Table of Contents
44

5+
- [v0.7.1](#v071)
56
- [v0.7.0](#v070)
67
- [v0.7.0-rc2](#v070-rc2)
78
- [v0.7.0-rc1](#v070-rc1)
@@ -26,6 +27,40 @@
2627
- [v0.1.0-rc2](#v010-rc2)
2728
- [v0.1.0-rc1](#v010-rc1)
2829

30+
# v0.7.1
31+
32+
This is a patch release that includes small fixes, clarifications, and
33+
conformance tests as a follow up to the v0.7.0 release.
34+
35+
## Changes by Kind
36+
37+
### Conformance Tests
38+
39+
- Fixed an issues causing conformance tests to fail when using IPv6 addresses.
40+
(#2024, @howardjohn)
41+
- HTTPRoute connectivity is in now enforced in conformance tests if a relevant
42+
ReferenceGrant gets deleted. (#1853, @pmalek)
43+
- New: Conformance tests for HTTP request mirroring. (#1912, @liorlieberman)
44+
- Fixes to port and scheme redirect tests: Tests now send HTTPS requests with
45+
consistent SNI and Host, Gateway now has the correct SANs. (#2039, @sunjaybhatia)
46+
- TLSRoute test now waits for namespaces to be ready. (#2067, @skriss)
47+
48+
### Validating Webhook
49+
50+
- Webhook config works with "restricted" Pod Security level. (#2016, @jcpunk)
51+
52+
### Clarifications
53+
54+
- HTTPRoute Method matching precedence has been clarified. (#2054,
55+
@gauravkghildiyal)
56+
- Implementations MUST ignore any port value specified in the HTTP Host header
57+
while performing a match against HTTPRoute.Hostnames. (#1980,
58+
@gauravkghildiyal)
59+
- HTTPRoute: Clarified that exact path matches are truly exact, both trailing
60+
slashes and capitalization are meaningful. (#2055, @robscott)
61+
- Gateway: Clarified that AttachedRoutes should only consider Routes that have
62+
been accepted. (#2050, @mlavacca)
63+
2964
# v0.7.0
3065

3166
The v0.7.0 release focuses on refining and stabilizing existing APIs. This

config/crd/experimental/gateway.networking.k8s.io_gatewayclasses.yaml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/experimental/gateway.networking.k8s.io_gateways.yaml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/experimental/gateway.networking.k8s.io_grpcroutes.yaml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/experimental/gateway.networking.k8s.io_httproutes.yaml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/experimental/gateway.networking.k8s.io_referencegrants.yaml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/experimental/gateway.networking.k8s.io_tcproutes.yaml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/experimental/gateway.networking.k8s.io_tlsroutes.yaml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/experimental/gateway.networking.k8s.io_udproutes.yaml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/standard/gateway.networking.k8s.io_gatewayclasses.yaml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/standard/gateway.networking.k8s.io_gateways.yaml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/standard/gateway.networking.k8s.io_httproutes.yaml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/standard/gateway.networking.k8s.io_referencegrants.yaml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/webhook/admission_webhook.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ spec:
5656
spec:
5757
containers:
5858
- name: webhook
59-
image: registry.k8s.io/gateway-api/admission-server:v0.7.0
59+
image: registry.k8s.io/gateway-api/admission-server:v0.7.1
6060
imagePullPolicy: Always
6161
args:
6262
- -logtostderr

pkg/generator/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const (
3535
channelAnnotation = "gateway.networking.k8s.io/channel"
3636

3737
// These values must be updated during the release process
38-
bundleVersion = "v0.7.0"
38+
bundleVersion = "v0.7.1"
3939
approvalLink = "https://github.com/kubernetes-sigs/gateway-api/pull/1923"
4040
)
4141

0 commit comments

Comments
 (0)