Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump github.com/docker/docker from 26.1.4+incompatible to 27.4.1+incompatible #882

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -49,7 +49,7 @@ require (
github.com/distribution/reference v0.6.0 // indirect
github.com/docker/cli v27.0.2+incompatible // indirect
github.com/docker/distribution v2.8.3+incompatible // indirect
github.com/docker/docker v26.1.4+incompatible // indirect
github.com/docker/docker v27.4.1+incompatible // indirect
github.com/docker/docker-credential-helpers v0.8.2 // indirect
github.com/docker/go-connections v0.5.0 // indirect
github.com/docker/go-units v0.5.0 // indirect
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1369,8 +1369,8 @@ github.com/docker/docker v20.10.20+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05
github.com/docker/docker v20.10.24+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
github.com/docker/docker v23.0.1+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
github.com/docker/docker v23.0.5+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
github.com/docker/docker v26.1.4+incompatible h1:vuTpXDuoga+Z38m1OZHzl7NKisKWaWlhjQk7IDPSLsU=
github.com/docker/docker v26.1.4+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
github.com/docker/docker v27.4.1+incompatible h1:ZJvcY7gfwHn1JF48PfbyXg7Jyt9ZCWDW+GGXOIxEwp4=
github.com/docker/docker v27.4.1+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
github.com/docker/docker-credential-helpers v0.6.3/go.mod h1:WRaJzqw3CTB9bk10avuGsjVBZsD05qeibJ1/TYlvc0Y=
github.com/docker/docker-credential-helpers v0.6.4/go.mod h1:ofX3UI0Gz1TteYBjtgs07O36Pyasyp66D2uKT7H8W1c=
github.com/docker/docker-credential-helpers v0.7.0/go.mod h1:rETQfLdHNT3foU5kuNkFR1R1V12OJRRO5lzt2D1b5X0=

Unchanged files with check annotations Beta

Execute(name, source)
Expect(err).ToNot(HaveOccurred(), logs.String)
Expect(logs).To(ContainLines(

Check failure on line 67 in integration/logging_test.go

GitHub Actions / lint

undefined: ContainLines (typecheck)
MatchRegexp(fmt.Sprintf(`%s \d+\.\d+\.\d+`, settings.Buildpack.Name)),
" Resolving MRI version",
" Candidate version sources (in priority order):",
" <unknown> -> \"\"",
))
Expect(logs).To(ContainLines(

Check failure on line 75 in integration/logging_test.go

GitHub Actions / lint

undefined: ContainLines (typecheck)
MatchRegexp(` Selected MRI version \(using BP_MRI_VERSION\): 3\.1\.\d+`),
))
Expect(logs).To(ContainLines(

Check failure on line 79 in integration/logging_test.go

GitHub Actions / lint

undefined: ContainLines (typecheck)
" Executing build process",
MatchRegexp(` Installing MRI 3\.1\.\d+`),
MatchRegexp(` Completed in ([0-9]*(\.[0-9]*)?[a-z]+)+`),
Execute(image.ID)
Expect(err).NotTo(HaveOccurred())
Eventually(container).Should(BeAvailable(), logs.String())

Check failure on line 76 in integration/offline_test.go

GitHub Actions / lint

undefined: BeAvailable (typecheck)
Eventually(container).Should(Serve(MatchRegexp(`Hello from Ruby 3\.1\.\d+`)).OnPort(8080))

Check failure on line 77 in integration/offline_test.go

GitHub Actions / lint

undefined: Serve (typecheck)
})
})
}
containerIDs[firstContainer.ID] = struct{}{}
Eventually(firstContainer).Should(BeAvailable())

Check failure on line 128 in integration/reuse_layer_rebuild_test.go

GitHub Actions / lint

undefined: BeAvailable (typecheck)
// Second pack build
secondImage, logs, err = build.Execute(name, source)
containerIDs[secondContainer.ID] = struct{}{}
Eventually(secondContainer).Should(BeAvailable())

Check failure on line 166 in integration/reuse_layer_rebuild_test.go

GitHub Actions / lint

undefined: BeAvailable (typecheck)
Eventually(secondContainer).Should(Serve(MatchRegexp(`Hello from Ruby 3\.1\.\d+`)).OnPort(8080))

Check failure on line 167 in integration/reuse_layer_rebuild_test.go

GitHub Actions / lint

undefined: Serve (typecheck)
Expect(secondImage.Buildpacks[0].Layers["mri"].SHA).To(Equal(firstImage.Buildpacks[0].Layers["mri"].SHA))
})
containerIDs[secondContainer.ID] = struct{}{}
Eventually(secondContainer).Should(BeAvailable())
Eventually(secondContainer).Should(Serve(MatchRegexp(`Hello from Ruby 3\.2\.\d+`)).OnPort(8080))

Check failure on line 300 in integration/reuse_layer_rebuild_test.go

GitHub Actions / lint

undefined: Serve (typecheck)
Expect(secondImage.Buildpacks[0].Layers["mri"].SHA).NotTo(Equal(firstImage.Buildpacks[0].Layers["mri"].SHA))
})