Skip to content

Commit b692c69

Browse files
authored
Merge pull request #2008 from robscott/changelog-0.7.0-rc2
Adding changelog for v0.7.0-rc2
2 parents 74fcabc + 955a29e commit b692c69

15 files changed

+40
-14
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## Table of Contents
44

5+
- [v0.7.0-rc2](#v070-rc2)
56
- [v0.7.0-rc1](#v070-rc1)
67
- [v0.6.2](#v062)
78
- [v0.6.1](#v061)
@@ -24,6 +25,31 @@
2425
- [v0.1.0-rc2](#v010-rc2)
2526
- [v0.1.0-rc1](#v010-rc1)
2627

28+
# v0.7.0-rc2
29+
30+
We expect this to be our final release candidate before launching v0.7.0. This
31+
release candidate includes a variety of clarifications and conformance updates.
32+
The changelog below represents the changes since v0.7.0-rc1.
33+
34+
## Changes by Kind
35+
36+
### Spec Clarification
37+
38+
- Port redirect when empty will depend on the configured Redirect scheme (#1880,
39+
@gauravkghildiyal)
40+
41+
### Conformance
42+
43+
- Remove a test that only covered redirect status without any other changes.
44+
(#2007, @robscott)
45+
- Port redirect when empty will depend on the configured Redirect scheme (#1880,
46+
@gauravkghildiyal)
47+
48+
### Validation Fixes
49+
50+
* Webhook: Port is now considered when validating that ParentRefs are unique
51+
(#1995, @howardjohn)
52+
2753
# v0.7.0-rc1
2854

2955
## Changes by Kind

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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/webhook/admission_webhook.yaml

Lines changed: 1 addition & 1 deletion
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-rc1
59+
image: registry.k8s.io/gateway-api/admission-server:v0.7.0-rc2
6060
imagePullPolicy: Always
6161
args:
6262
- -logtostderr

pkg/generator/main.go

Lines changed: 1 addition & 1 deletion
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-rc1"
38+
bundleVersion = "v0.7.0-rc2"
3939
approvalLink = "https://github.com/kubernetes-sigs/gateway-api/pull/1923"
4040
)
4141

0 commit comments

Comments
 (0)