Skip to content

Commit 02fc8af

Browse files
authored
Merge pull request #1407 from robscott/changelog-v0.5.1
Adding Changelog for v0.5.1
2 parents cf625fd + 3bc02f9 commit 02fc8af

15 files changed

+48
-14
lines changed

CHANGELOG.md

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

33
## Table of Contents
44

5+
- [v0.5.1](#v051)
56
- [v0.5.0](#v050)
67
- [v0.5.0-rc2](#v050-rc2)
78
- [v0.5.0-rc1](#v050-rc1)
@@ -17,6 +18,39 @@
1718
- [v0.1.0-rc2](#v010-rc2)
1819
- [v0.1.0-rc1](#v010-rc1)
1920

21+
## v0.5.1
22+
23+
API versions: v1beta1, v1alpha2
24+
25+
This release includes a number of bug fixes and clarifications:
26+
27+
### API Spec
28+
29+
* The spec has been clarified to state that the port specified in BackendRef
30+
refers to the Service port number, not the target port, when a Service is
31+
referenced. [#1332](https://github.com/kubernetes-sigs/gateway-api/pull/1332)
32+
* The spec has been clarified to state that "Accepted" should be used instead of
33+
"Attached" on HTTPRoute.
34+
[#1382](https://github.com/kubernetes-sigs/gateway-api/pull/1382)
35+
36+
### Webhook:
37+
38+
* The duplicate gateway-system namespace definitions have been removed.
39+
[#1387](https://github.com/kubernetes-sigs/gateway-api/pull/1387)
40+
* The webhook has been updated to watch v1beta1.
41+
[#1365](https://github.com/kubernetes-sigs/gateway-api/pull/1368)
42+
43+
### Conformance:
44+
45+
* The expected condition for a cross-namespace certificate reference that has
46+
not been allowed by a ReferenceGrant has been changed from
47+
"InvalidCertificateRef" to "RefNotPermitted" to more closely match the spec.
48+
[#1351](https://github.com/kubernetes-sigs/gateway-api/pull/1351)
49+
* A new test has been added to cover when a Gateway references a Secret that
50+
does not exist
51+
[#1334](https://github.com/kubernetes-sigs/gateway-api/pull/1334)
52+
53+
2054
## v0.5.0
2155

2256
API versions: v1beta1, v1alpha2

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_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_referencepolicies.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/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: gcr.io/k8s-staging-gateway-api/admission-server:v0.5.0
59+
image: gcr.io/k8s-staging-gateway-api/admission-server:v0.5.1
6060
imagePullPolicy: Always
6161
args:
6262
- -logtostderr

hack/verify-examples-kind.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ kind create cluster --name "${CLUSTER_NAME}" || res=$?
5454
# Install webhook
5555
docker build -t gcr.io/k8s-staging-gateway-api/admission-server:latest .
5656
# Temporary workaround for release
57-
sed -i 's/v0.5.0/latest/g' config/webhook/admission_webhook.yaml
57+
sed -i 's/v0.5.1/latest/g' config/webhook/admission_webhook.yaml
5858
kubectl apply -f config/webhook/
5959

6060
# Wait for webhook to be ready

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.5.0"
38+
bundleVersion = "v0.5.1"
3939
approvalLink = "https://github.com/kubernetes-sigs/gateway-api/pull/1086"
4040
)
4141

0 commit comments

Comments
 (0)