Skip to content

Commit 8f17216

Browse files
[VAULT-38910]: upgrade docker package to resolve GO-2025-3829 (#8642) (#8879) (#8896)
* bump github.com/hashicorp/go-secure-stdlib/plugincontainer to v0.4.2 * bump github.com/docker/docker to v28.3.3+incompatible Signed-off-by: Ryan Cragun <[email protected]> Co-authored-by: Ryan Cragun <[email protected]>
1 parent 5bf666b commit 8f17216

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ require (
412412
github.com/hashicorp/go-secure-stdlib/cryptoutil v0.1.1 // indirect
413413
github.com/hashicorp/go-secure-stdlib/fileutil v0.1.0 // indirect
414414
github.com/hashicorp/go-secure-stdlib/httputil v0.1.0 // indirect
415-
github.com/hashicorp/go-secure-stdlib/plugincontainer v0.4.1 // indirect
415+
github.com/hashicorp/go-secure-stdlib/plugincontainer v0.4.2 // indirect
416416
github.com/hashicorp/go-slug v0.16.4 // indirect
417417
github.com/hashicorp/go-tfe v1.81.0 // indirect
418418
github.com/hashicorp/jsonapi v1.4.3-0.20250220162346-81a76b606f3e // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1479,8 +1479,8 @@ github.com/hashicorp/go-secure-stdlib/password v0.1.4 h1:h8gOB6qDRlOMvoMHOqtf4oT
14791479
github.com/hashicorp/go-secure-stdlib/password v0.1.4/go.mod h1:DeLx56RZZdmwX8Q94fVQUetkXv6zVBfDtGAPJDh69AU=
14801480
github.com/hashicorp/go-secure-stdlib/permitpool v1.0.0 h1:U6y5MXGiDVOOtkWJ6o/tu1TxABnI0yKTQWJr7z6BpNk=
14811481
github.com/hashicorp/go-secure-stdlib/permitpool v1.0.0/go.mod h1:ecDb3o+8D4xtP0nTCufJaAVawHavy5M2eZ64Nq/8/LM=
1482-
github.com/hashicorp/go-secure-stdlib/plugincontainer v0.4.1 h1:JY+zGg8gOmslwif1fiCqT5Hu1SikLZQcHkmQhCoA9gY=
1483-
github.com/hashicorp/go-secure-stdlib/plugincontainer v0.4.1/go.mod h1:jW3KCTvdPyAdVecOUwiiO2XaYgUJ/isigt++ISkszkY=
1482+
github.com/hashicorp/go-secure-stdlib/plugincontainer v0.4.2 h1:gCNiM4T5xEc4IpT8vM50CIO+AtElr5kO9l2Rxbq+Sz8=
1483+
github.com/hashicorp/go-secure-stdlib/plugincontainer v0.4.2/go.mod h1:6ZM4ZdwClyAsiU2uDBmRHCvq0If/03BMbF9U+U7G5pA=
14841484
github.com/hashicorp/go-secure-stdlib/regexp v1.0.0 h1:08mz6j5MsCG9sf8tvC8Lhboe/ZMiNg41IPSh6unK5T4=
14851485
github.com/hashicorp/go-secure-stdlib/regexp v1.0.0/go.mod h1:n/Gj3sYIEEOYds8uKS55bFf7XiYvWN4e+d+UOA7r/YU=
14861486
github.com/hashicorp/go-secure-stdlib/reloadutil v0.1.1 h1:SMGUnbpAcat8rIKHkBPjfv81yC46a8eCNZ2hsR2l1EI=

sdk/go.mod

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ require (
3434
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.9
3535
github.com/hashicorp/go-secure-stdlib/password v0.1.1
3636
github.com/hashicorp/go-secure-stdlib/permitpool v1.0.0
37-
github.com/hashicorp/go-secure-stdlib/plugincontainer v0.4.1
37+
github.com/hashicorp/go-secure-stdlib/plugincontainer v0.4.2
3838
github.com/hashicorp/go-secure-stdlib/regexp v1.0.0
3939
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2
4040
github.com/hashicorp/go-secure-stdlib/tlsutil v0.1.3
@@ -59,6 +59,12 @@ require (
5959
google.golang.org/protobuf v1.36.5
6060
)
6161

62+
require (
63+
github.com/containerd/errdefs v1.0.0 // indirect
64+
github.com/containerd/errdefs/pkg v0.3.0 // indirect
65+
github.com/moby/go-archive v0.1.0 // indirect
66+
)
67+
6268
require (
6369
cloud.google.com/go/auth v0.14.1 // indirect
6470
cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
@@ -70,14 +76,10 @@ require (
7076
github.com/armon/go-metrics v0.4.1 // indirect
7177
github.com/beorn7/perks v1.0.1 // indirect
7278
github.com/cespare/xxhash/v2 v2.3.0 // indirect
73-
github.com/containerd/errdefs v1.0.0 // indirect
74-
github.com/containerd/errdefs/pkg v0.3.0 // indirect
7579
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
7680
github.com/gofrs/uuid v4.3.0+incompatible // indirect
7781
github.com/hashicorp/go-hmac-drbg v0.0.0-20210916214228-a6e5a68489f6 // indirect
7882
github.com/moby/docker-image-spec v1.3.1 // indirect
79-
github.com/moby/go-archive v0.1.0 // indirect
80-
github.com/moby/sys/atomicwriter v0.1.0 // indirect
8183
github.com/moby/sys/userns v0.1.0 // indirect
8284
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
8385
github.com/prometheus/client_golang v1.20.5 // indirect

sdk/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,8 @@ github.com/hashicorp/go-secure-stdlib/password v0.1.1 h1:6JzmBqXprakgFEHwBgdchsj
215215
github.com/hashicorp/go-secure-stdlib/password v0.1.1/go.mod h1:9hH302QllNwu1o2TGYtSk8I8kTAN0ca1EHpwhm5Mmzo=
216216
github.com/hashicorp/go-secure-stdlib/permitpool v1.0.0 h1:U6y5MXGiDVOOtkWJ6o/tu1TxABnI0yKTQWJr7z6BpNk=
217217
github.com/hashicorp/go-secure-stdlib/permitpool v1.0.0/go.mod h1:ecDb3o+8D4xtP0nTCufJaAVawHavy5M2eZ64Nq/8/LM=
218-
github.com/hashicorp/go-secure-stdlib/plugincontainer v0.4.1 h1:JY+zGg8gOmslwif1fiCqT5Hu1SikLZQcHkmQhCoA9gY=
219-
github.com/hashicorp/go-secure-stdlib/plugincontainer v0.4.1/go.mod h1:jW3KCTvdPyAdVecOUwiiO2XaYgUJ/isigt++ISkszkY=
218+
github.com/hashicorp/go-secure-stdlib/plugincontainer v0.4.2 h1:gCNiM4T5xEc4IpT8vM50CIO+AtElr5kO9l2Rxbq+Sz8=
219+
github.com/hashicorp/go-secure-stdlib/plugincontainer v0.4.2/go.mod h1:6ZM4ZdwClyAsiU2uDBmRHCvq0If/03BMbF9U+U7G5pA=
220220
github.com/hashicorp/go-secure-stdlib/regexp v1.0.0 h1:08mz6j5MsCG9sf8tvC8Lhboe/ZMiNg41IPSh6unK5T4=
221221
github.com/hashicorp/go-secure-stdlib/regexp v1.0.0/go.mod h1:n/Gj3sYIEEOYds8uKS55bFf7XiYvWN4e+d+UOA7r/YU=
222222
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 h1:kes8mmyCpxJsI7FTwtzRqEy9CdjCtrXrXGuOpxEA7Ts=

0 commit comments

Comments
 (0)