Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ require (
code.cloudfoundry.org/tlsconfig v0.0.0-20200131000646-bbe0f8da39b3 // indirect
cyphar.com/go-pathrs v0.2.1 // indirect
dario.cat/mergo v1.0.2 // indirect
filippo.io/edwards25519 v1.1.0 // indirect
filippo.io/edwards25519 v1.1.1 // indirect
github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6 // indirect
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20231105174938-2b5cbb29f3e2 // indirect
github.com/AlekSi/pointer v1.2.0 // indirect
Expand Down Expand Up @@ -973,7 +973,7 @@ require (
github.com/go-enry/go-license-detector/v4 v4.3.1
github.com/go-jose/go-jose/v4 v4.1.4
github.com/goware/modvendor v0.5.0
github.com/hashicorp/vault v1.21.2
github.com/hashicorp/vault v1.21.4
github.com/hashicorp/vault/api v1.22.0
github.com/hashicorp/vault/api/auth/approle v0.11.0
github.com/hashicorp/vault/api/auth/aws v0.11.0
Expand Down Expand Up @@ -1064,7 +1064,7 @@ require (
github.com/dgryski/go-minhash v0.0.0-20190315135803-ad340ca03076 // indirect
github.com/dimchansky/utfbom v1.1.1 // indirect
github.com/dlclark/regexp2 v1.11.5 // indirect
github.com/duosecurity/duo_api_golang v0.0.0-20190308151101-6c680f768e74 // indirect
github.com/duosecurity/duo_api_golang v0.0.0-20250430191550-ac36954387e7 // indirect
github.com/ekzhu/minhash-lsh v0.0.0-20190924033628-faac2c6342f8 // indirect
github.com/emicklei/dot v0.15.0 // indirect
github.com/emirpasic/gods v1.18.1 // indirect
Expand Down Expand Up @@ -1130,7 +1130,7 @@ require (
github.com/hashicorp/raft-snapshot v1.0.4 // indirect
github.com/hashicorp/raft-wal v0.4.0 // indirect
github.com/hashicorp/vault-plugin-secrets-kv v0.25.0 // indirect
github.com/hashicorp/vault/sdk v0.20.0 // indirect
github.com/hashicorp/vault/sdk v0.21.0 // indirect
github.com/hashicorp/vic v1.5.1-0.20190403131502-bbfe86ec9443 // indirect
github.com/hashicorp/yamux v0.1.2 // indirect
github.com/hhatto/gorst v0.0.0-20181029133204-ca9f730cac5b // indirect
Expand Down Expand Up @@ -1233,6 +1233,14 @@ replace github.com/vishvananda/netlink => github.com/DataDog/netlink v1.0.1-0.20
// use datadog fork of vault/api/auth/aws to reduce binary size for secret-generic-connector
replace github.com/hashicorp/vault/api/auth/aws => github.com/DataDog/vault/api/auth/aws v0.0.0-20250716193101-44fb30472101

// hashicorp/vault@v1.21.3+ ships an inconsistent module graph: its source uses
// the 2-arg ActivationFunc from sdk's in-tree code, but its go.mod requires
// vault/sdk@v0.21.0 from the proxy, which has a 3-arg signature. Upstream's
// `replace ... => ./sdk` hides this for them but doesn't propagate to consumers.
// Pin sdk to the same commit as the v1.21.4 tag — that's the exact sdk source
// the main module is written against.
replace github.com/hashicorp/vault/sdk => github.com/hashicorp/vault/sdk v0.19.1-0.20260305014005-ffe7023c481d

// Use custom Trivy fork to reduce binary size
// Pull in replacements needed by upstream Trivy
// Maps to Trivy fork https://github.com/DataDog/trivy/pull/32
Expand Down
19 changes: 10 additions & 9 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading