Skip to content

Commit

Permalink
chore: bump bundle version to 1.2.1 (#3478)
Browse files Browse the repository at this point in the history
* chore: bump bundle version to 1.2.1

Signed-off-by: Mattia Lavacca <[email protected]>

* chore: fix hardcoded bundle version in test

Signed-off-by: Mattia Lavacca <[email protected]>

---------

Signed-off-by: Mattia Lavacca <[email protected]>
  • Loading branch information
mlavacca authored Nov 29, 2024
1 parent 20b8e4e commit 3725727
Show file tree
Hide file tree
Showing 17 changed files with 27 additions and 27 deletions.

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",
consts.BundleVersionAnnotation: consts.BundleVersion,
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",
consts.BundleVersionAnnotation: consts.BundleVersion,
consts.ChannelAnnotation: "standard",
},
},
},
},
expectedVersion: "v1.2.0",
expectedVersion: consts.BundleVersion,
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",
consts.BundleVersionAnnotation: consts.BundleVersion,
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",
consts.BundleVersionAnnotation: consts.BundleVersion,
consts.ChannelAnnotation: "standard",
},
},
Expand All @@ -94,7 +94,7 @@ func TestGetAPIVersionAndChannel(t *testing.T) {
},
},
},
expectedVersion: "v1.2.0",
expectedVersion: consts.BundleVersion,
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",
consts.BundleVersionAnnotation: consts.BundleVersion,
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",
consts.BundleVersionAnnotation: consts.BundleVersion,
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",
consts.BundleVersionAnnotation: consts.BundleVersion,
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",
consts.BundleVersionAnnotation: consts.BundleVersion,
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",
consts.BundleVersionAnnotation: consts.BundleVersion,
},
},
},
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"
BundleVersion = "v1.2.1"

// 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 3725727

Please sign in to comment.