Skip to content

Commit 1d68478

Browse files
Update all non-major dependencies
1 parent 97dd961 commit 1d68478

File tree

5 files changed

+202
-71
lines changed

5 files changed

+202
-71
lines changed

charts/kvisor/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ clickhouse:
238238
image:
239239
repository: clickhouse/clickhouse-server
240240
pullPolicy: IfNotPresent
241-
tag: "25.2.1.3085-alpine@sha256:49e2bbe28760d0af142096d837ca2337b0265c910a07504a3175fc9326965bd7"
241+
tag: "25.3.2.39-alpine@sha256:fa5532568591e844a24fdeddc705ae7b6203f00afe286ce6c1fa9f3119d45ba7"
242242

243243
nodeSelector: {}
244244
tolerations: []

devbox.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/jetpack-io/devbox/0.10.4/.schema/devbox.schema.json",
33
"packages": [
4-
4+
55
66
77
8-
8+
99
1010
11-
"bpftrace@0.22.1",
11+
"bpftrace@0.23.1",
1212
1313
14-
15-
14+
15+
1616
],
1717
"env": {
1818
"GOROOT": "$PWD/.devbox/nix/profile/default/share/go"

docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.8'
22
services:
33
clickhouse:
4-
image: clickhouse/clickhouse-server:25.2.1.3085-alpine@sha256:49e2bbe28760d0af142096d837ca2337b0265c910a07504a3175fc9326965bd7
4+
image: clickhouse/clickhouse-server:25.3.2.39-alpine@sha256:fa5532568591e844a24fdeddc705ae7b6203f00afe286ce6c1fa9f3119d45ba7
55
restart: always
66
environment:
77
- CLICKHOUSE_USER=storage

go.mod

+67-64
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@ module github.com/castai/kvisor
22

33
go 1.24
44

5-
toolchain go1.24.1
5+
toolchain go1.24.2
66

77
require (
8-
github.com/ClickHouse/clickhouse-go/v2 v2.32.2
9-
github.com/aquasecurity/trivy v0.60.0
8+
github.com/ClickHouse/clickhouse-go/v2 v2.34.0
9+
github.com/aquasecurity/trivy v0.61.0
1010
github.com/castai/image-analyzer v0.7.2
1111
github.com/cenkalti/backoff/v5 v5.0.2
1212
github.com/cespare/xxhash/v2 v2.3.0
13-
github.com/cilium/cilium v1.17.0-pre.2
14-
github.com/cilium/ebpf v0.17.3
15-
github.com/containerd/containerd v1.7.26
13+
github.com/cilium/cilium v1.17.3
14+
github.com/cilium/ebpf v0.18.0
15+
github.com/containerd/containerd v1.7.27
1616
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
1717
github.com/elastic/go-freelru v0.16.0
1818
github.com/fatih/color v1.18.0
1919
github.com/florianl/go-conntrack v0.4.0
20-
github.com/go-playground/validator/v10 v10.25.0
20+
github.com/go-playground/validator/v10 v10.26.0
2121
github.com/golang/glog v1.2.4
2222
github.com/google/go-containerregistry v0.20.3
2323
github.com/google/gopacket v1.1.19
@@ -27,33 +27,34 @@ require (
2727
github.com/json-iterator/go v1.1.12
2828
github.com/kelseyhightower/envconfig v1.4.0
2929
github.com/labstack/echo/v4 v4.13.3
30-
github.com/magiconair/properties v1.8.9
30+
github.com/magiconair/properties v1.8.10
31+
github.com/mattn/go-shellwords v1.0.12
3132
github.com/onsi/ginkgo v1.16.5
3233
github.com/prometheus/client_golang v1.21.1
33-
github.com/redis/go-redis/v9 v9.7.1
34+
github.com/redis/go-redis/v9 v9.7.3
3435
github.com/samber/lo v1.49.1
3536
github.com/sirupsen/logrus v1.9.3
3637
github.com/spf13/cobra v1.9.1
3738
github.com/spf13/pflag v1.0.6
38-
github.com/spf13/viper v1.19.0
39+
github.com/spf13/viper v1.20.1
3940
github.com/stretchr/testify v1.10.0
40-
github.com/testcontainers/testcontainers-go v0.35.0
41+
github.com/testcontainers/testcontainers-go v0.36.0
4142
github.com/tklauser/go-sysconf v0.3.15
4243
github.com/vishvananda/netns v0.0.5
4344
go.uber.org/atomic v1.11.0
4445
go.uber.org/goleak v1.3.0
45-
golang.org/x/net v0.37.0
46-
golang.org/x/sync v0.12.0
47-
golang.org/x/sys v0.31.0
46+
golang.org/x/net v0.39.0
47+
golang.org/x/sync v0.13.0
48+
golang.org/x/sys v0.32.0
4849
golang.org/x/time v0.11.0
4950
golang.stackrox.io/kube-linter v0.7.2
50-
google.golang.org/grpc v1.71.0
51-
google.golang.org/protobuf v1.36.5
51+
google.golang.org/grpc v1.71.1
52+
google.golang.org/protobuf v1.36.6
5253
gopkg.in/yaml.v3 v3.0.1
53-
k8s.io/api v0.32.2
54-
k8s.io/apimachinery v0.32.2
55-
k8s.io/client-go v0.32.2
56-
k8s.io/cri-api v0.32.2
54+
k8s.io/api v0.32.3
55+
k8s.io/apimachinery v0.32.3
56+
k8s.io/client-go v0.32.3
57+
k8s.io/cri-api v0.32.3
5758
)
5859

5960
require (
@@ -75,7 +76,7 @@ require (
7576
github.com/MakeNowJust/heredoc v1.0.0 // indirect
7677
github.com/Masterminds/squirrel v1.5.4 // indirect
7778
github.com/OneOfOne/xxhash v1.2.8 // indirect
78-
github.com/agnivade/levenshtein v1.2.0 // indirect
79+
github.com/agnivade/levenshtein v1.2.1 // indirect
7980
github.com/alecthomas/chroma v0.10.0 // indirect
8081
github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 // indirect
8182
github.com/andybalholm/brotli v1.1.1 // indirect
@@ -86,36 +87,36 @@ require (
8687
github.com/aquasecurity/go-version v0.0.1 // indirect
8788
github.com/aquasecurity/iamgo v0.0.10 // indirect
8889
github.com/aquasecurity/jfather v0.0.8 // indirect
89-
github.com/aquasecurity/trivy-checks v1.7.1 // indirect
90+
github.com/aquasecurity/trivy-checks v1.8.0 // indirect
9091
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
9192
github.com/aws/aws-sdk-go-v2 v1.36.3 // indirect
92-
github.com/aws/aws-sdk-go-v2/config v1.29.8 // indirect
93-
github.com/aws/aws-sdk-go-v2/credentials v1.17.61 // indirect
93+
github.com/aws/aws-sdk-go-v2/config v1.29.9 // indirect
94+
github.com/aws/aws-sdk-go-v2/credentials v1.17.62 // indirect
9495
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.30 // indirect
9596
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.34 // indirect
9697
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.34 // indirect
9798
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.3 // indirect
98-
github.com/aws/aws-sdk-go-v2/service/ecr v1.42.0 // indirect
99+
github.com/aws/aws-sdk-go-v2/service/ecr v1.42.1 // indirect
99100
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.3 // indirect
100101
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.15 // indirect
101-
github.com/aws/aws-sdk-go-v2/service/s3 v1.78.0 // indirect
102-
github.com/aws/aws-sdk-go-v2/service/sso v1.25.0 // indirect
103-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.29.0 // indirect
104-
github.com/aws/aws-sdk-go-v2/service/sts v1.33.16 // indirect
102+
github.com/aws/aws-sdk-go-v2/service/s3 v1.78.1 // indirect
103+
github.com/aws/aws-sdk-go-v2/service/sso v1.25.1 // indirect
104+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.29.1 // indirect
105+
github.com/aws/aws-sdk-go-v2/service/sts v1.33.17 // indirect
105106
github.com/aws/smithy-go v1.22.3 // indirect
106107
github.com/blang/semver/v4 v4.0.0 // indirect
107108
github.com/bmatcuk/doublestar/v4 v4.8.1 // indirect
108109
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
109110
github.com/chai2010/gettext-go v1.0.2 // indirect
110111
github.com/cilium/hive v0.0.0-20250121145729-e67f66eb0375 // indirect
111-
github.com/cilium/proxy v0.0.0-20241115112946-fb67566cbd95 // indirect
112-
github.com/cilium/statedb v0.3.4 // indirect
112+
github.com/cilium/proxy v0.0.0-20250408103314-d3be7c547203 // indirect
113+
github.com/cilium/statedb v0.3.6 // indirect
113114
github.com/cilium/stream v0.0.0-20241203114243-53c3e5d79744 // indirect
114115
github.com/cilium/workerpool v1.2.0 // indirect
115-
github.com/cncf/xds/go v0.0.0-20241223141626-cff3c89139a3 // indirect
116+
github.com/cncf/xds/go v0.0.0-20250326154945-ae57f3c0d45f // indirect
116117
github.com/containerd/cgroups/v3 v3.0.3 // indirect
117118
github.com/containerd/containerd/api v1.8.0 // indirect
118-
github.com/containerd/containerd/v2 v2.0.2 // indirect
119+
github.com/containerd/containerd/v2 v2.0.4 // indirect
119120
github.com/containerd/errdefs v1.0.0 // indirect
120121
github.com/containerd/errdefs/pkg v0.3.0 // indirect
121122
github.com/containerd/platforms v1.0.0-rc.1 // indirect
@@ -124,6 +125,7 @@ require (
124125
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
125126
github.com/cpuguy83/dockercfg v0.3.2 // indirect
126127
github.com/dlclark/regexp2 v1.4.0 // indirect
128+
github.com/ebitengine/purego v0.8.2 // indirect
127129
github.com/emirpasic/gods v1.18.1 // indirect
128130
github.com/envoyproxy/go-control-plane/envoy v1.32.4 // indirect
129131
github.com/envoyproxy/protoc-gen-validate v1.2.1 // indirect
@@ -135,7 +137,7 @@ require (
135137
github.com/go-faster/errors v0.7.1 // indirect
136138
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
137139
github.com/go-git/go-billy/v5 v5.6.2 // indirect
138-
github.com/go-git/go-git/v5 v5.13.2 // indirect
140+
github.com/go-git/go-git/v5 v5.14.0 // indirect
139141
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
140142
github.com/go-ini/ini v1.67.0 // indirect
141143
github.com/go-json-experiment/json v0.0.0-20250211171154-1ae217ad3535 // indirect
@@ -147,7 +149,8 @@ require (
147149
github.com/go-openapi/spec v0.21.0 // indirect
148150
github.com/go-openapi/strfmt v0.23.0 // indirect
149151
github.com/go-openapi/validate v0.24.0 // indirect
150-
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
152+
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
153+
github.com/golang-jwt/jwt/v5 v5.2.2 // indirect
151154
github.com/google/go-github/v62 v62.0.0 // indirect
152155
github.com/google/go-querystring v1.1.0 // indirect
153156
github.com/gopacket/gopacket v1.3.1 // indirect
@@ -170,7 +173,6 @@ require (
170173
github.com/lufia/plan9stats v0.0.0-20240226150601-1dcf7310316a // indirect
171174
github.com/mackerelio/go-osstat v0.2.5 // indirect
172175
github.com/masahiro331/go-mvn-version v0.0.0-20250131095131-f4974fa13b8a // indirect
173-
github.com/mattn/go-shellwords v1.0.12 // indirect
174176
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
175177
github.com/mitchellh/hashstructure/v2 v2.0.2 // indirect
176178
github.com/moby/docker-image-spec v1.3.1 // indirect
@@ -183,7 +185,7 @@ require (
183185
github.com/oklog/ulid/v2 v2.1.0 // indirect
184186
github.com/onsi/ginkgo/v2 v2.22.2 // indirect
185187
github.com/onsi/gomega v1.36.2 // indirect
186-
github.com/open-policy-agent/opa v1.1.0 // indirect
188+
github.com/open-policy-agent/opa v1.2.0 // indirect
187189
github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 // indirect
188190
github.com/opentracing/opentracing-go v1.2.1-0.20220228012449-10b1cf09e00b // indirect
189191
github.com/owenrumney/squealer v1.2.11 // indirect
@@ -206,14 +208,15 @@ require (
206208
github.com/segmentio/asm v1.2.0 // indirect
207209
github.com/shibumi/go-pathspec v1.3.0 // indirect
208210
github.com/shirou/gopsutil/v3 v3.24.2 // indirect
211+
github.com/shirou/gopsutil/v4 v4.25.1 // indirect
209212
github.com/shoenig/go-m1cpu v0.1.6 // indirect
210-
github.com/skeema/knownhosts v1.3.0 // indirect
213+
github.com/skeema/knownhosts v1.3.1 // indirect
211214
github.com/spdx/tools-golang v0.5.5 // indirect
212215
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect
213216
github.com/tchap/go-patricia/v2 v2.3.2 // indirect
214217
github.com/tklauser/numcpus v0.10.0 // indirect
215218
github.com/tonistiigi/go-csvvalue v0.0.0-20240710180619-ddb21b71c0b4 // indirect
216-
github.com/vishvananda/netlink v1.3.1-0.20241022031324-976bd8de7d81 // indirect
219+
github.com/vishvananda/netlink v1.3.1-0.20250303224720-0e7078ed04c8 // indirect
217220
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
218221
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
219222
github.com/x448/float16 v0.8.4 // indirect
@@ -237,16 +240,16 @@ require (
237240
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
238241
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
239242
gopkg.in/warnings.v0 v0.1.2 // indirect
240-
k8s.io/apiserver v0.32.1 // indirect
241-
k8s.io/component-base v0.32.1 // indirect
243+
k8s.io/apiserver v0.32.2 // indirect
244+
k8s.io/component-base v0.32.3 // indirect
242245
k8s.io/klog/v2 v2.130.1 // indirect
243-
k8s.io/kubectl v0.32.1 // indirect
246+
k8s.io/kubectl v0.32.3 // indirect
244247
knative.dev/pkg v0.0.0-20241218051509-40afb7c5436e // indirect
245-
mvdan.cc/sh/v3 v3.10.0 // indirect
246-
sigs.k8s.io/controller-runtime v0.19.3 // indirect
248+
mvdan.cc/sh/v3 v3.11.0 // indirect
249+
sigs.k8s.io/controller-runtime v0.20.1 // indirect
247250
sigs.k8s.io/gateway-api v1.2.1 // indirect
248251
sigs.k8s.io/mcs-api v0.1.1-0.20250116162235-62ede9a032dc // indirect
249-
tags.cncf.io/container-device-interface v0.8.0 // indirect
252+
tags.cncf.io/container-device-interface v0.8.1 // indirect
250253
tags.cncf.io/container-device-interface/specs-go v0.8.0 // indirect
251254
)
252255

@@ -281,20 +284,20 @@ require (
281284
github.com/aws/aws-sdk-go v1.55.6 // indirect
282285
github.com/beorn7/perks v1.0.1 // indirect
283286
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
284-
github.com/cheggaaa/pb/v3 v3.1.6 // indirect
285-
github.com/cloudflare/circl v1.5.0 // indirect
287+
github.com/cheggaaa/pb/v3 v3.1.7 // indirect
288+
github.com/cloudflare/circl v1.6.0 // indirect
286289
github.com/containerd/continuity v0.4.5 // indirect
287290
github.com/containerd/fifo v1.1.0 // indirect
288291
github.com/containerd/log v0.1.0 // indirect
289292
github.com/containerd/stargz-snapshotter/estargz v0.16.3 // indirect
290293
github.com/containerd/ttrpc v1.2.7 // indirect
291294
github.com/containerd/typeurl/v2 v2.2.3 // indirect
292-
github.com/cyphar/filepath-securejoin v0.3.6 // indirect
295+
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
293296
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
294297
github.com/distribution/reference v0.6.0 // indirect
295298
github.com/docker/cli v27.5.0+incompatible // indirect
296299
github.com/docker/distribution v2.8.3+incompatible // indirect
297-
github.com/docker/docker v27.5.1+incompatible // indirect
300+
github.com/docker/docker v28.0.4+incompatible // indirect
298301
github.com/docker/docker-credential-helpers v0.8.2 // indirect
299302
github.com/docker/go-connections v0.5.0 // indirect
300303
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect
@@ -315,7 +318,7 @@ require (
315318
github.com/go-playground/universal-translator v0.18.1 // indirect
316319
github.com/gobwas/glob v0.2.3 // indirect
317320
github.com/gogo/protobuf v1.3.2 // indirect
318-
github.com/golang-jwt/jwt/v4 v4.5.1 // indirect
321+
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
319322
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
320323
github.com/golang/protobuf v1.5.4 // indirect
321324
github.com/google/btree v1.1.3 // indirect
@@ -377,7 +380,7 @@ require (
377380
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
378381
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
379382
github.com/opencontainers/go-digest v1.0.0 // indirect
380-
github.com/opencontainers/image-spec v1.1.0 // indirect
383+
github.com/opencontainers/image-spec v1.1.1 // indirect
381384
github.com/opencontainers/runtime-spec v1.2.0 // indirect
382385
github.com/opencontainers/selinux v1.11.1 // indirect
383386
github.com/openshift/api v3.9.0+incompatible // indirect
@@ -390,12 +393,12 @@ require (
390393
github.com/prometheus/procfs v0.15.1 // indirect
391394
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
392395
github.com/rivo/uniseg v0.4.7 // indirect
393-
github.com/sagikazarmark/locafero v0.6.0 // indirect
396+
github.com/sagikazarmark/locafero v0.7.0 // indirect
394397
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
395398
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
396399
github.com/shopspring/decimal v1.4.0 // indirect
397400
github.com/sourcegraph/conc v0.3.0 // indirect
398-
github.com/spf13/afero v1.11.0 // indirect
401+
github.com/spf13/afero v1.12.0 // indirect
399402
github.com/spf13/cast v1.7.1 // indirect
400403
github.com/stretchr/objx v0.5.2 // indirect
401404
github.com/subosito/gotenv v1.6.0 // indirect
@@ -416,22 +419,22 @@ require (
416419
go.opentelemetry.io/otel/trace v1.35.0 // indirect
417420
go.uber.org/multierr v1.11.0 // indirect
418421
go.uber.org/zap v1.27.0 // indirect
419-
golang.org/x/crypto v0.36.0 // indirect
422+
golang.org/x/crypto v0.37.0 // indirect
420423
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect
421-
golang.org/x/mod v0.23.0 // indirect
422-
golang.org/x/oauth2 v0.25.0 // indirect
423-
golang.org/x/term v0.30.0 // indirect
424-
golang.org/x/text v0.23.0 // indirect
425-
golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9 // indirect
424+
golang.org/x/mod v0.24.0
425+
golang.org/x/oauth2 v0.27.0 // indirect
426+
golang.org/x/term v0.31.0 // indirect
427+
golang.org/x/text v0.24.0 // indirect
428+
golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9
426429
google.golang.org/api v0.218.0 // indirect
427430
google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 // indirect
428-
google.golang.org/genproto/googleapis/api v0.0.0-20250115164207-1a7da9e5054f // indirect
429-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f // indirect
431+
google.golang.org/genproto/googleapis/api v0.0.0-20250407143221-ac9807e6c755 // indirect
432+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250407143221-ac9807e6c755 // indirect
430433
gopkg.in/inf.v0 v0.9.1 // indirect
431434
gopkg.in/ini.v1 v1.67.0 // indirect
432-
helm.sh/helm/v3 v3.17.1 // indirect
433-
k8s.io/apiextensions-apiserver v0.32.1 // indirect
434-
k8s.io/cli-runtime v0.32.1 // indirect
435+
helm.sh/helm/v3 v3.17.2 // indirect
436+
k8s.io/apiextensions-apiserver v0.32.2 // indirect
437+
k8s.io/cli-runtime v0.32.3 // indirect
435438
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
436439
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect
437440
oras.land/oras-go v1.2.5 // indirect

0 commit comments

Comments
 (0)