File tree Expand file tree Collapse file tree 8 files changed +50
-17
lines changed
Expand file tree Collapse file tree 8 files changed +50
-17
lines changed Original file line number Diff line number Diff line change 22
33All notable changes to this project will be documented in this file.
44
5+ ## [ 0.9.23] - 2025-10-02
6+
7+ ### Bug Fixes
8+
9+ - Use different mount options based on build engine
10+ - Get podman working for Gitlab builds (#520 )
11+ - Ensure build and run driver is set to podman
12+ - Symlink /opt in prebuild
13+ - Make sure to recreate the symbolic link for /opt at the end
14+ - Have a better check for existing entries in /opt
15+ - Set buildscripts for switch command
16+ - Make sure to remove /opt before re-linking
17+ - Take into account directories with spaces in the name
18+ - The last argument shouldn't have quotes
19+
20+ ### Features
21+
22+ - Add bootc support (#448 )
23+ - Embed build scripts and extract into temp dir for build (#516 )
24+ - Use oci-client crate for inspecting
25+ - Add --link arg for COPY if build driver is docker
26+
27+ ### Miscellaneous Tasks
28+
29+ - Fix clippy lints
30+ - Update deps
31+ - Add env vars for some build args
32+ - Add missing env vars for build args
33+ - Create scorecard.yml
34+ - Add scorecard badge
35+ - Use /usr/lib/opt for optfix to match dnf and rpm-ostree modules
36+
537## [ 0.9.22] - 2025-07-31
638
739### Bug Fixes
@@ -11,6 +43,7 @@ All notable changes to this project will be documented in this file.
1143### Miscellaneous Tasks
1244
1345- Adjust release command
46+ - Release
1447
1548## [ 0.9.21] - 2025-07-29
1649
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ edition = "2024"
77repository = " https://github.com/blue-build/cli"
88license = " Apache-2.0"
99categories = [" command-line-utilities" ]
10- version = " 0.9.22 "
10+ version = " 0.9.23 "
1111
1212[workspace .dependencies ]
1313bon = " 3"
@@ -69,10 +69,10 @@ pre-release-replacements = [
6969]
7070
7171[dependencies ]
72- blue-build-recipe = { version = " =0.9.22 " , path = " ./recipe" }
73- blue-build-template = { version = " =0.9.22 " , path = " ./template" }
74- blue-build-utils = { version = " =0.9.22 " , path = " ./utils" }
75- blue-build-process-management = { version = " =0.9.22 " , path = " ./process" }
72+ blue-build-recipe = { version = " =0.9.23 " , path = " ./recipe" }
73+ blue-build-template = { version = " =0.9.23 " , path = " ./template" }
74+ blue-build-utils = { version = " =0.9.23 " , path = " ./utils" }
75+ blue-build-process-management = { version = " =0.9.23 " , path = " ./process" }
7676clap-verbosity-flag = " 3"
7777clap_complete = " 4"
7878clap_complete_nushell = " 4"
Original file line number Diff line number Diff line change 3636 default = bluebuild ;
3737 bluebuild = pkgs . rustPlatform . buildRustPackage {
3838 pname = "bluebuild" ;
39- version = "v0.9.22 " ;
39+ version = "v0.9.23 " ;
4040
4141 src = pkgs . lib . cleanSource ./. ;
4242 cargoLock . lockFile = ./Cargo.lock ;
Original file line number Diff line number Diff line change 22
33set -euo pipefail
44
5- VERSION=v0.9.22
5+ VERSION=v0.9.23
66
77# Container runtime
88function cr() {
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ path = "process.rs"
1212
1313[dependencies ]
1414anyhow = " 1"
15- blue-build-utils = { version = " =0.9.22 " , path = " ../utils" }
15+ blue-build-utils = { version = " =0.9.23 " , path = " ../utils" }
1616indicatif-log-bridge = " 0.2"
1717log4rs = { version = " 1" , features = [" background_rotation" ] }
1818nu-ansi-term = { version = " 0.50" , features = [" gnu_legacy" ] }
@@ -47,7 +47,7 @@ zeroize.workspace = true
4747[dev-dependencies ]
4848pretty_assertions.workspace = true
4949rstest.workspace = true
50- blue-build-utils = { version = " =0.9.22 " , path = " ../utils" , features = [" test" ] }
50+ blue-build-utils = { version = " =0.9.23 " , path = " ../utils" , features = [" test" ] }
5151
5252[lints ]
5353workspace = true
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ license.workspace = true
99# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010
1111[dependencies ]
12- blue-build-utils = { version = " =0.9.22 " , path = " ../utils" }
12+ blue-build-utils = { version = " =0.9.23 " , path = " ../utils" }
1313
1414colored.workspace = true
1515log.workspace = true
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ license.workspace = true
1010
1111[dependencies ]
1212askama = { version = " 0.14" , features = [" serde_json" ] }
13- blue-build-recipe = { version = " =0.9.22 " , path = " ../recipe" }
14- blue-build-utils = { version = " =0.9.22 " , path = " ../utils" }
13+ blue-build-recipe = { version = " =0.9.23 " , path = " ../recipe" }
14+ blue-build-utils = { version = " =0.9.23 " , path = " ../utils" }
1515oci-distribution.workspace = true
1616
1717chrono.workspace = true
You can’t perform that action at this time.
0 commit comments