Browse code

vendor: update buildkit to v0.24.0

Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>

Kevin Alvarez authored on 2025/09/04 00:06:58
Showing 5 changed files
... ...
@@ -55,7 +55,7 @@ require (
55 55
 	github.com/miekg/dns v1.1.66
56 56
 	github.com/mistifyio/go-zfs/v3 v3.0.1
57 57
 	github.com/mitchellh/copystructure v1.2.0
58
-	github.com/moby/buildkit v0.24.0-rc2 // FIXME(crazy-max): remove override from hack/buildkit-ref when updating.
58
+	github.com/moby/buildkit v0.24.0
59 59
 	github.com/moby/docker-image-spec v1.3.1
60 60
 	github.com/moby/go-archive v0.1.0
61 61
 	github.com/moby/ipvs v1.1.0
... ...
@@ -396,8 +396,8 @@ github.com/mitchellh/mapstructure v0.0.0-20170523030023-d0303fe80992/go.mod h1:F
396 396
 github.com/mitchellh/reflectwalk v1.0.2 h1:G2LzWKi524PWgd3mLHV8Y5k7s6XUvT0Gef6zxSIeXaQ=
397 397
 github.com/mitchellh/reflectwalk v1.0.2/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw=
398 398
 github.com/mndrix/tap-go v0.0.0-20171203230836-629fa407e90b/go.mod h1:pzzDgJWZ34fGzaAZGFW22KVZDfyrYW+QABMrWnJBnSs=
399
-github.com/moby/buildkit v0.24.0-rc2 h1:1Z9+R162yauf3SYvn8cGjBPnglMDK4bO+00dNlJSgZI=
400
-github.com/moby/buildkit v0.24.0-rc2/go.mod h1:4qovICAdR2H4C7+EGMRva5zgHW1gyhT4/flHI7F5F9k=
399
+github.com/moby/buildkit v0.24.0 h1:qYfTl7W1SIJzWDIDCcPT8FboHIZCYfi++wvySi3eyFE=
400
+github.com/moby/buildkit v0.24.0/go.mod h1:4qovICAdR2H4C7+EGMRva5zgHW1gyhT4/flHI7F5F9k=
401 401
 github.com/moby/docker-image-spec v1.3.1 h1:jMKff3w6PgbfSa69GfNg+zN/XLhfXJGnEx3Nl2EsFP0=
402 402
 github.com/moby/docker-image-spec v1.3.1/go.mod h1:eKmb5VW8vQEh/BAr2yvVNvuiJuY6UIocYsFu/DxxRpo=
403 403
 github.com/moby/go-archive v0.1.0 h1:Kk/5rdW/g+H8NHdJW2gsXyZ7UnzvJNOy6VKJqueWdcQ=
... ...
@@ -19,9 +19,6 @@ if [[ "${buildkit_ref}" == *-*-* ]]; then
19 19
 	buildkit_ref=$(curl -s "https://api.github.com/repos/${buildkit_repo}/commits/${buildkit_ref}" | jq -r .sha)
20 20
 fi
21 21
 
22
-# FIXME(crazy-max) temporarily overriding version to use for tests; remove with the next release of buildkit; see https://github.com/moby/buildkit/pull/6179
23
-buildkit_ref=a59c3fe07d1b25fd6563d3955d66c6d15264c49f
24
-
25 22
 cat << EOF
26 23
 BUILDKIT_REPO=$buildkit_repo
27 24
 BUILDKIT_REF=$buildkit_ref
... ...
@@ -10,9 +10,10 @@ import (
10 10
 )
11 11
 
12 12
 var enabledCaps = map[string]struct{}{
13
-	"moby.buildkit.frontend.inputs":      {},
14
-	"moby.buildkit.frontend.subrequests": {},
15
-	"moby.buildkit.frontend.contexts":    {},
13
+	"moby.buildkit.frontend.inputs":         {},
14
+	"moby.buildkit.frontend.subrequests":    {},
15
+	"moby.buildkit.frontend.contexts":       {},
16
+	"moby.buildkit.frontend.gitquerystring": {},
16 17
 }
17 18
 
18 19
 func validateCaps(req string) (forward bool, err error) {
... ...
@@ -753,7 +753,7 @@ github.com/mitchellh/hashstructure/v2
753 753
 # github.com/mitchellh/reflectwalk v1.0.2
754 754
 ## explicit
755 755
 github.com/mitchellh/reflectwalk
756
-# github.com/moby/buildkit v0.24.0-rc2
756
+# github.com/moby/buildkit v0.24.0
757 757
 ## explicit; go 1.23.0
758 758
 github.com/moby/buildkit/api/services/control
759 759
 github.com/moby/buildkit/api/types