Skip to content

Commit 4d889c4

Browse files
Merge pull request #1949 from Nordix/mquhuy/uplift-bmo-v0.6.2
🌱 Uplift BMO to v0.6.2
2 parents c0c323d + 14c76e3 commit 4d889c4

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.22
55
require (
66
github.com/go-logr/logr v1.4.2
77
github.com/golang/mock v1.6.0
8-
github.com/metal3-io/baremetal-operator/apis v0.6.1
8+
github.com/metal3-io/baremetal-operator/apis v0.6.2
99
github.com/metal3-io/cluster-api-provider-metal3/api v0.0.0
1010
github.com/metal3-io/ip-address-manager/api v1.7.2
1111
github.com/onsi/ginkgo/v2 v2.17.3
@@ -63,7 +63,7 @@ require (
6363
github.com/json-iterator/go v1.1.12 // indirect
6464
github.com/mailru/easyjson v0.7.7 // indirect
6565
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
66-
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.6.1 // indirect
66+
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.6.2 // indirect
6767
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
6868
github.com/modern-go/reflect2 v1.0.2 // indirect
6969
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,10 @@ github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0
131131
github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
132132
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 h1:jWpvCLoY8Z/e3VKvlsiIGKtc+UG6U5vzxaoagmhXfyg=
133133
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0/go.mod h1:QUyp042oQthUoa9bqDv0ER0wrtXnBruoNd7aNjkbP+k=
134-
github.com/metal3-io/baremetal-operator/apis v0.6.1 h1:CL5paLPWn0VEAcdtGaKKNMCR9AVYXjSuiO83vwlOHRI=
135-
github.com/metal3-io/baremetal-operator/apis v0.6.1/go.mod h1:dogSrgg9iPAznQonugPKRI41zOlQAaPb80U5WJ06E38=
136-
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.6.1 h1:0kyToP3YDiICgmVGmZc5F6QK0zx1nqzw48vIviOdedM=
137-
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.6.1/go.mod h1:wdkQoDe+Kmien7xXRIUufMeX4FGGpciSLi05kcf+Ig4=
134+
github.com/metal3-io/baremetal-operator/apis v0.6.2 h1:/szSfHXW9+ocxy61J+54VIHsGeOFI9T9JHKdFfjR3jI=
135+
github.com/metal3-io/baremetal-operator/apis v0.6.2/go.mod h1:zj6oG+P54XKkrBc6FdZEpLoJi0MykYWIqp7r7FB0F3k=
136+
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.6.2 h1:OubzMDH7R7wv+g4z53lN23c2azSCgmAUiUIzLyAjEy0=
137+
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.6.2/go.mod h1:wdkQoDe+Kmien7xXRIUufMeX4FGGpciSLi05kcf+Ig4=
138138
github.com/metal3-io/ip-address-manager/api v1.7.2 h1:jEFG6FK5W9nWQW1itZeZVTe30PpCwiM4OqEail6m38o=
139139
github.com/metal3-io/ip-address-manager/api v1.7.2/go.mod h1:vTvE4KuaIzGLBCcg3MtzG3xfygdQYCX4mpsfL1jFIA4=
140140
github.com/mitchellh/copystructure v1.2.0 h1:vpKXTN4ewci03Vljg/q9QvCGUDttBOGBIa15WveJJGw=

test/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/blang/semver v3.5.1+incompatible
77
github.com/docker/docker v26.1.5+incompatible
88
github.com/jinzhu/copier v0.4.0
9-
github.com/metal3-io/baremetal-operator/apis v0.6.1
9+
github.com/metal3-io/baremetal-operator/apis v0.6.2
1010
github.com/metal3-io/cluster-api-provider-metal3/api v0.0.0
1111
github.com/metal3-io/ip-address-manager/api v1.7.2
1212
github.com/onsi/ginkgo/v2 v2.17.3
@@ -85,7 +85,7 @@ require (
8585
github.com/mailru/easyjson v0.7.7 // indirect
8686
github.com/mattn/go-isatty v0.0.20 // indirect
8787
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
88-
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.6.1 // indirect
88+
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.6.2 // indirect
8989
github.com/mitchellh/copystructure v1.2.0 // indirect
9090
github.com/mitchellh/mapstructure v1.5.0 // indirect
9191
github.com/mitchellh/reflectwalk v1.0.2 // indirect

test/go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -193,10 +193,10 @@ github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWE
193193
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
194194
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 h1:jWpvCLoY8Z/e3VKvlsiIGKtc+UG6U5vzxaoagmhXfyg=
195195
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0/go.mod h1:QUyp042oQthUoa9bqDv0ER0wrtXnBruoNd7aNjkbP+k=
196-
github.com/metal3-io/baremetal-operator/apis v0.6.1 h1:CL5paLPWn0VEAcdtGaKKNMCR9AVYXjSuiO83vwlOHRI=
197-
github.com/metal3-io/baremetal-operator/apis v0.6.1/go.mod h1:dogSrgg9iPAznQonugPKRI41zOlQAaPb80U5WJ06E38=
198-
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.6.1 h1:0kyToP3YDiICgmVGmZc5F6QK0zx1nqzw48vIviOdedM=
199-
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.6.1/go.mod h1:wdkQoDe+Kmien7xXRIUufMeX4FGGpciSLi05kcf+Ig4=
196+
github.com/metal3-io/baremetal-operator/apis v0.6.2 h1:/szSfHXW9+ocxy61J+54VIHsGeOFI9T9JHKdFfjR3jI=
197+
github.com/metal3-io/baremetal-operator/apis v0.6.2/go.mod h1:zj6oG+P54XKkrBc6FdZEpLoJi0MykYWIqp7r7FB0F3k=
198+
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.6.2 h1:OubzMDH7R7wv+g4z53lN23c2azSCgmAUiUIzLyAjEy0=
199+
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.6.2/go.mod h1:wdkQoDe+Kmien7xXRIUufMeX4FGGpciSLi05kcf+Ig4=
200200
github.com/metal3-io/ip-address-manager/api v1.7.2 h1:jEFG6FK5W9nWQW1itZeZVTe30PpCwiM4OqEail6m38o=
201201
github.com/metal3-io/ip-address-manager/api v1.7.2/go.mod h1:vTvE4KuaIzGLBCcg3MtzG3xfygdQYCX4mpsfL1jFIA4=
202202
github.com/mitchellh/copystructure v1.0.0/go.mod h1:SNtv71yrdKgLRyLFxmLdkAbkKEFWgYaq1OVrnRcwhnw=

0 commit comments

Comments
 (0)