Tag v1.40.1
Tag a v1.40.1 release. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
This commit is contained in:
parent
f98fb7ce19
commit
96d7b3be0d
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -2,6 +2,16 @@
|
||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.40.1 (2025-06-04)
|
||||||
|
|
||||||
|
vendor: update c/common to v0.63.1
|
||||||
|
CI: run integration tests on Fedora with both crun and runc
|
||||||
|
buildah-build(1): clarify that --cgroup-parent affects RUN instructions
|
||||||
|
runUsingRuntime: use named constants for runtime states
|
||||||
|
Add a dummy "runtime" that just dumps its config file
|
||||||
|
run: handle relabeling bind mounts ourselves
|
||||||
|
Tweak our handling of variant values, again
|
||||||
|
|
||||||
## v1.40.0 (2025-04-17)
|
## v1.40.0 (2025-04-17)
|
||||||
|
|
||||||
Bump c/storage to v1.58.0, c/image v5.35.0, c/common v0.63.0
|
Bump c/storage to v1.58.0, c/image v5.35.0, c/common v0.63.0
|
||||||
|
|
|
@ -1,3 +1,12 @@
|
||||||
|
- Changelog for v1.40.1 (2025-06-04)
|
||||||
|
* vendor: update c/common to v0.63.1
|
||||||
|
* CI: run integration tests on Fedora with both crun and runc
|
||||||
|
* buildah-build(1): clarify that --cgroup-parent affects RUN instructions
|
||||||
|
* runUsingRuntime: use named constants for runtime states
|
||||||
|
* Add a dummy "runtime" that just dumps its config file
|
||||||
|
* run: handle relabeling bind mounts ourselves
|
||||||
|
* Tweak our handling of variant values, again
|
||||||
|
|
||||||
- Changelog for v1.40.0 (2025-04-17)
|
- Changelog for v1.40.0 (2025-04-17)
|
||||||
* Bump c/storage to v1.58.0, c/image v5.35.0, c/common v0.63.0
|
* Bump c/storage to v1.58.0, c/image v5.35.0, c/common v0.63.0
|
||||||
* fix(deps): update module github.com/docker/docker to v28.1.0+incompatible
|
* fix(deps): update module github.com/docker/docker to v28.1.0+incompatible
|
||||||
|
|
|
@ -29,7 +29,7 @@ const (
|
||||||
// identify working containers.
|
// identify working containers.
|
||||||
Package = "buildah"
|
Package = "buildah"
|
||||||
// Version for the Package. Also used by .packit.sh for Packit builds.
|
// Version for the Package. Also used by .packit.sh for Packit builds.
|
||||||
Version = "1.40.0"
|
Version = "1.40.1"
|
||||||
|
|
||||||
// DefaultRuntime if containers.conf fails.
|
// DefaultRuntime if containers.conf fails.
|
||||||
DefaultRuntime = "runc"
|
DefaultRuntime = "runc"
|
||||||
|
|
Loading…
Reference in New Issue