Skip to content

Commit 9708b04

Browse files
committed
vendor: moby/moby/api and moby/moby/client 926ff237a9e1
full diff: moby/moby@4faedf2...926ff23 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent b01d359 commit 9708b04

72 files changed

Lines changed: 433 additions & 253 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

e2e/testutils/plugins.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import (
1313
"testing"
1414

1515
"github.com/moby/moby/api/types"
16+
"github.com/moby/moby/api/types/plugin"
1617
"gotest.tools/v3/assert"
1718
"gotest.tools/v3/fs"
1819
"gotest.tools/v3/icmd"
@@ -32,7 +33,11 @@ func SetupPlugin(t *testing.T, ctx context.Context) *fs.Dir {
3233
},
3334
Interface: types.PluginConfigInterface{
3435
Socket: "basic.sock",
35-
Types: []types.PluginInterfaceType{{Capability: "docker.dummy/1.0"}},
36+
Types: []plugin.CapabilityID{{
37+
Capability: "dummy",
38+
Prefix: "docker",
39+
Version: "1.0",
40+
}},
3641
},
3742
Entrypoint: []string{"/basic"},
3843
}

vendor.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ go 1.23.0
88

99
replace (
1010
// FIXME(thaJeztah): temporarily need to pin on commits, otherwise go modules won't resolve until these are tagged.
11-
github.com/moby/moby/api => github.com/moby/moby/api v0.0.0-20250731152656-4faedf2bec36
12-
github.com/moby/moby/client => github.com/moby/moby/client v0.0.0-20250731152656-4faedf2bec36
11+
github.com/moby/moby/api => github.com/moby/moby/api v0.0.0-20250805134149-926ff237a9e1
12+
github.com/moby/moby/client => github.com/moby/moby/client v0.0.0-20250805134149-926ff237a9e1
1313
)
1414

1515
require (

vendor.sum

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,10 +170,10 @@ github.com/moby/docker-image-spec v1.3.1 h1:jMKff3w6PgbfSa69GfNg+zN/XLhfXJGnEx3N
170170
github.com/moby/docker-image-spec v1.3.1/go.mod h1:eKmb5VW8vQEh/BAr2yvVNvuiJuY6UIocYsFu/DxxRpo=
171171
github.com/moby/go-archive v0.1.0 h1:Kk/5rdW/g+H8NHdJW2gsXyZ7UnzvJNOy6VKJqueWdcQ=
172172
github.com/moby/go-archive v0.1.0/go.mod h1:G9B+YoujNohJmrIYFBpSd54GTUB4lt9S+xVQvsJyFuo=
173-
github.com/moby/moby/api v0.0.0-20250731152656-4faedf2bec36 h1:2o6bmPZvLOYqE6mQGqnyt+556TMpa26ZtSxvgSpT+98=
174-
github.com/moby/moby/api v0.0.0-20250731152656-4faedf2bec36/go.mod h1:GNQ0zU3WJGeJIcrLPE3xiQnsnLElvfqXQZZZiOqWuiE=
175-
github.com/moby/moby/client v0.0.0-20250731152656-4faedf2bec36 h1:o32ntpp76dDd5Hf9+XL09+qs06120KvZl+Ogt+RkYG0=
176-
github.com/moby/moby/client v0.0.0-20250731152656-4faedf2bec36/go.mod h1:+TFnycF6RuAUAq1tGTjZiSXuRcywpKUGo2dLkJ6tC48=
173+
github.com/moby/moby/api v0.0.0-20250805134149-926ff237a9e1 h1:HwhS3EoDb4uR7PiYP1I6Ly7HT7PaU31pldBYAfSfgQQ=
174+
github.com/moby/moby/api v0.0.0-20250805134149-926ff237a9e1/go.mod h1:MuA35dxT3DVZpImg0ORGCoZtT2dC1jgPjwH9/CQ/afQ=
175+
github.com/moby/moby/client v0.0.0-20250805134149-926ff237a9e1 h1:WiAEWYxxjvSI18mj3rqMO1ezshg/xFMpHspOAEiC2dQ=
176+
github.com/moby/moby/client v0.0.0-20250805134149-926ff237a9e1/go.mod h1:zi2qn8Z+3glsxuqENxpMSB+eCst6SlRKDnY0AEpOS70=
177177
github.com/moby/patternmatcher v0.6.0 h1:GmP9lR19aU5GqSSFko+5pRqHi+Ohk1O69aFiKkVGiPk=
178178
github.com/moby/patternmatcher v0.6.0/go.mod h1:hDPoyOpDY7OrrMDLaYoY3hf52gNCR/YOUYxkhApJIxc=
179179
github.com/moby/swarmkit/v2 v2.0.0 h1:jkWQKQaJ4ltA61/mC9UdPe1McLma55RUcacTO+pPweY=
@@ -416,5 +416,7 @@ gotest.tools/v3 v3.5.2 h1:7koQfIKdy+I8UTetycgUqXWSDwpgv193Ka+qRsmBY8Q=
416416
gotest.tools/v3 v3.5.2/go.mod h1:LtdLGcnqToBH83WByAAi/wiwSFCArdFIUV/xxN4pcjA=
417417
k8s.io/klog/v2 v2.90.1 h1:m4bYOKall2MmOiRaR1J+We67Do7vm9KiQVlT96lnHUw=
418418
k8s.io/klog/v2 v2.90.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0=
419+
pgregory.net/rapid v1.2.0 h1:keKAYRcjm+e1F0oAuU5F5+YPAWcyxNNRK2wud503Gnk=
420+
pgregory.net/rapid v1.2.0/go.mod h1:PY5XlDGj0+V1FCq0o192FdRhpKHGTRIWBgqjDBTrq04=
419421
tags.cncf.io/container-device-interface v0.8.0 h1:8bCFo/g9WODjWx3m6EYl3GfUG31eKJbaggyBDxEldRc=
420422
tags.cncf.io/container-device-interface v0.8.0/go.mod h1:Apb7N4VdILW0EVdEMRYXIDVRZfNJZ+kmEUss2kRRQ6Y=

vendor/github.com/moby/moby/api/pkg/progress/progress.go

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/moby/moby/api/pkg/stdcopy/stdcopy.go

Lines changed: 28 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/moby/moby/api/pkg/streamformatter/streamformatter.go

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/moby/moby/api/types/error_response.go renamed to vendor/github.com/moby/moby/api/types/common/error_response.go

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/moby/moby/api/types/error_response_ext.go renamed to vendor/github.com/moby/moby/api/types/common/error_response_ext.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/moby/moby/api/types/common/id_response.go

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/moby/moby/api/types/container/change_type.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)