Skip to content

Commit 379269e

Browse files
Merge pull request #1948 from Nordix/mquhuy/uplift-bmo-v0.5.2
🌱 Uplift BMO to v0.5.2
2 parents 63c127c + f9935ec commit 379269e

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.20
55
require (
66
github.com/go-logr/logr v1.3.0
77
github.com/golang/mock v1.6.0
8-
github.com/metal3-io/baremetal-operator/apis v0.5.1
8+
github.com/metal3-io/baremetal-operator/apis v0.5.2
99
github.com/metal3-io/cluster-api-provider-metal3/api v0.0.0
1010
github.com/metal3-io/ip-address-manager/api v1.6.4
1111
github.com/onsi/ginkgo/v2 v2.13.2
@@ -67,7 +67,7 @@ require (
6767
github.com/json-iterator/go v1.1.12 // indirect
6868
github.com/mailru/easyjson v0.7.7 // indirect
6969
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
70-
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.5.1 // indirect
70+
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.5.2 // indirect
7171
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
7272
github.com/modern-go/reflect2 v1.0.2 // indirect
7373
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
@@ -128,10 +128,10 @@ github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0
128128
github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
129129
github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo=
130130
github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4=
131-
github.com/metal3-io/baremetal-operator/apis v0.5.1 h1:l6VCuM2nSYMsdir3mocXvF80F7HnTXVZ7NNIoMEYbio=
132-
github.com/metal3-io/baremetal-operator/apis v0.5.1/go.mod h1:Q3MHes59mRabjHM6ARoHfgd2uXUjJIytl3/uflzhyew=
133-
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.5.1 h1:X0+MWsJ+Gj/TAkmhGybvesvxk6zQKu3NQXzvC6l0iJs=
134-
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.5.1/go.mod h1:399nvdaqoU9rTI25UdFw2EWcVjmJPpeZPIhfDAIx/XU=
131+
github.com/metal3-io/baremetal-operator/apis v0.5.2 h1:JWI2xCUhML6CTZvsxDf2wed0pszZaWzLPRuxP0pRFQI=
132+
github.com/metal3-io/baremetal-operator/apis v0.5.2/go.mod h1:BIs7pPOtXCxAb0jfalJR+TQummPYtjdQxQFwcfv2Ao8=
133+
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.5.2 h1:EkPlxqUSq4jx4UIHWZLKgllXRBZIZa6pIU5uMF64CGA=
134+
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.5.2/go.mod h1:399nvdaqoU9rTI25UdFw2EWcVjmJPpeZPIhfDAIx/XU=
135135
github.com/metal3-io/ip-address-manager/api v1.6.4 h1:5EPfglkL4Py11DZ3GbTXkMGiaTd8HeO+T8P66Ufd9K4=
136136
github.com/metal3-io/ip-address-manager/api v1.6.4/go.mod h1:XMmU+5LQJ2FjT5j9fC5+oXI3Q9WeY2Rd8I4QU2j2Nb4=
137137
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
@@ -5,7 +5,7 @@ go 1.20
55
require (
66
github.com/docker/docker v24.0.9+incompatible
77
github.com/jinzhu/copier v0.4.0
8-
github.com/metal3-io/baremetal-operator/apis v0.5.1
8+
github.com/metal3-io/baremetal-operator/apis v0.5.2
99
github.com/metal3-io/cluster-api-provider-metal3/api v0.0.0
1010
github.com/metal3-io/ip-address-manager/api v1.6.4
1111
github.com/onsi/ginkgo/v2 v2.13.2
@@ -82,7 +82,7 @@ require (
8282
github.com/mailru/easyjson v0.7.7 // indirect
8383
github.com/mattn/go-isatty v0.0.20 // indirect
8484
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
85-
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.5.1 // indirect
85+
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.5.2 // indirect
8686
github.com/mitchellh/copystructure v1.2.0 // indirect
8787
github.com/mitchellh/mapstructure v1.5.0 // indirect
8888
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
@@ -264,10 +264,10 @@ github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWE
264264
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
265265
github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo=
266266
github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4=
267-
github.com/metal3-io/baremetal-operator/apis v0.5.1 h1:l6VCuM2nSYMsdir3mocXvF80F7HnTXVZ7NNIoMEYbio=
268-
github.com/metal3-io/baremetal-operator/apis v0.5.1/go.mod h1:Q3MHes59mRabjHM6ARoHfgd2uXUjJIytl3/uflzhyew=
269-
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.5.1 h1:X0+MWsJ+Gj/TAkmhGybvesvxk6zQKu3NQXzvC6l0iJs=
270-
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.5.1/go.mod h1:399nvdaqoU9rTI25UdFw2EWcVjmJPpeZPIhfDAIx/XU=
267+
github.com/metal3-io/baremetal-operator/apis v0.5.2 h1:JWI2xCUhML6CTZvsxDf2wed0pszZaWzLPRuxP0pRFQI=
268+
github.com/metal3-io/baremetal-operator/apis v0.5.2/go.mod h1:BIs7pPOtXCxAb0jfalJR+TQummPYtjdQxQFwcfv2Ao8=
269+
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.5.2 h1:EkPlxqUSq4jx4UIHWZLKgllXRBZIZa6pIU5uMF64CGA=
270+
github.com/metal3-io/baremetal-operator/pkg/hardwareutils v0.5.2/go.mod h1:399nvdaqoU9rTI25UdFw2EWcVjmJPpeZPIhfDAIx/XU=
271271
github.com/metal3-io/ip-address-manager/api v1.6.4 h1:5EPfglkL4Py11DZ3GbTXkMGiaTd8HeO+T8P66Ufd9K4=
272272
github.com/metal3-io/ip-address-manager/api v1.6.4/go.mod h1:XMmU+5LQJ2FjT5j9fC5+oXI3Q9WeY2Rd8I4QU2j2Nb4=
273273
github.com/mitchellh/copystructure v1.0.0/go.mod h1:SNtv71yrdKgLRyLFxmLdkAbkKEFWgYaq1OVrnRcwhnw=

0 commit comments

Comments
 (0)