Skip to content

Commit 1497be1

Browse files
Bump the gomod-dependencies group across 1 directory with 4 updates
Bumps the gomod-dependencies group with 4 updates in the / directory: [github.com/k8snetworkplumbingwg/network-attachment-definition-client](https://github.com/k8snetworkplumbingwg/network-attachment-definition-client), [github.com/onsi/gomega](https://github.com/onsi/gomega), [google.golang.org/grpc](https://github.com/grpc/grpc-go) and [k8s.io/kubelet](https://github.com/kubernetes/kubelet). Updates `github.com/k8snetworkplumbingwg/network-attachment-definition-client` from 1.7.5 to 1.7.7 - [Release notes](https://github.com/k8snetworkplumbingwg/network-attachment-definition-client/releases) - [Commits](k8snetworkplumbingwg/network-attachment-definition-client@v1.7.5...v1.7.7) Updates `github.com/onsi/gomega` from 1.37.0 to 1.38.0 - [Release notes](https://github.com/onsi/gomega/releases) - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md) - [Commits](onsi/gomega@v1.37.0...v1.38.0) Updates `google.golang.org/grpc` from 1.73.0 to 1.74.2 - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](grpc/grpc-go@v1.73.0...v1.74.2) Updates `k8s.io/kubelet` from 0.32.0 to 0.33.3 - [Commits](kubernetes/kubelet@v0.32.0...v0.33.3) --- updated-dependencies: - dependency-name: github.com/k8snetworkplumbingwg/network-attachment-definition-client dependency-version: 1.7.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gomod-dependencies - dependency-name: github.com/onsi/gomega dependency-version: 1.38.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gomod-dependencies - dependency-name: google.golang.org/grpc dependency-version: 1.74.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gomod-dependencies - dependency-name: k8s.io/kubelet dependency-version: 0.33.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gomod-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 61ad8a8 commit 1497be1

File tree

2 files changed

+69
-71
lines changed

2 files changed

+69
-71
lines changed

go.mod

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/k8snetworkplumbingwg/sriov-network-device-plugin
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/Mellanox/rdmamap v1.1.0
@@ -9,15 +9,15 @@ require (
99
github.com/jaypipes/ghw v0.17.0
1010
github.com/jaypipes/pcidb v1.0.1
1111
github.com/k8snetworkplumbingwg/govdpa v0.1.4
12-
github.com/k8snetworkplumbingwg/network-attachment-definition-client v1.7.5
12+
github.com/k8snetworkplumbingwg/network-attachment-definition-client v1.7.7
1313
github.com/k8snetworkplumbingwg/sriovnet v1.2.1-0.20240128120937-3ca5e43034e6
1414
github.com/onsi/ginkgo v1.16.5
15-
github.com/onsi/gomega v1.37.0
15+
github.com/onsi/gomega v1.38.0
1616
github.com/pkg/errors v0.9.1
1717
github.com/stretchr/testify v1.10.0
1818
github.com/vishvananda/netlink v1.3.1
19-
google.golang.org/grpc v1.73.0
20-
k8s.io/kubelet v0.32.0
19+
google.golang.org/grpc v1.74.2
20+
k8s.io/kubelet v0.33.3
2121
)
2222

2323
require (
@@ -28,16 +28,14 @@ require (
2828
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
2929
github.com/fsnotify/fsnotify v1.5.1 // indirect
3030
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
31-
github.com/go-logr/logr v1.4.2 // indirect
31+
github.com/go-logr/logr v1.4.3 // indirect
3232
github.com/go-ole/go-ole v1.3.0 // indirect
3333
github.com/go-openapi/jsonpointer v0.21.0 // indirect
3434
github.com/go-openapi/jsonreference v0.20.2 // indirect
3535
github.com/go-openapi/swag v0.23.0 // indirect
3636
github.com/gogo/protobuf v1.3.2 // indirect
37-
github.com/golang/protobuf v1.5.4 // indirect
3837
github.com/google/gnostic-models v0.6.9 // indirect
3938
github.com/google/go-cmp v0.7.0 // indirect
40-
github.com/google/gofuzz v1.2.0 // indirect
4139
github.com/google/uuid v1.6.0 // indirect
4240
github.com/josharian/intern v1.0.0 // indirect
4341
github.com/json-iterator/go v1.1.12 // indirect
@@ -56,23 +54,23 @@ require (
5654
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect
5755
github.com/vishvananda/netns v0.0.5 // indirect
5856
github.com/x448/float16 v0.8.4 // indirect
59-
golang.org/x/mod v0.20.0 // indirect
60-
golang.org/x/net v0.38.0 // indirect
61-
golang.org/x/oauth2 v0.28.0 // indirect
62-
golang.org/x/sys v0.31.0 // indirect
63-
golang.org/x/term v0.30.0 // indirect
64-
golang.org/x/text v0.23.0 // indirect
65-
golang.org/x/time v0.7.0 // indirect
66-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250324211829-b45e905df463 // indirect
57+
golang.org/x/mod v0.25.0 // indirect
58+
golang.org/x/net v0.41.0 // indirect
59+
golang.org/x/oauth2 v0.30.0 // indirect
60+
golang.org/x/sys v0.33.0 // indirect
61+
golang.org/x/term v0.32.0 // indirect
62+
golang.org/x/text v0.26.0 // indirect
63+
golang.org/x/time v0.9.0 // indirect
64+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250528174236-200df99c418a // indirect
6765
google.golang.org/protobuf v1.36.6 // indirect
6866
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
6967
gopkg.in/inf.v0 v0.9.1 // indirect
7068
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
7169
gopkg.in/yaml.v3 v3.0.1 // indirect
7270
howett.net/plist v1.0.1 // indirect
73-
k8s.io/api v0.32.0 // indirect
74-
k8s.io/apimachinery v0.32.0 // indirect
75-
k8s.io/client-go v0.32.0 // indirect
71+
k8s.io/api v0.33.3 // indirect
72+
k8s.io/apimachinery v0.33.3 // indirect
73+
k8s.io/client-go v0.33.3 // indirect
7674
k8s.io/klog/v2 v2.130.1 // indirect
7775
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
7876
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect

0 commit comments

Comments
 (0)