Skip to content

Commit 6fc4f83

Browse files
authored
Adding changelog for v1.1.0-rc2 (#3046)
1 parent c8218ff commit 6fc4f83

18 files changed

+58
-27
lines changed

CHANGELOG.md

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

33
## Table of Contents
44

5+
- [v1.1.0-rc2](#v110-rc2)
56
- [v1.1.0-rc1](#v110-rc1)
67
- [v1.0.0](#v100)
78
- [v1.0.0-rc2](#v100-rc2)
@@ -40,6 +41,36 @@
4041
We expect that this release candidate is quite close to the final v1.1.0
4142
release. However, subsequent breaking API changes are still possible.
4243

44+
This release candidate is suitable for implementors, but we do not recommend
45+
shipping products based on a release candidate API due to the possibility of
46+
incompatible changes prior to the final release. The following represents the
47+
changes since # v1.1.0-rc1:
48+
49+
## Conformance Profiles
50+
- Add SupportMeshConsumerRoute and SupportMeshClusterIPMatching supported
51+
features to more clearly communicate the purpose of existing Mesh conformance
52+
tests (#3035, @howardjohn)
53+
- Add conformance test for HTTP listener isolation (#3047, @arkodg, @pleshakov)
54+
55+
## gwctl
56+
- Properly handle different API versions (#3001, @gauravkghildiyal)
57+
- Provide more detail in describe output (#2999, @gauravkghildiyal)
58+
- Support JSON and YAML output format in get commands (#2940,
59+
@yashvardhan-kukreja)
60+
61+
## Cleanup
62+
- Revert accidental removal of experimental kustomize configuration (#3022,
63+
@howardjohn)
64+
65+
## Dependencies
66+
- sigs.k8s.io/controller-tools from 0.14.0 to 0.15.0 (#3031)
67+
- sigs.k8s.io/controller-runtime from 0.17.0 to 0.18.0 (#3023, @tao12345666333)
68+
69+
# v1.1.0-rc1
70+
71+
We expect that this release candidate is quite close to the final v1.1.0
72+
release. However, subsequent breaking API changes are still possible.
73+
4374
This release candidate is suitable for implementors, but we do not recommend
4475
shipping products based on a release candidate API due to the possibility of
4576
incompatible changes prior to the final release. The following represents the

config/crd/experimental/gateway.networking.k8s.io_backendlbpolicies.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_backendtlspolicies.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_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_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/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.

conformance/utils/suite/suite_test.go

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
4646
ObjectMeta: metav1.ObjectMeta{
4747
Name: "gateways.gateway.networking.k8s.io",
4848
Annotations: map[string]string{
49-
consts.BundleVersionAnnotation: "v1.1.0-rc1",
49+
consts.BundleVersionAnnotation: "v1.1.0-rc2",
5050
consts.ChannelAnnotation: "standard",
5151
},
5252
},
@@ -55,13 +55,13 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
5555
ObjectMeta: metav1.ObjectMeta{
5656
Name: "httproutes.gateway.networking.k8s.io",
5757
Annotations: map[string]string{
58-
consts.BundleVersionAnnotation: "v1.1.0-rc1",
58+
consts.BundleVersionAnnotation: "v1.1.0-rc2",
5959
consts.ChannelAnnotation: "standard",
6060
},
6161
},
6262
},
6363
},
64-
expectedVersion: "v1.1.0-rc1",
64+
expectedVersion: "v1.1.0-rc2",
6565
expectedChannel: "standard",
6666
},
6767
{
@@ -71,7 +71,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
7171
ObjectMeta: metav1.ObjectMeta{
7272
Name: "gateways.gateway.networking.k8s.io",
7373
Annotations: map[string]string{
74-
consts.BundleVersionAnnotation: "v1.1.0-rc1",
74+
consts.BundleVersionAnnotation: "v1.1.0-rc2",
7575
consts.ChannelAnnotation: "standard",
7676
},
7777
},
@@ -80,7 +80,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
8080
ObjectMeta: metav1.ObjectMeta{
8181
Name: "httproutes.gateway.networking.k8s.io",
8282
Annotations: map[string]string{
83-
consts.BundleVersionAnnotation: "v1.1.0-rc1",
83+
consts.BundleVersionAnnotation: "v1.1.0-rc2",
8484
consts.ChannelAnnotation: "standard",
8585
},
8686
},
@@ -91,7 +91,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
9191
},
9292
},
9393
},
94-
expectedVersion: "v1.1.0-rc1",
94+
expectedVersion: "v1.1.0-rc2",
9595
expectedChannel: "standard",
9696
},
9797
{
@@ -101,7 +101,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
101101
ObjectMeta: metav1.ObjectMeta{
102102
Name: "gateways.gateway.networking.k8s.io",
103103
Annotations: map[string]string{
104-
consts.BundleVersionAnnotation: "v1.1.0-rc1",
104+
consts.BundleVersionAnnotation: "v1.1.0-rc2",
105105
consts.ChannelAnnotation: "standard",
106106
},
107107
},
@@ -125,7 +125,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
125125
ObjectMeta: metav1.ObjectMeta{
126126
Name: "gateways.gateway.networking.k8s.io",
127127
Annotations: map[string]string{
128-
consts.BundleVersionAnnotation: "v1.1.0-rc1",
128+
consts.BundleVersionAnnotation: "v1.1.0-rc2",
129129
consts.ChannelAnnotation: "standard",
130130
},
131131
},
@@ -134,7 +134,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
134134
ObjectMeta: metav1.ObjectMeta{
135135
Name: "httproutes.gateway.networking.k8s.io",
136136
Annotations: map[string]string{
137-
consts.BundleVersionAnnotation: "v1.1.0-rc1",
137+
consts.BundleVersionAnnotation: "v1.1.0-rc2",
138138
consts.ChannelAnnotation: "experimental",
139139
},
140140
},
@@ -149,7 +149,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
149149
ObjectMeta: metav1.ObjectMeta{
150150
Name: "gateways.gateway.networking.k8s.io",
151151
Annotations: map[string]string{
152-
consts.BundleVersionAnnotation: "v1.1.0-rc1",
152+
consts.BundleVersionAnnotation: "v1.1.0-rc2",
153153
consts.ChannelAnnotation: "standard",
154154
},
155155
},
@@ -158,7 +158,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
158158
ObjectMeta: metav1.ObjectMeta{
159159
Name: "httproutes.gateway.networking.k8s.io",
160160
Annotations: map[string]string{
161-
consts.BundleVersionAnnotation: "v1.1.0-rc1",
161+
consts.BundleVersionAnnotation: "v1.1.0-rc2",
162162
},
163163
},
164164
},

pkg/consts/consts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const (
2727

2828
// BundleVersion is the value used for the "gateway.networking.k8s.io/bundle-version" annotation.
2929
// These value must be updated during the release process.
30-
BundleVersion = "v1.1.0-rc1"
30+
BundleVersion = "v1.1.0-rc2"
3131

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

0 commit comments

Comments
 (0)