Skip to content

Commit 1fb8453

Browse files
committed
chore: update Go modules
Azure SDK has a CVE, bump other modules. Update `hydrophone` with my fixes which got merged upstream. Signed-off-by: Andrey Smirnov <[email protected]>
1 parent 8e15621 commit 1fb8453

File tree

6 files changed

+99
-100
lines changed

6 files changed

+99
-100
lines changed

Diff for: go.mod

+24-24
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ require (
3939

4040
require (
4141
cloud.google.com/go/compute/metadata v0.3.0
42-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1
43-
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.2
42+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.12.0
43+
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0
4444
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azcertificates v1.1.0
4545
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.1.0
4646
github.com/alexflint/go-filemutex v1.3.0
47-
github.com/aws/aws-sdk-go-v2/config v1.27.17
48-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.4
49-
github.com/aws/aws-sdk-go-v2/service/kms v1.32.2
47+
github.com/aws/aws-sdk-go-v2/config v1.27.18
48+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.5
49+
github.com/aws/aws-sdk-go-v2/service/kms v1.32.3
5050
github.com/aws/smithy-go v1.20.2
5151
github.com/beevik/ntp v1.4.3
5252
github.com/benbjohnson/clock v1.3.5 // project archived on 2023-05-18
@@ -56,15 +56,15 @@ require (
5656
github.com/containerd/containerd/api v1.8.0-rc.2
5757
github.com/containerd/containerd/v2 v2.0.0-rc.2
5858
github.com/containerd/errdefs v0.1.0
59-
github.com/containerd/platforms v0.2.0
59+
github.com/containerd/platforms v0.2.1
6060
github.com/containerd/typeurl/v2 v2.1.1
6161
github.com/containernetworking/cni v1.2.0
6262
github.com/containernetworking/plugins v1.5.0
6363
github.com/coredns/coredns v1.11.2
6464
github.com/coreos/go-iptables v0.7.0
65-
github.com/cosi-project/runtime v0.4.4
65+
github.com/cosi-project/runtime v0.4.5
6666
github.com/distribution/reference v0.6.0
67-
github.com/docker/docker v26.1.3+incompatible
67+
github.com/docker/docker v26.1.4+incompatible
6868
github.com/docker/go-connections v0.5.0
6969
github.com/dustin/go-humanize v1.0.1
7070
github.com/ecks/uefi v0.0.0-20221116212947-caef65d070eb
@@ -79,7 +79,7 @@ require (
7979
github.com/golang/mock v1.6.0
8080
github.com/google/go-cmp v0.6.0
8181
github.com/google/go-containerregistry v0.19.1
82-
github.com/google/go-tpm v0.9.1-0.20240411180339-1fb84445f623
82+
github.com/google/go-tpm v0.9.1
8383
github.com/google/nftables v0.2.0
8484
github.com/google/uuid v1.6.0
8585
github.com/gopacket/gopacket v1.2.0
@@ -94,8 +94,8 @@ require (
9494
github.com/jeromer/syslogparser v1.1.0
9595
github.com/jsimonetti/rtnetlink v1.4.2
9696
github.com/jxskiss/base62 v1.1.0
97-
github.com/klauspost/compress v1.17.8
98-
github.com/klauspost/cpuid/v2 v2.2.7
97+
github.com/klauspost/compress v1.17.9
98+
github.com/klauspost/cpuid/v2 v2.2.8
9999
github.com/linode/go-metadata v0.2.0
100100
github.com/martinlindhe/base36 v1.1.1
101101
github.com/mattn/go-isatty v0.0.20
@@ -172,19 +172,19 @@ require (
172172
golang.org/x/time v0.5.0
173173
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6
174174
google.golang.org/grpc v1.64.0
175-
google.golang.org/protobuf v1.34.1
175+
google.golang.org/protobuf v1.34.2
176176
gopkg.in/yaml.v3 v3.0.1
177177
k8s.io/klog/v2 v2.120.1
178178
kernel.org/pub/linux/libs/security/libcap/cap v1.2.70
179-
sigs.k8s.io/hydrophone v0.6.0
179+
sigs.k8s.io/hydrophone v0.6.1-0.20240611183045-ec6fa911eb8b
180180
sigs.k8s.io/yaml v1.4.0
181181
)
182182

183183
require (
184184
github.com/0x5a17ed/itkit v0.6.0 // indirect
185185
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
186186
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20230306123547-8075edf89bb0 // indirect
187-
github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 // indirect
187+
github.com/Azure/azure-sdk-for-go/sdk/internal v1.9.0 // indirect
188188
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.0.0 // indirect
189189
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
190190
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
@@ -198,16 +198,16 @@ require (
198198
github.com/adrg/xdg v0.4.0 // indirect
199199
github.com/apparentlymart/go-cidr v1.1.0 // indirect
200200
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 // indirect
201-
github.com/aws/aws-sdk-go-v2 v1.27.1 // indirect
202-
github.com/aws/aws-sdk-go-v2/credentials v1.17.17 // indirect
203-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.8 // indirect
204-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.8 // indirect
201+
github.com/aws/aws-sdk-go-v2 v1.27.2 // indirect
202+
github.com/aws/aws-sdk-go-v2/credentials v1.17.18 // indirect
203+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.9 // indirect
204+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.9 // indirect
205205
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect
206206
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2 // indirect
207-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.10 // indirect
208-
github.com/aws/aws-sdk-go-v2/service/sso v1.20.10 // indirect
209-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.24.4 // indirect
210-
github.com/aws/aws-sdk-go-v2/service/sts v1.28.11 // indirect
207+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.11 // indirect
208+
github.com/aws/aws-sdk-go-v2/service/sso v1.20.11 // indirect
209+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.24.5 // indirect
210+
github.com/aws/aws-sdk-go-v2/service/sts v1.28.12 // indirect
211211
github.com/beorn7/perks v1.0.1 // indirect
212212
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
213213
github.com/cespare/xxhash/v2 v2.2.0 // indirect
@@ -338,11 +338,11 @@ require (
338338
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect
339339
golang.zx2c4.com/wireguard v0.0.0-20231211153847-12269c276173 // indirect
340340
google.golang.org/genproto/googleapis/api v0.0.0-20240521202816-d264139d666e // indirect
341-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240604185151-ef581f913117 // indirect
341+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240610135401-a8a62080eff3 // indirect
342342
gopkg.in/inf.v0 v0.9.1 // indirect
343343
gopkg.in/yaml.v2 v2.4.0 // indirect
344344
k8s.io/cli-runtime v0.30.1 // indirect
345-
k8s.io/kube-openapi v0.0.0-20240429181424-4a129a0ff6f9 // indirect
345+
k8s.io/kube-openapi v0.0.0-20240521193020-835d969ad83a // indirect
346346
k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0 // indirect
347347
kernel.org/pub/linux/libs/security/libcap/psx v1.2.70 // indirect
348348
rsc.io/qr v0.2.0 // indirect

0 commit comments

Comments
 (0)