Skip to content

Commit febf922

Browse files
ADMS: vuln minor upgrades — 15 packages (minor: 10 · patch: 5)
1 parent 44fb304 commit febf922

2 files changed

Lines changed: 234 additions & 70 deletions

File tree

go.mod

Lines changed: 68 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module github.com/hashicorp/vault
1010
// semantic related to Go module handling), this comment should be updated to explain that.
1111
//
1212
// Whenever this value gets updated, sdk/go.mod should be updated to the same value.
13-
go 1.24.3
13+
go 1.25.0
1414

1515
replace github.com/hashicorp/vault/api => ./api
1616

@@ -50,7 +50,7 @@ require (
5050
github.com/armon/go-metrics v0.4.1
5151
github.com/armon/go-radix v1.0.0
5252
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2
53-
github.com/aws/aws-sdk-go v1.55.7
53+
github.com/aws/aws-sdk-go v1.55.8
5454
github.com/aws/aws-sdk-go-v2/config v1.29.14
5555
github.com/cenkalti/backoff/v3 v3.2.2
5656
github.com/chrismalek/oktasdk-go v0.0.0-20181212195951-3430665dfaa0
@@ -66,8 +66,8 @@ require (
6666
github.com/gammazero/workerpool v1.1.3
6767
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
6868
github.com/go-errors/errors v1.5.1
69-
github.com/go-git/go-git/v5 v5.14.0
70-
github.com/go-jose/go-jose/v3 v3.0.4
69+
github.com/go-git/go-git/v5 v5.19.1
70+
github.com/go-jose/go-jose/v3 v3.0.5
7171
github.com/go-ldap/ldap/v3 v3.4.11
7272
github.com/go-sql-driver/mysql v1.8.1
7373
github.com/go-test/deep v1.1.1
@@ -206,41 +206,42 @@ require (
206206
github.com/sasha-s/go-deadlock v0.3.5
207207
github.com/sethvargo/go-limiter v0.7.1
208208
github.com/shirou/gopsutil/v3 v3.22.6
209-
github.com/stretchr/testify v1.10.0
209+
github.com/stretchr/testify v1.11.1
210210
github.com/tink-crypto/tink-go/v2 v2.2.0
211211
go.etcd.io/bbolt v1.4.0-beta.0
212212
go.etcd.io/etcd/client/pkg/v3 v3.5.17
213213
go.etcd.io/etcd/client/v2 v2.305.17
214214
go.etcd.io/etcd/client/v3 v3.5.17
215215
go.mongodb.org/atlas v0.38.0
216216
go.mongodb.org/mongo-driver v1.17.3
217-
go.opentelemetry.io/otel v1.35.0
218-
go.opentelemetry.io/otel/sdk v1.35.0
219-
go.opentelemetry.io/otel/trace v1.35.0
217+
go.opentelemetry.io/otel v1.44.0
218+
go.opentelemetry.io/otel/sdk v1.44.0
219+
go.opentelemetry.io/otel/trace v1.44.0
220220
go.uber.org/atomic v1.11.0
221-
golang.org/x/crypto v0.38.0
222-
golang.org/x/exp v0.0.0-20250531010427-b6e5de432a8b
223-
golang.org/x/net v0.40.0
224-
golang.org/x/oauth2 v0.30.0
225-
golang.org/x/sync v0.14.0
226-
golang.org/x/sys v0.33.0
227-
golang.org/x/term v0.32.0
228-
golang.org/x/text v0.25.0
229-
golang.org/x/tools v0.33.0
221+
golang.org/x/crypto v0.53.0
222+
golang.org/x/exp v0.0.0-20260410095643-746e56fc9e2f
223+
golang.org/x/net v0.56.0
224+
golang.org/x/oauth2 v0.36.0
225+
golang.org/x/sync v0.21.0
226+
golang.org/x/sys v0.46.0
227+
golang.org/x/term v0.44.0
228+
golang.org/x/text v0.38.0
229+
golang.org/x/tools v0.45.0
230230
google.golang.org/api v0.235.0
231-
google.golang.org/grpc v1.72.2
232-
google.golang.org/protobuf v1.36.6
231+
google.golang.org/grpc v1.81.1
232+
google.golang.org/protobuf v1.36.11
233233
gopkg.in/ory-am/dockertest.v3 v3.3.4
234234
k8s.io/apimachinery v0.33.1
235235
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
236236
layeh.com/radius v0.0.0-20231213012653-1006025d24f8
237237
)
238238

239239
require (
240-
cel.dev/expr v0.20.0 // indirect
240+
cel.dev/expr v0.25.1 // indirect
241241
cloud.google.com/go/longrunning v0.6.7 // indirect
242-
filippo.io/edwards25519 v1.1.0 // indirect
243-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.27.0 // indirect
242+
cyphar.com/go-pathrs v0.2.4 // indirect
243+
filippo.io/edwards25519 v1.1.1 // indirect
244+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.31.0 // indirect
244245
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.51.0 // indirect
245246
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.51.0 // indirect
246247
github.com/apache/arrow-go/v18 v18.0.0 // indirect
@@ -249,17 +250,22 @@ require (
249250
github.com/aws/aws-sdk-go-v2/feature/rds/auth v1.5.11 // indirect
250251
github.com/aws/aws-sdk-go-v2/service/ec2 v1.200.0 // indirect
251252
github.com/aws/aws-sdk-go-v2/service/ecs v1.53.8 // indirect
253+
github.com/checkpoint-restore/go-criu/v7 v7.2.0 // indirect
254+
github.com/cilium/ebpf v0.17.3 // indirect
255+
github.com/containerd/console v1.0.5 // indirect
256+
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
252257
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
253-
github.com/envoyproxy/go-control-plane/envoy v1.32.4 // indirect
258+
github.com/envoyproxy/go-control-plane/envoy v1.37.0 // indirect
254259
github.com/fsnotify/fsnotify v1.6.0 // indirect
255260
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
256-
github.com/go-viper/mapstructure/v2 v2.1.0 // indirect
261+
github.com/go-viper/mapstructure/v2 v2.5.0 // indirect
262+
github.com/godbus/dbus/v5 v5.1.0 // indirect
257263
github.com/hashicorp/go-discover/provider/gce v0.0.0-20241120163552-5eb1507d16b4 // indirect
258264
github.com/hashicorp/go-hmac-drbg v0.0.0-20210916214228-a6e5a68489f6 // indirect
259265
github.com/hashicorp/go-metrics v0.5.4 // indirect
260266
github.com/hashicorp/go-secure-stdlib/cryptoutil v0.1.1 // indirect
261267
github.com/hashicorp/go-secure-stdlib/httputil v0.1.0 // indirect
262-
github.com/jackc/pgx/v5 v5.7.4 // indirect
268+
github.com/jackc/pgx/v5 v5.10.0 // indirect
263269
github.com/jackc/puddle/v2 v2.2.2 // indirect
264270
github.com/lestrrat-go/backoff/v2 v2.0.8 // indirect
265271
github.com/lestrrat-go/blackmagic v1.0.2 // indirect
@@ -269,15 +275,26 @@ require (
269275
github.com/lestrrat-go/option v1.0.1 // indirect
270276
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
271277
github.com/moby/docker-image-spec v1.3.1 // indirect
278+
github.com/moby/sys/capability v0.4.0 // indirect
279+
github.com/moby/sys/mountinfo v0.7.2 // indirect
272280
github.com/moby/sys/userns v0.1.0 // indirect
281+
github.com/mrunalp/fileutils v0.5.1 // indirect
282+
github.com/opencontainers/cgroups v0.0.6 // indirect
283+
github.com/opencontainers/runtime-spec v1.3.0 // indirect
284+
github.com/opencontainers/selinux v1.13.0 // indirect
273285
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
274-
github.com/spiffe/go-spiffe/v2 v2.5.0 // indirect
286+
github.com/russross/blackfriday/v2 v2.1.0 // indirect
287+
github.com/seccomp/libseccomp-golang v0.11.1 // indirect
288+
github.com/spiffe/go-spiffe/v2 v2.6.0 // indirect
275289
github.com/std-uritemplate/std-uritemplate/go/v2 v2.0.3 // indirect
290+
github.com/urfave/cli v1.22.17 // indirect
291+
github.com/vishvananda/netlink v1.3.1 // indirect
292+
github.com/vishvananda/netns v0.0.5 // indirect
276293
github.com/x448/float16 v0.8.4 // indirect
277294
github.com/zeebo/errs v1.4.0 // indirect
278-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
279-
go.opentelemetry.io/contrib/detectors/gcp v1.35.0 // indirect
280-
go.opentelemetry.io/otel/sdk/metric v1.35.0 // indirect
295+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
296+
go.opentelemetry.io/contrib/detectors/gcp v1.42.0 // indirect
297+
go.opentelemetry.io/otel/sdk/metric v1.44.0 // indirect
281298
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
282299
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
283300
sigs.k8s.io/randfill v1.0.0 // indirect
@@ -287,7 +304,7 @@ require (
287304
cloud.google.com/go v0.121.0 // indirect
288305
cloud.google.com/go/auth v0.16.1 // indirect
289306
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
290-
cloud.google.com/go/compute/metadata v0.7.0 // indirect
307+
cloud.google.com/go/compute/metadata v0.9.0 // indirect
291308
cloud.google.com/go/iam v1.5.2 // indirect
292309
cloud.google.com/go/kms v1.22.0 // indirect; indirect\
293310
dario.cat/mergo v1.0.1 // indirect
@@ -314,7 +331,7 @@ require (
314331
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
315332
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
316333
github.com/AzureAD/microsoft-authentication-library-for-go v1.4.2 // indirect
317-
github.com/BurntSushi/toml v1.4.0 // indirect
334+
github.com/BurntSushi/toml v1.5.0 // indirect
318335
github.com/DataDog/datadog-go v3.2.0+incompatible // indirect
319336
github.com/GoogleCloudPlatform/grpc-gcp-go/grpcgcp v1.5.2 // indirect
320337
github.com/Jeffail/gabs/v2 v2.1.0 // indirect
@@ -355,22 +372,22 @@ require (
355372
github.com/cespare/xxhash/v2 v2.3.0 // indirect
356373
github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible // indirect
357374
github.com/circonus-labs/circonusllhist v0.1.3 // indirect
358-
github.com/cloudflare/circl v1.6.2-0.20250618153321-aa837fd1539d // indirect
375+
github.com/cloudflare/circl v1.6.3 // indirect
359376
github.com/cloudfoundry-community/go-cfclient v0.0.0-20220930021109-9c4e6c59ccf1 // indirect
360-
github.com/cncf/xds/go v0.0.0-20250121191232-2f005788dc42 // indirect
377+
github.com/cncf/xds/go v0.0.0-20260202195803-dba9d589def2 // indirect
361378
github.com/containerd/continuity v0.4.5 // indirect
362379
github.com/containerd/log v0.1.0 // indirect
363380
github.com/coreos/etcd v3.3.27+incompatible // indirect
364381
github.com/coreos/go-oidc/v3 v3.14.1 // indirect
365382
github.com/coreos/go-semver v0.3.1 // indirect
366-
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
383+
github.com/coreos/go-systemd/v22 v22.7.0 // indirect
367384
github.com/coreos/pkg v0.0.0-20220810130054-c7d1c02cb6cf // indirect
368385
github.com/couchbase/gocb/v2 v2.10.0 // indirect
369386
github.com/couchbase/gocbcore/v10 v10.7.0 // indirect
370387
github.com/couchbase/gocbcoreps v0.1.3 // indirect
371388
github.com/couchbase/goprotostellar v1.0.2 // indirect
372389
github.com/couchbaselabs/gocbconnstr/v2 v2.0.0-20240607131231-fb385523de28 // indirect
373-
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
390+
github.com/cyphar/filepath-securejoin v0.6.1 // indirect
374391
github.com/danieljoos/wincred v1.2.2 // indirect
375392
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
376393
github.com/denverdino/aliyungo v0.0.0-20190125010748-a747050bb1ba // indirect
@@ -380,20 +397,20 @@ require (
380397
github.com/docker/cli v27.4.1+incompatible // indirect
381398
github.com/docker/go-connections v0.5.0 // indirect
382399
github.com/docker/go-units v0.5.0 // indirect
383-
github.com/dvsekhvalnov/jose2go v1.6.0 // indirect
400+
github.com/dvsekhvalnov/jose2go v1.8.0 // indirect
384401
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
385402
github.com/emirpasic/gods v1.18.1 // indirect
386-
github.com/envoyproxy/protoc-gen-validate v1.2.1 // indirect
403+
github.com/envoyproxy/protoc-gen-validate v1.3.3 // indirect
387404
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
388405
github.com/felixge/httpsnoop v1.0.4 // indirect
389406
github.com/gabriel-vasile/mimetype v1.4.7 // indirect
390407
github.com/gammazero/deque v0.2.1 // indirect
391408
github.com/go-asn1-ber/asn1-ber v1.5.8-0.20250403174932-29230038a667 // indirect
392409
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
393-
github.com/go-git/go-billy/v5 v5.6.2 // indirect
394-
github.com/go-jose/go-jose/v4 v4.1.0 // indirect
410+
github.com/go-git/go-billy/v5 v5.9.0 // indirect
411+
github.com/go-jose/go-jose/v4 v4.1.4 // indirect
395412
github.com/go-ldap/ldif v0.0.0-20200320164324-fd88d9b715b3 // indirect
396-
github.com/go-logr/logr v1.4.2 // indirect
413+
github.com/go-logr/logr v1.4.3 // indirect
397414
github.com/go-logr/stdr v1.2.2 // indirect
398415
github.com/go-ole/go-ole v1.2.6 // indirect
399416
github.com/go-openapi/analysis v0.23.0 // indirect
@@ -462,16 +479,16 @@ require (
462479
github.com/json-iterator/go v1.1.12 // indirect
463480
github.com/kelseyhightower/envconfig v1.4.0 // indirect
464481
github.com/kevinburke/ssh_config v1.2.0 // indirect
465-
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
482+
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
466483
github.com/kylelemons/godebug v1.1.0 // indirect
467484
github.com/linode/linodego v0.7.1 // indirect
468485
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
469486
github.com/mailru/easyjson v0.9.0 // indirect
470487
github.com/mattn/go-ieproxy v0.0.1 // indirect
471488
github.com/mediocregopher/radix/v4 v4.1.4 // indirect
472-
github.com/microsoft/kiota-abstractions-go v1.9.2 // indirect
489+
github.com/microsoft/kiota-abstractions-go v1.9.4 // indirect
473490
github.com/microsoft/kiota-authentication-azure-go v1.3.0 // indirect
474-
github.com/microsoft/kiota-http-go v1.5.2 // indirect
491+
github.com/microsoft/kiota-http-go v1.5.6 // indirect
475492
github.com/microsoft/kiota-serialization-form-go v1.1.2 // indirect
476493
github.com/microsoft/kiota-serialization-json-go v1.1.2 // indirect
477494
github.com/microsoft/kiota-serialization-multipart-go v1.1.2 // indirect
@@ -484,7 +501,7 @@ require (
484501
github.com/mitchellh/pointerstructure v1.2.1 // indirect
485502
github.com/moby/patternmatcher v0.6.0 // indirect
486503
github.com/moby/sys/sequential v0.5.0 // indirect
487-
github.com/moby/sys/user v0.3.0 // indirect
504+
github.com/moby/sys/user v0.4.0 // indirect
488505
github.com/moby/term v0.5.0 // indirect
489506
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
490507
github.com/modern-go/reflect2 v1.0.2 // indirect
@@ -497,19 +514,19 @@ require (
497514
github.com/oklog/ulid v1.3.1 // indirect
498515
github.com/opencontainers/go-digest v1.0.0 // indirect
499516
github.com/opencontainers/image-spec v1.1.1 // indirect
500-
github.com/opencontainers/runc v1.2.6 // indirect
517+
github.com/opencontainers/runc v1.4.3 // indirect
501518
github.com/opentracing/opentracing-go v1.2.1-0.20220228012449-10b1cf09e00b // indirect
502519
github.com/oracle/oci-go-sdk/v59 v59.0.0 // indirect
503520
github.com/oracle/oci-go-sdk/v60 v60.0.0 // indirect
504521
github.com/packethost/packngo v0.1.1-0.20180711074735-b9cb5096f54c // indirect
505522
github.com/petermattis/goid v0.0.0-20240813172612-4fcff4a6cae7 // indirect
506523
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
507524
github.com/pierrec/lz4/v4 v4.1.22 // indirect
508-
github.com/pjbgf/sha1cd v0.3.2 // indirect
525+
github.com/pjbgf/sha1cd v0.6.0 // indirect
509526
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
510527
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
511528
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
512-
github.com/prometheus/client_model v0.6.1 // indirect
529+
github.com/prometheus/client_model v0.6.2 // indirect
513530
github.com/prometheus/procfs v0.15.1 // indirect
514531
github.com/renier/xmlrpc v0.0.0-20170708154548-ce4a1a486c03 // indirect
515532
github.com/rogpeppe/go-internal v1.14.1 // indirect
@@ -547,14 +564,14 @@ require (
547564
go.opencensus.io v0.24.0 // indirect
548565
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0 // indirect
549566
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 // indirect
550-
go.opentelemetry.io/otel/metric v1.35.0 // indirect
567+
go.opentelemetry.io/otel/metric v1.44.0 // indirect
551568
go.uber.org/multierr v1.11.0 // indirect
552569
go.uber.org/zap v1.27.0 // indirect
553-
golang.org/x/mod v0.24.0 // indirect
570+
golang.org/x/mod v0.36.0 // indirect
554571
golang.org/x/time v0.11.0
555572
google.golang.org/genproto v0.0.0-20250528174236-200df99c418a // indirect
556-
google.golang.org/genproto/googleapis/api v0.0.0-20250519155744-55703ea1f237 // indirect
557-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250519155744-55703ea1f237 // indirect; indirect\
573+
google.golang.org/genproto/googleapis/api v0.0.0-20260226221140-a57be14db171 // indirect
574+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260226221140-a57be14db171 // indirect; indirect\
558575
gopkg.in/inf.v0 v0.9.1 // indirect
559576
gopkg.in/ini.v1 v1.67.0 // indirect
560577
gopkg.in/jcmturner/goidentity.v3 v3.0.0 // indirect

0 commit comments

Comments
 (0)