Skip to content

Commit 25dd16a

Browse files
nsmbotNSMBotbszirtes
authored
Update from update/networkservicemesh/sdk-k8s (#848)
* Update go.mod and go.sum to latest version from networkservicemesh/sdk-k8s@main PR link: networkservicemesh/sdk-k8s#558 Commit: de9b9d6 Author: Botond Szirtes Date: 2025-04-17 13:01:13 +0200 Message: - Uplift k8s.io/* go dependencies (#558) Signed-off-by: NSMBot <[email protected]> * Rebase .golangci.yml Signed-off-by: Botond Szirtes <[email protected]> --------- Signed-off-by: NSMBot <[email protected]> Signed-off-by: Botond Szirtes <[email protected]> Co-authored-by: NSMBot <[email protected]> Co-authored-by: Botond Szirtes <[email protected]>
1 parent acd8988 commit 25dd16a

File tree

2 files changed

+73
-83
lines changed

2 files changed

+73
-83
lines changed

go.mod

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -12,47 +12,47 @@ require (
1212
github.com/kelseyhightower/envconfig v1.4.0
1313
github.com/networkservicemesh/api v1.14.5-0.20250331122810-c41e3fdcf9e1
1414
github.com/networkservicemesh/sdk v0.5.1-0.20250401065529-7c0bd2f15e17
15-
github.com/networkservicemesh/sdk-k8s v0.0.0-20250401070001-8ff594338731
15+
github.com/networkservicemesh/sdk-k8s v0.0.0-20250417110113-de9b9d61dea9
1616
github.com/networkservicemesh/sdk-sriov v0.0.0-20250401070119-6515cc688532
1717
github.com/pkg/errors v0.9.1
1818
github.com/sirupsen/logrus v1.9.0
1919
github.com/spiffe/go-spiffe/v2 v2.1.7
20-
github.com/stretchr/testify v1.8.4
21-
google.golang.org/grpc v1.60.1
22-
k8s.io/kubelet v0.28.3
20+
github.com/stretchr/testify v1.9.0
21+
google.golang.org/grpc v1.65.0
22+
k8s.io/kubelet v0.32.0-alpha.1
2323
)
2424

2525
require (
26-
cloud.google.com/go/compute/metadata v0.2.3 // indirect
26+
cloud.google.com/go/compute/metadata v0.3.0 // indirect
2727
github.com/Microsoft/go-winio v0.6.1 // indirect
2828
github.com/OneOfOne/xxhash v1.2.8 // indirect
2929
github.com/agnivade/levenshtein v1.1.1 // indirect
3030
github.com/beorn7/perks v1.0.1 // indirect
3131
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
32-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
33-
github.com/davecgh/go-spew v1.1.1 // indirect
32+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
33+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3434
github.com/edwarnicke/serialize v1.0.7 // indirect
3535
github.com/fsnotify/fsnotify v1.5.4 // indirect
3636
github.com/ghodss/yaml v1.0.0 // indirect
3737
github.com/go-jose/go-jose/v3 v3.0.4 // indirect
38-
github.com/go-logr/logr v1.3.0 // indirect
38+
github.com/go-logr/logr v1.4.2 // indirect
3939
github.com/go-logr/stdr v1.2.2 // indirect
4040
github.com/gobwas/glob v0.2.3 // indirect
4141
github.com/gogo/protobuf v1.3.2 // indirect
4242
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
43-
github.com/golang/protobuf v1.5.3 // indirect
43+
github.com/golang/protobuf v1.5.4 // indirect
4444
github.com/google/go-cmp v0.6.0 // indirect
4545
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
46-
github.com/google/uuid v1.3.1 // indirect
46+
github.com/google/uuid v1.6.0 // indirect
4747
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect
48-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
48+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4949
github.com/networkservicemesh/sdk-kernel v0.0.0-20250401065746-7508fae33014 // indirect
5050
github.com/open-policy-agent/opa v0.44.0 // indirect
51-
github.com/pmezard/go-difflib v1.0.0 // indirect
52-
github.com/prometheus/client_golang v1.17.0 // indirect
53-
github.com/prometheus/client_model v0.5.0 // indirect
54-
github.com/prometheus/common v0.44.0 // indirect
55-
github.com/prometheus/procfs v0.11.1 // indirect
51+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
52+
github.com/prometheus/client_golang v1.19.1 // indirect
53+
github.com/prometheus/client_model v0.6.1 // indirect
54+
github.com/prometheus/common v0.55.0 // indirect
55+
github.com/prometheus/procfs v0.15.1 // indirect
5656
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
5757
github.com/tchap/go-patricia/v2 v2.3.1 // indirect
5858
github.com/vishvananda/netlink v1.3.1-0.20240922070040-084abd93d350 // indirect
@@ -74,15 +74,15 @@ require (
7474
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
7575
go.uber.org/atomic v1.7.0 // indirect
7676
golang.org/x/crypto v0.35.0 // indirect
77-
golang.org/x/mod v0.17.0 // indirect
77+
golang.org/x/mod v0.21.0 // indirect
7878
golang.org/x/net v0.36.0 // indirect
7979
golang.org/x/sync v0.11.0 // indirect
8080
golang.org/x/sys v0.30.0 // indirect
8181
golang.org/x/text v0.22.0 // indirect
82-
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
83-
google.golang.org/genproto/googleapis/api v0.0.0-20231012201019-e917dd12ba7a // indirect
84-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405 // indirect
85-
google.golang.org/protobuf v1.33.0 // indirect
82+
golang.org/x/tools v0.26.0 // indirect
83+
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 // indirect
84+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240826202546-f6391c0de4c7 // indirect
85+
google.golang.org/protobuf v1.35.1 // indirect
8686
gopkg.in/yaml.v2 v2.4.0 // indirect
8787
gopkg.in/yaml.v3 v3.0.1 // indirect
8888
)

0 commit comments

Comments
 (0)