Skip to content

Commit af255ac

Browse files
committed
vendor: github.com/moby/moby master
Signed-off-by: Paweł Gronowski <[email protected]>
1 parent fcac1d5 commit af255ac

File tree

10 files changed

+62
-41
lines changed

10 files changed

+62
-41
lines changed

cli/command/registry/login.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ func loginClientSide(ctx context.Context, options client.RegistryLoginOptions) (
332332
}
333333

334334
return client.RegistryLoginResult{
335-
Auth: registrytypes.AuthenticateOKBody{
335+
Auth: registrytypes.AuthResponse{
336336
Status: "Login Succeeded",
337337
IdentityToken: token,
338338
},

cli/command/registry/login_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ func (*fakeClient) RegistryLogin(_ context.Context, options client.RegistryLogin
4343
}
4444
if options.Password == useToken {
4545
return client.RegistryLoginResult{
46-
Auth: registrytypes.AuthenticateOKBody{IdentityToken: options.Password},
46+
Auth: registrytypes.AuthResponse{IdentityToken: options.Password},
4747
}, nil
4848
}
4949
if options.Username == unknownUser {

vendor.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ require (
2828
github.com/google/uuid v1.6.0
2929
github.com/mattn/go-runewidth v0.0.17
3030
github.com/moby/go-archive v0.1.0
31-
github.com/moby/moby/api v1.52.0-beta.2.0.20251029165853-ef17deb3a0fb // master
32-
github.com/moby/moby/client v0.1.0-beta.2.0.20251029165853-ef17deb3a0fb // master
31+
github.com/moby/moby/api v1.52.0-beta.2.0.20251029225139-7a97e1cb401f // master
32+
github.com/moby/moby/client v0.1.0-beta.2.0.20251029225139-7a97e1cb401f // master
3333
github.com/moby/patternmatcher v0.6.0
3434
github.com/moby/swarmkit/v2 v2.1.0
3535
github.com/moby/sys/atomicwriter v0.1.0

vendor.sum

Lines changed: 4 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 v1.52.0-beta.2.0.20251029165853-ef17deb3a0fb h1:t4RxpXuvv26rIVUBqUm0xgmaSmmTJTv5fzEDxg5piWE=
174-
github.com/moby/moby/api v1.52.0-beta.2.0.20251029165853-ef17deb3a0fb/go.mod h1:v0K/motq8oWmx+rtApG1rBTIpQ8KUONUjpf+U73gags=
175-
github.com/moby/moby/client v0.1.0-beta.2.0.20251029165853-ef17deb3a0fb h1:3F0iF/yIxE43JcK3rJp4k/TsVmfvFMgRyGT/tg+K1xI=
176-
github.com/moby/moby/client v0.1.0-beta.2.0.20251029165853-ef17deb3a0fb/go.mod h1:1YrJTvhL771Q4xiwwe72NSS17lgsCF67xu8fEfSd77g=
173+
github.com/moby/moby/api v1.52.0-beta.2.0.20251029225139-7a97e1cb401f h1:agkZxo7k3fXBqdq6leYCCv0K45OjkH/H3fzPjwcoDkY=
174+
github.com/moby/moby/api v1.52.0-beta.2.0.20251029225139-7a97e1cb401f/go.mod h1:v0K/motq8oWmx+rtApG1rBTIpQ8KUONUjpf+U73gags=
175+
github.com/moby/moby/client v0.1.0-beta.2.0.20251029225139-7a97e1cb401f h1:I0uikdmKsCbOxQV+DIn7gyY8bD0d19g8920FuxI9l3E=
176+
github.com/moby/moby/client v0.1.0-beta.2.0.20251029225139-7a97e1cb401f/go.mod h1:1YrJTvhL771Q4xiwwe72NSS17lgsCF67xu8fEfSd77g=
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.1.0 h1:u+cJ5hSyF3HnzsyI+NtegYxdIPQIuibk7IbpXNxuISM=

vendor/github.com/moby/moby/api/types/registry/auth_response.go

Lines changed: 21 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/registry/authenticate.go

Lines changed: 0 additions & 21 deletions
This file was deleted.

vendor/github.com/moby/moby/client/client.go

Lines changed: 20 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/client/container_rename.go

Lines changed: 9 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/client/login.go

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

vendor/modules.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ github.com/moby/docker-image-spec/specs-go/v1
168168
github.com/moby/go-archive
169169
github.com/moby/go-archive/compression
170170
github.com/moby/go-archive/tarheader
171-
# github.com/moby/moby/api v1.52.0-beta.2.0.20251029165853-ef17deb3a0fb
171+
# github.com/moby/moby/api v1.52.0-beta.2.0.20251029225139-7a97e1cb401f
172172
## explicit; go 1.23.0
173173
github.com/moby/moby/api/pkg/authconfig
174174
github.com/moby/moby/api/pkg/stdcopy
@@ -190,7 +190,7 @@ github.com/moby/moby/api/types/storage
190190
github.com/moby/moby/api/types/swarm
191191
github.com/moby/moby/api/types/system
192192
github.com/moby/moby/api/types/volume
193-
# github.com/moby/moby/client v0.1.0-beta.2.0.20251029165853-ef17deb3a0fb
193+
# github.com/moby/moby/client v0.1.0-beta.2.0.20251029225139-7a97e1cb401f
194194
## explicit; go 1.23.0
195195
github.com/moby/moby/client
196196
github.com/moby/moby/client/internal

0 commit comments

Comments
 (0)