Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e060e05

Browse files
committedMar 22, 2025··
test docker/cli with moved prompt utils
Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 02fde64 commit e060e05

File tree

6 files changed

+135
-149
lines changed

6 files changed

+135
-149
lines changed
 

‎go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ module github.com/docker/buildx
22

33
go 1.23.0
44

5-
// FIXME(thaJeztah): testing simplify_auth branch from https://github.com/docker/cli/pull/5925
6-
replace github.com/docker/cli => github.com/thaJeztah/cli v0.0.0-20250321151021-64e04a345e1c
5+
// FIXME(thaJeztah): testing move_prompt_utils_step2 branch
6+
replace github.com/docker/cli => github.com/thaJeztah/cli v0.0.0-20250322150532-7278e1563fbe
77

88
require (
99
github.com/Masterminds/semver/v3 v3.2.1

‎go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -376,8 +376,8 @@ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO
376376
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
377377
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
378378
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
379-
github.com/thaJeztah/cli v0.0.0-20250321151021-64e04a345e1c h1:PdkIezfDL8xOLcwVBvLxowhwArn0ojKWemsFO428UmA=
380-
github.com/thaJeztah/cli v0.0.0-20250321151021-64e04a345e1c/go.mod h1:PnmaRA7hP+mokt+80q1r6bxulIIvKxbaap8NOfsS7/Y=
379+
github.com/thaJeztah/cli v0.0.0-20250322150532-7278e1563fbe h1:ULRzaoYBye0Yald0Za1ktyMwFSPiDEltSGW4ygM9wNI=
380+
github.com/thaJeztah/cli v0.0.0-20250322150532-7278e1563fbe/go.mod h1:PnmaRA7hP+mokt+80q1r6bxulIIvKxbaap8NOfsS7/Y=
381381
github.com/theupdateframework/notary v0.7.0 h1:QyagRZ7wlSpjT5N2qQAh/pN+DVqgekv4DzbAiAiEL3c=
382382
github.com/theupdateframework/notary v0.7.0/go.mod h1:c9DRxcmhHmVLDay4/2fUYdISnHqbFDGRSlXPO0AhYWw=
383383
github.com/tonistiigi/dchapes-mode v0.0.0-20241001053921-ca0759fec205 h1:eUk79E1w8yMtXeHSzjKorxuC8qJOnyXQnLaJehxpJaI=

‎vendor/github.com/docker/cli/cli/command/registry.go

+12-46
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/github.com/docker/cli/cli/command/utils.go

-97
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/github.com/docker/cli/internal/prompt/prompt.go

+116
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/modules.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ github.com/davecgh/go-spew/spew
221221
# github.com/distribution/reference v0.6.0
222222
## explicit; go 1.20
223223
github.com/distribution/reference
224-
# github.com/docker/cli v28.0.3-0.20250321083123-255a5f630ea7+incompatible => github.com/thaJeztah/cli v0.0.0-20250321151021-64e04a345e1c
224+
# github.com/docker/cli v28.0.3-0.20250321083123-255a5f630ea7+incompatible => github.com/thaJeztah/cli v0.0.0-20250322150532-7278e1563fbe
225225
## explicit
226226
github.com/docker/cli/cli
227227
github.com/docker/cli/cli-plugins/metadata
@@ -245,6 +245,7 @@ github.com/docker/cli/cli/flags
245245
github.com/docker/cli/cli/hints
246246
github.com/docker/cli/cli/streams
247247
github.com/docker/cli/cli/version
248+
github.com/docker/cli/internal/prompt
248249
github.com/docker/cli/internal/tui
249250
github.com/docker/cli/opts
250251
github.com/docker/cli/pkg/kvfile
@@ -1310,4 +1311,4 @@ sigs.k8s.io/structured-merge-diff/v4/value
13101311
## explicit; go 1.12
13111312
sigs.k8s.io/yaml
13121313
sigs.k8s.io/yaml/goyaml.v2
1313-
# github.com/docker/cli => github.com/thaJeztah/cli v0.0.0-20250321151021-64e04a345e1c
1314+
# github.com/docker/cli => github.com/thaJeztah/cli v0.0.0-20250322150532-7278e1563fbe

0 commit comments

Comments
 (0)
Please sign in to comment.