Просмотр исходного кода

build(deps): bump github.com/docker/cli v29.4.0

full diff: https://github.com/docker/cli/compare/v29.3.1...v29.4.0

Signed-off-by: Sebastiaan van Stijn <[email protected]>
Sebastiaan van Stijn 1 неделя назад
Родитель
Сommit
89e3517f29
3 измененных файлов с 5 добавлено и 5 удалено
  1. 1 1
      go.mod
  2. 2 2
      go.sum
  3. 2 2
      pkg/e2e/compose_run_test.go

+ 1 - 1
go.mod

@@ -16,7 +16,7 @@ require (
 	github.com/creack/pty v1.1.24
 	github.com/distribution/reference v0.6.0
 	github.com/docker/buildx v0.33.0
-	github.com/docker/cli v29.3.1+incompatible
+	github.com/docker/cli v29.4.0+incompatible
 	github.com/docker/cli-docs-tool v0.11.0
 	github.com/docker/docker v28.5.2+incompatible
 	github.com/docker/go-units v0.5.0

+ 2 - 2
go.sum

@@ -92,8 +92,8 @@ github.com/dlclark/regexp2 v1.11.0 h1:G/nrcoOa7ZXlpoa/91N3X7mM3r8eIlMBBJZvsz/mxK
 github.com/dlclark/regexp2 v1.11.0/go.mod h1:DHkYz0B9wPfa6wondMfaivmHpzrQ3v9q8cnmRbL6yW8=
 github.com/docker/buildx v0.33.0 h1:xuZeuQe/C/2tvLDgiIA6+Ynq3FFWSfsGNWIHM3q1hD8=
 github.com/docker/buildx v0.33.0/go.mod h1:7JVma62htERKE5iy5YD1q64PKiAHUzXuhSBd4oq3I74=
-github.com/docker/cli v29.3.1+incompatible h1:M04FDj2TRehDacrosh7Vlkgc7AuQoWloQkf1PA5hmoI=
-github.com/docker/cli v29.3.1+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
+github.com/docker/cli v29.4.0+incompatible h1:+IjXULMetlvWJiuSI0Nbor36lcJ5BTcVpUmB21KBoVM=
+github.com/docker/cli v29.4.0+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
 github.com/docker/cli-docs-tool v0.11.0 h1:7d8QARFb7QEobizqxmEM7fOteZEHwH/zWgHQtHZEcfE=
 github.com/docker/cli-docs-tool v0.11.0/go.mod h1:ma8BKiisUo8D6W05XEYIh3oa1UbgrZhi1nowyKFJa8Q=
 github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=

+ 2 - 2
pkg/e2e/compose_run_test.go

@@ -260,7 +260,7 @@ func TestLocalComposeRun(t *testing.T) {
 
 		res.Assert(t, icmd.Expected{
 			ExitCode: 1,
-			Err:      "the input device is not a TTY",
+			Err:      "cannot attach stdin to a TTY-enabled container because stdin is not a terminal",
 		})
 	})
 
@@ -275,7 +275,7 @@ func TestLocalComposeRun(t *testing.T) {
 
 		res.Assert(t, icmd.Expected{
 			ExitCode: 1,
-			Err:      "the input device is not a TTY",
+			Err:      "cannot attach stdin to a TTY-enabled container because stdin is not a terminal",
 		})
 	})
 }