mirror of
https://github.com/containers/podman.git
synced 2025-10-09 06:26:26 +08:00
Vendor buildah@v1.41.5
Signed-off-by: Ashley Cui <acui@redhat.com>
This commit is contained in:
2
go.mod
2
go.mod
@ -11,7 +11,7 @@ require (
|
||||
github.com/checkpoint-restore/checkpointctl v1.3.0
|
||||
github.com/checkpoint-restore/go-criu/v7 v7.2.0
|
||||
github.com/containernetworking/plugins v1.7.1
|
||||
github.com/containers/buildah v1.41.4
|
||||
github.com/containers/buildah v1.41.5
|
||||
github.com/containers/common v0.64.2
|
||||
github.com/containers/conmon v2.0.20+incompatible
|
||||
github.com/containers/gvisor-tap-vsock v0.8.6
|
||||
|
4
go.sum
4
go.sum
@ -62,8 +62,8 @@ github.com/containernetworking/cni v1.3.0 h1:v6EpN8RznAZj9765HhXQrtXgX+ECGebEYEm
|
||||
github.com/containernetworking/cni v1.3.0/go.mod h1:Bs8glZjjFfGPHMw6hQu82RUgEPNGEaBb9KS5KtNMnJ4=
|
||||
github.com/containernetworking/plugins v1.7.1 h1:CNAR0jviDj6FS5Vg85NTgKWLDzZPfi/lj+VJfhMDTIs=
|
||||
github.com/containernetworking/plugins v1.7.1/go.mod h1:xuMdjuio+a1oVQsHKjr/mgzuZ24leAsqUYRnzGoXHy0=
|
||||
github.com/containers/buildah v1.41.4 h1:IHYWex7rwhsOwtRXQ+VMEQr96gUbSbSvxJcX6AoiDeA=
|
||||
github.com/containers/buildah v1.41.4/go.mod h1:IFW8MbAgXYiUBCcAFExlHkPfE41DJWVBCbDZWZ9WEng=
|
||||
github.com/containers/buildah v1.41.5 h1:tdxtsb+SctAQ0/vdAJg5AMArVypeN2DmIjHV1bkoMO4=
|
||||
github.com/containers/buildah v1.41.5/go.mod h1:IFW8MbAgXYiUBCcAFExlHkPfE41DJWVBCbDZWZ9WEng=
|
||||
github.com/containers/common v0.64.2 h1:1xepE7QwQggUXxmyQ1Dbh6Cn0yd7ktk14sN3McSWf5I=
|
||||
github.com/containers/common v0.64.2/go.mod h1:o29GfYy4tefUuShm8mOn2AiL5Mpzdio+viHI7n24KJ4=
|
||||
github.com/containers/conmon v2.0.20+incompatible h1:YbCVSFSCqFjjVwHTPINGdMX1F6JXHGTUje2ZYobNrkg=
|
||||
|
5
vendor/github.com/containers/buildah/CHANGELOG.md
generated
vendored
5
vendor/github.com/containers/buildah/CHANGELOG.md
generated
vendored
@ -2,6 +2,11 @@
|
||||
|
||||
# Changelog
|
||||
|
||||
## v1.41.5 (2025-09-29)
|
||||
|
||||
[release-1.41] Run: create parent directories of mount targets with mode 0755
|
||||
[release-1.41] tests/run.bats: "run masks" test: accept "unreadable" masked directories
|
||||
|
||||
## v1.41.4 (2025-09-03)
|
||||
|
||||
[release-1.41] c/common to v0.64.2, ulikunitz/xv v0.5.12, docker/docker v28.3.3
|
||||
|
5
vendor/github.com/containers/buildah/changelog.txt
generated
vendored
5
vendor/github.com/containers/buildah/changelog.txt
generated
vendored
@ -1,3 +1,8 @@
|
||||
- Changelog for v1.41.5 (2025-09-29)
|
||||
|
||||
[release-1.41] Run: create parent directories of mount targets with mode 0755
|
||||
[release-1.41] tests/run.bats: "run masks" test: accept "unreadable" masked directories
|
||||
|
||||
- Changelog for v1.41.4 (2025-09-03)
|
||||
* [release-1.41] c/common to v0.64.2, ulikunitz/xv v0.5.12, docker/docker v28.3.3
|
||||
|
||||
|
2
vendor/github.com/containers/buildah/define/types.go
generated
vendored
2
vendor/github.com/containers/buildah/define/types.go
generated
vendored
@ -29,7 +29,7 @@ const (
|
||||
// identify working containers.
|
||||
Package = "buildah"
|
||||
// Version for the Package. Also used by .packit.sh for Packit builds.
|
||||
Version = "1.41.4"
|
||||
Version = "1.41.5"
|
||||
|
||||
// DefaultRuntime if containers.conf fails.
|
||||
DefaultRuntime = "runc"
|
||||
|
6
vendor/github.com/containers/buildah/run_common.go
generated
vendored
6
vendor/github.com/containers/buildah/run_common.go
generated
vendored
@ -2102,6 +2102,12 @@ func (b *Builder) createMountTargets(spec *specs.Spec) ([]copier.ConditionalRemo
|
||||
// forced permissions
|
||||
mode = &perms
|
||||
}
|
||||
if mode == nil && destination != cleanedDestination {
|
||||
// parent directories default to 0o755, for
|
||||
// the sake of commands running as UID != 0
|
||||
perms := os.FileMode(0o755)
|
||||
mode = &perms
|
||||
}
|
||||
targets.Paths = append(targets.Paths, copier.EnsurePath{
|
||||
Path: destination,
|
||||
Typeflag: typeFlag,
|
||||
|
2
vendor/modules.txt
vendored
2
vendor/modules.txt
vendored
@ -108,7 +108,7 @@ github.com/containernetworking/cni/pkg/version
|
||||
# github.com/containernetworking/plugins v1.7.1
|
||||
## explicit; go 1.23.0
|
||||
github.com/containernetworking/plugins/pkg/ns
|
||||
# github.com/containers/buildah v1.41.4
|
||||
# github.com/containers/buildah v1.41.5
|
||||
## explicit; go 1.23.3
|
||||
github.com/containers/buildah
|
||||
github.com/containers/buildah/bind
|
||||
|
Reference in New Issue
Block a user