Skip to content

Commit a16bd56

Browse files
committed
Bump kine for metrics panic fix
Signed-off-by: Brad Davidson <[email protected]>
1 parent 4e69d6a commit a16bd56

File tree

2 files changed

+76
-76
lines changed

2 files changed

+76
-76
lines changed

go.mod

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ require (
9494
github.com/erikdubbelboer/gspt v0.0.0-20190125194910-e68493906b83
9595
github.com/flannel-io/flannel v0.27.0
9696
github.com/fsnotify/fsnotify v1.9.0
97-
github.com/go-logr/logr v1.4.2
97+
github.com/go-logr/logr v1.4.3
9898
github.com/go-test/deep v1.0.7
9999
github.com/google/cadvisor v0.52.1
100100
github.com/google/go-containerregistry v0.20.2
@@ -108,7 +108,7 @@ require (
108108
github.com/json-iterator/go v1.1.12
109109
github.com/k3s-io/api v0.1.3
110110
github.com/k3s-io/helm-controller v0.16.13
111-
github.com/k3s-io/kine v0.13.17
111+
github.com/k3s-io/kine v0.13.19
112112
github.com/klauspost/compress v1.18.0
113113
github.com/libp2p/go-libp2p v0.41.1
114114
github.com/minio/minio-go/v7 v7.0.91
@@ -121,8 +121,8 @@ require (
121121
github.com/opencontainers/selinux v1.12.0
122122
github.com/otiai10/copy v1.7.0
123123
github.com/pkg/errors v0.9.1
124-
github.com/prometheus/client_golang v1.22.0
125-
github.com/prometheus/common v0.63.0
124+
github.com/prometheus/client_golang v1.23.0
125+
github.com/prometheus/common v0.65.0
126126
github.com/rancher/dynamiclistener v0.7.0
127127
github.com/rancher/lasso v0.2.3
128128
github.com/rancher/permissions v0.0.0-20240523180510-4001d3d637f7
@@ -138,19 +138,19 @@ require (
138138
github.com/urfave/cli/v2 v2.27.7
139139
github.com/vishvananda/netlink v1.3.1
140140
github.com/yl2chen/cidranger v1.0.2
141-
go.etcd.io/etcd/api/v3 v3.5.21
142-
go.etcd.io/etcd/client/pkg/v3 v3.5.21
143-
go.etcd.io/etcd/client/v3 v3.5.21
141+
go.etcd.io/etcd/api/v3 v3.6.4
142+
go.etcd.io/etcd/client/pkg/v3 v3.6.4
143+
go.etcd.io/etcd/client/v3 v3.6.4
144144
go.etcd.io/etcd/etcdutl/v3 v3.5.18
145-
go.etcd.io/etcd/server/v3 v3.5.21
145+
go.etcd.io/etcd/server/v3 v3.6.4
146146
go.uber.org/mock v0.5.2
147147
go.uber.org/zap v1.27.0
148-
golang.org/x/crypto v0.37.0
149-
golang.org/x/mod v0.24.0
150-
golang.org/x/net v0.39.0
148+
golang.org/x/crypto v0.40.0
149+
golang.org/x/mod v0.26.0
150+
golang.org/x/net v0.42.0
151151
golang.org/x/sync v0.16.0
152152
golang.org/x/sys v0.34.0
153-
google.golang.org/grpc v1.73.0
153+
google.golang.org/grpc v1.74.2
154154
gopkg.in/yaml.v2 v2.4.0
155155
k8s.io/api v0.33.4
156156
k8s.io/apiextensions-apiserver v0.33.4
@@ -252,7 +252,7 @@ require (
252252
github.com/euank/go-kmsg-parser v2.0.0+incompatible // indirect
253253
github.com/evanphx/json-patch v5.9.11+incompatible // indirect
254254
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
255-
github.com/expr-lang/expr v1.17.2 // indirect
255+
github.com/expr-lang/expr v1.17.5 // indirect
256256
github.com/fatih/camelcase v1.0.0 // indirect
257257
github.com/felixge/httpsnoop v1.0.4 // indirect
258258
github.com/flynn/noise v1.1.0 // indirect
@@ -278,7 +278,7 @@ require (
278278
github.com/google/cel-go v0.23.2 // indirect
279279
github.com/google/gnostic-models v0.6.9 // indirect
280280
github.com/google/go-cmp v0.7.0 // indirect
281-
github.com/google/go-tpm v0.9.4 // indirect
281+
github.com/google/go-tpm v0.9.5 // indirect
282282
github.com/google/gofuzz v1.2.0 // indirect
283283
github.com/google/gopacket v1.1.19 // indirect
284284
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
@@ -287,7 +287,7 @@ require (
287287
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
288288
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
289289
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
290-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 // indirect
290+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
291291
github.com/hanwen/go-fuse/v2 v2.8.0 // indirect
292292
github.com/hashicorp/errwrap v1.1.0 // indirect
293293
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
@@ -336,7 +336,7 @@ require (
336336
github.com/mailru/easyjson v0.9.0 // indirect
337337
github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd // indirect
338338
github.com/mattn/go-isatty v0.0.20 // indirect
339-
github.com/mattn/go-sqlite3 v1.14.28 // indirect
339+
github.com/mattn/go-sqlite3 v1.14.32 // indirect
340340
github.com/mdlayher/genetlink v1.3.2 // indirect
341341
github.com/mdlayher/netlink v1.7.2 // indirect
342342
github.com/mdlayher/socket v0.5.1 // indirect
@@ -380,10 +380,10 @@ require (
380380
github.com/multiformats/go-varint v0.0.7 // indirect
381381
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
382382
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
383-
github.com/nats-io/jsm.go v0.2.3 // indirect
383+
github.com/nats-io/jsm.go v0.2.4 // indirect
384384
github.com/nats-io/jwt/v2 v2.7.4 // indirect
385-
github.com/nats-io/nats-server/v2 v2.11.3 // indirect
386-
github.com/nats-io/nats.go v1.43.0 // indirect
385+
github.com/nats-io/nats-server/v2 v2.11.6 // indirect
386+
github.com/nats-io/nats.go v1.44.0 // indirect
387387
github.com/nats-io/nkeys v0.4.11 // indirect
388388
github.com/nats-io/nuid v1.0.1 // indirect
389389
github.com/opencontainers/go-digest v1.0.0 // indirect
@@ -420,7 +420,7 @@ require (
420420
github.com/polydawn/refmt v0.89.0 // indirect
421421
github.com/pquerna/cachecontrol v0.1.0 // indirect
422422
github.com/prometheus/client_model v0.6.2 // indirect
423-
github.com/prometheus/procfs v0.16.1 // indirect
423+
github.com/prometheus/procfs v0.17.0 // indirect
424424
github.com/quic-go/qpack v0.5.1 // indirect
425425
github.com/quic-go/quic-go v0.50.1 // indirect
426426
github.com/quic-go/webtransport-go v0.8.1-0.20241018022711-4ac2c9250e66 // indirect
@@ -439,7 +439,7 @@ require (
439439
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect
440440
github.com/syndtr/goleveldb v1.0.0 // indirect
441441
github.com/tchap/go-patricia/v2 v2.3.2 // indirect
442-
github.com/tidwall/btree v1.8.0 // indirect
442+
github.com/tidwall/btree v1.8.1 // indirect
443443
github.com/tmc/grpc-websocket-proxy v0.0.0-20220101234140-673ab2c3ae75 // indirect
444444
github.com/vbatts/tar-split v0.12.1 // indirect
445445
github.com/vishvananda/netns v0.0.5 // indirect
@@ -450,36 +450,36 @@ require (
450450
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
451451
go.etcd.io/bbolt v1.4.2 // indirect
452452
go.etcd.io/etcd/client/v2 v2.305.21 // indirect
453-
go.etcd.io/etcd/pkg/v3 v3.5.21 // indirect
453+
go.etcd.io/etcd/pkg/v3 v3.6.4 // indirect
454454
go.etcd.io/etcd/raft/v3 v3.5.21 // indirect
455455
go.opencensus.io v0.24.0 // indirect
456456
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
457457
go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful v0.42.0 // indirect
458458
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0 // indirect
459459
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 // indirect
460-
go.opentelemetry.io/otel v1.35.0 // indirect
460+
go.opentelemetry.io/otel v1.36.0 // indirect
461461
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.35.0 // indirect
462462
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.35.0 // indirect
463-
go.opentelemetry.io/otel/metric v1.35.0 // indirect
464-
go.opentelemetry.io/otel/sdk v1.35.0 // indirect
465-
go.opentelemetry.io/otel/trace v1.35.0 // indirect
463+
go.opentelemetry.io/otel/metric v1.36.0 // indirect
464+
go.opentelemetry.io/otel/sdk v1.36.0 // indirect
465+
go.opentelemetry.io/otel/trace v1.36.0 // indirect
466466
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
467467
go.uber.org/automaxprocs v1.6.0 // indirect
468468
go.uber.org/dig v1.18.0 // indirect
469469
go.uber.org/fx v1.23.0 // indirect
470470
go.uber.org/multierr v1.11.0 // indirect
471-
golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0 // indirect
471+
golang.org/x/exp v0.0.0-20250717185816-542afb5b7346 // indirect
472472
golang.org/x/oauth2 v0.28.0 // indirect
473473
golang.org/x/term v0.31.0 // indirect
474-
golang.org/x/text v0.24.0 // indirect
475-
golang.org/x/time v0.11.0 // indirect
476-
golang.org/x/tools v0.32.0 // indirect
474+
golang.org/x/text v0.27.0 // indirect
475+
golang.org/x/time v0.12.0 // indirect
476+
golang.org/x/tools v0.35.0 // indirect
477477
golang.zx2c4.com/wireguard v0.0.0-20231211153847-12269c276173 // indirect
478478
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20241231184526-a9ab2273dd10 // indirect
479479
gonum.org/v1/gonum v0.15.1 // indirect
480480
google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 // indirect
481-
google.golang.org/genproto/googleapis/api v0.0.0-20250414145226-207652e42e2e // indirect
482-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250414145226-207652e42e2e // indirect
481+
google.golang.org/genproto/googleapis/api v0.0.0-20250528174236-200df99c418a // indirect
482+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250528174236-200df99c418a // indirect
483483
google.golang.org/protobuf v1.36.6 // indirect
484484
gopkg.in/go-jose/go-jose.v2 v2.6.3 // indirect
485485
gopkg.in/inf.v0 v0.9.1 // indirect

0 commit comments

Comments
 (0)