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.7.1 #2081

Merged
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
35 changes: 35 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.7.1](#v071)
- [v0.7.0](#v070)
- [v0.7.0-rc2](#v070-rc2)
- [v0.7.0-rc1](#v070-rc1)
Expand All @@ -26,6 +27,40 @@
- [v0.1.0-rc2](#v010-rc2)
- [v0.1.0-rc1](#v010-rc1)

# v0.7.1

This is a patch release that includes small fixes, clarifications, and
conformance tests as a follow up to the v0.7.0 release.

## Changes by Kind

### Conformance Tests

- Fixed an issues causing conformance tests to fail when using IPv6 addresses.
(#2024, @howardjohn)
- HTTPRoute connectivity is in now enforced in conformance tests if a relevant
ReferenceGrant gets deleted. (#1853, @pmalek)
- New: Conformance tests for HTTP request mirroring. (#1912, @liorlieberman)
- Fixes to port and scheme redirect tests: Tests now send HTTPS requests with
consistent SNI and Host, Gateway now has the correct SANs. (#2039, @sunjaybhatia)
- TLSRoute test now waits for namespaces to be ready. (#2067, @skriss)

### Validating Webhook

- Webhook config works with "restricted" Pod Security level. (#2016, @jcpunk)

### Clarifications

- HTTPRoute Method matching precedence has been clarified. (#2054,
@gauravkghildiyal)
- Implementations MUST ignore any port value specified in the HTTP Host header
while performing a match against HTTPRoute.Hostnames. (#1980,
@gauravkghildiyal)
shaneutt marked this conversation as resolved.
Show resolved Hide resolved
- HTTPRoute: Clarified that exact path matches are truly exact, both trailing
slashes and capitalization are meaningful. (#2055, @robscott)
- Gateway: Clarified that AttachedRoutes should only consider Routes that have
been accepted. (#2050, @mlavacca)

# v0.7.0

The v0.7.0 release focuses on refining and stabilizing existing APIs. This
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.

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: registry.k8s.io/gateway-api/admission-server:v0.7.0
image: registry.k8s.io/gateway-api/admission-server:v0.7.1
imagePullPolicy: Always
args:
- -logtostderr
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.7.0"
bundleVersion = "v0.7.1"
approvalLink = "https://github.com/kubernetes-sigs/gateway-api/pull/1923"
)

Expand Down