Skip to content

Commit

Permalink
Adding changelog for v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robscott committed Oct 3, 2024
1 parent b311b1c commit 71c5e1d
Show file tree
Hide file tree
Showing 20 changed files with 655 additions and 31 deletions.
626 changes: 625 additions & 1 deletion CHANGELOG/1.2-CHANGELOG.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ the specification and Custom Resource Definitions (CRDs).
## Status

The latest supported version is `v1` as released by
the [v1.1.0 release][gh_release] of this project.
the [v1.2.0 release][gh_release] of this project.

This version of the API is has GA level support for the following resources:

Expand Down Expand Up @@ -71,7 +71,7 @@ Participation in the Kubernetes community is governed by the
[spec]: https://gateway-api.sigs.k8s.io/reference/spec/
[concepts]: https://gateway-api.sigs.k8s.io/concepts/api-overview
[security-model]: https://gateway-api.sigs.k8s.io/concepts/security-model
[gh_release]: https://github.com/kubernetes-sigs/gateway-api/releases/tag/v1.1.0
[gh_release]: https://github.com/kubernetes-sigs/gateway-api/releases/tag/v1.2.0
[godoc]: https://pkg.go.dev/sigs.k8s.io/gateway-api
[conformance-docs]: https://gateway-api.sigs.k8s.io/concepts/conformance/
[reports-readme]: ./conformance/reports/README.md
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ The following steps must be done by one of the [Gateway API maintainers][gateway
- Run the `make build-install-yaml` command which will generate install files in the `release/` directory.
Attach these files to the GitHub release.
- Update the `README.md` and `site-src/guides/index.md` files to point links and examples to the new release.
- Update the implementation table path (`nav.Implementations.Comparison`) in the nav of `mkdocs.yml` to point to the latest release file (for example Implementation Comparison points to `implmenetation-table-v1.1.0.md`). Add the now past version under `Past Version Comparisons`, and edit the text blurb in `mkdocs-generate-conformance.py` to also reflect the added past version.
- Update the implementation table path (`nav.Implementations.Comparison`) in the nav of `mkdocs.yml` to point to the latest release file (for example Implementation Comparison points to `implmenetation-table-v1.2.0.md`). Add the now past version under `Past Version Comparisons`, and edit the text blurb in `mkdocs-generate-conformance.py` to also reflect the added past version.

#### For an **RC** release:
- Update `pkg/consts/consts.go` with the new semver tag (like `v1.2.0-rc1`) and any updates to the API review URL.
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.

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.

22 changes: 11 additions & 11 deletions conformance/utils/suite/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
ObjectMeta: metav1.ObjectMeta{
Name: "gateways.gateway.networking.k8s.io",
Annotations: map[string]string{
consts.BundleVersionAnnotation: "v1.2.0-rc2",
consts.BundleVersionAnnotation: "v1.2.0",
consts.ChannelAnnotation: "standard",
},
},
Expand All @@ -58,13 +58,13 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
ObjectMeta: metav1.ObjectMeta{
Name: "httproutes.gateway.networking.k8s.io",
Annotations: map[string]string{
consts.BundleVersionAnnotation: "v1.2.0-rc2",
consts.BundleVersionAnnotation: "v1.2.0",
consts.ChannelAnnotation: "standard",
},
},
},
},
expectedVersion: "v1.2.0-rc2",
expectedVersion: "v1.2.0",
expectedChannel: "standard",
},
{
Expand All @@ -74,7 +74,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
ObjectMeta: metav1.ObjectMeta{
Name: "gateways.gateway.networking.k8s.io",
Annotations: map[string]string{
consts.BundleVersionAnnotation: "v1.2.0-rc2",
consts.BundleVersionAnnotation: "v1.2.0",
consts.ChannelAnnotation: "standard",
},
},
Expand All @@ -83,7 +83,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
ObjectMeta: metav1.ObjectMeta{
Name: "httproutes.gateway.networking.k8s.io",
Annotations: map[string]string{
consts.BundleVersionAnnotation: "v1.2.0-rc2",
consts.BundleVersionAnnotation: "v1.2.0",
consts.ChannelAnnotation: "standard",
},
},
Expand All @@ -94,7 +94,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
},
},
},
expectedVersion: "v1.2.0-rc2",
expectedVersion: "v1.2.0",
expectedChannel: "standard",
},
{
Expand All @@ -104,7 +104,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
ObjectMeta: metav1.ObjectMeta{
Name: "gateways.gateway.networking.k8s.io",
Annotations: map[string]string{
consts.BundleVersionAnnotation: "v1.2.0-rc2",
consts.BundleVersionAnnotation: "v1.2.0",
consts.ChannelAnnotation: "standard",
},
},
Expand All @@ -128,7 +128,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
ObjectMeta: metav1.ObjectMeta{
Name: "gateways.gateway.networking.k8s.io",
Annotations: map[string]string{
consts.BundleVersionAnnotation: "v1.2.0-rc2",
consts.BundleVersionAnnotation: "v1.2.0",
consts.ChannelAnnotation: "standard",
},
},
Expand All @@ -137,7 +137,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
ObjectMeta: metav1.ObjectMeta{
Name: "httproutes.gateway.networking.k8s.io",
Annotations: map[string]string{
consts.BundleVersionAnnotation: "v1.2.0-rc2",
consts.BundleVersionAnnotation: "v1.2.0",
consts.ChannelAnnotation: "experimental",
},
},
Expand All @@ -152,7 +152,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
ObjectMeta: metav1.ObjectMeta{
Name: "gateways.gateway.networking.k8s.io",
Annotations: map[string]string{
consts.BundleVersionAnnotation: "v1.2.0-rc2",
consts.BundleVersionAnnotation: "v1.2.0",
consts.ChannelAnnotation: "standard",
},
},
Expand All @@ -161,7 +161,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
ObjectMeta: metav1.ObjectMeta{
Name: "httproutes.gateway.networking.k8s.io",
Annotations: map[string]string{
consts.BundleVersionAnnotation: "v1.2.0-rc2",
consts.BundleVersionAnnotation: "v1.2.0",
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion pkg/consts/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const (

// BundleVersion is the value used for the "gateway.networking.k8s.io/bundle-version" annotation.
// These value must be updated during the release process.
BundleVersion = "v1.2.0-rc2"
BundleVersion = "v1.2.0"

// ApprovalLink is the value used for the "api-approved.kubernetes.io" annotation.
// These value must be updated during the release process.
Expand Down

0 comments on commit 71c5e1d

Please sign in to comment.