Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Changelog for v0.5.1 #1407

Merged
merged 1 commit into from
Sep 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Table of Contents

- [v0.5.1](#v051)
- [v0.5.0](#v050)
- [v0.5.0-rc2](#v050-rc2)
- [v0.5.0-rc1](#v050-rc1)
Expand All @@ -17,6 +18,39 @@
- [v0.1.0-rc2](#v010-rc2)
- [v0.1.0-rc1](#v010-rc1)

## v0.5.1

API versions: v1beta1, v1alpha2

This release includes a number of bug fixes and clarifications:

### API Spec

* The spec has been clarified to state that the port specified in BackendRef
refers to the Service port number, not the target port, when a Service is
referenced. [#1332](https://github.com/kubernetes-sigs/gateway-api/pull/1332)
* The spec has been clarified to state that "Accepted" should be used instead of
"Attached" on HTTPRoute.
[#1382](https://github.com/kubernetes-sigs/gateway-api/pull/1382)

### Webhook:

* The duplicate gateway-system namespace definitions have been removed.
[#1387](https://github.com/kubernetes-sigs/gateway-api/pull/1387)
* The webhook has been updated to watch v1beta1.
[#1365](https://github.com/kubernetes-sigs/gateway-api/pull/1368)

### Conformance:

* The expected condition for a cross-namespace certificate reference that has
not been allowed by a ReferenceGrant has been changed from
"InvalidCertificateRef" to "RefNotPermitted" to more closely match the spec.
[#1351](https://github.com/kubernetes-sigs/gateway-api/pull/1351)
* A new test has been added to cover when a Gateway references a Secret that
does not exist
[#1334](https://github.com/kubernetes-sigs/gateway-api/pull/1334)


## v0.5.0

API versions: v1beta1, v1alpha2
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config/webhook/admission_webhook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ spec:
spec:
containers:
- name: webhook
image: gcr.io/k8s-staging-gateway-api/admission-server:v0.5.0
image: gcr.io/k8s-staging-gateway-api/admission-server:v0.5.1
imagePullPolicy: Always
args:
- -logtostderr
Expand Down
2 changes: 1 addition & 1 deletion hack/verify-examples-kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ kind create cluster --name "${CLUSTER_NAME}" || res=$?
# Install webhook
docker build -t gcr.io/k8s-staging-gateway-api/admission-server:latest .
# Temporary workaround for release
sed -i 's/v0.5.0/latest/g' config/webhook/admission_webhook.yaml
sed -i 's/v0.5.1/latest/g' config/webhook/admission_webhook.yaml
kubectl apply -f config/webhook/

# Wait for webhook to be ready
Expand Down
2 changes: 1 addition & 1 deletion pkg/generator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const (
channelAnnotation = "gateway.networking.k8s.io/channel"

// These values must be updated during the release process
bundleVersion = "v0.5.0"
bundleVersion = "v0.5.1"
approvalLink = "https://github.com/kubernetes-sigs/gateway-api/pull/1086"
)

Expand Down