From ca95124650db65e2f7ee7a3e3f1cd8df231c4a37 Mon Sep 17 00:00:00 2001 From: "bootc-bot[bot]" <225049296+bootc-bot[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 08:12:32 +0000 Subject: [PATCH] Release 1.11.0 Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- Cargo.lock | 2 +- crates/cli/Cargo.toml | 2 +- crates/lib/Cargo.toml | 2 +- docs/src/host-v1.schema.json | 7 +++++++ docs/src/man/bootc.8.md | 1 - 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 80e7a7911..40a59a6ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -219,7 +219,7 @@ dependencies = [ [[package]] name = "bootc-lib" -version = "1.10.0" +version = "1.11.0" dependencies = [ "anstream", "anstyle", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 938091cee..50079e973 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -15,7 +15,7 @@ platforms = ["*-unknown-linux-gnu"] [dependencies] # Internal crates -bootc-lib = { version = "1.10", path = "../lib" } +bootc-lib = { version = "1.11", path = "../lib" } bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.0.0" } # Workspace dependencies diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index cdc278d49..48011b357 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -6,7 +6,7 @@ name = "bootc-lib" repository = "https://github.com/bootc-dev/bootc" # The intention is we'll follow semver here, even though this # project isn't actually published as a crate. -version = "1.10.0" +version = "1.11.0" # In general we try to keep this pinned to what's in the latest RHEL9. rust-version = "1.84.0" diff --git a/docs/src/host-v1.schema.json b/docs/src/host-v1.schema.json index 21e65e634..e0bdf2880 100644 --- a/docs/src/host-v1.schema.json +++ b/docs/src/host-v1.schema.json @@ -122,6 +122,13 @@ "description": "A bootable entry", "type": "object", "properties": { + "bootDigest": { + "description": "The sha256sum of vmlinuz + initrd\nOnly `Some` for Type1 boot entries", + "type": [ + "string", + "null" + ] + }, "bootType": { "description": "Whether this deployment is to be booted via Type1 (vmlinuz + initrd) or Type2 (UKI) entry", "$ref": "#/$defs/BootType" diff --git a/docs/src/man/bootc.8.md b/docs/src/man/bootc.8.md index 3c22aacb4..dd9ee7d18 100644 --- a/docs/src/man/bootc.8.md +++ b/docs/src/man/bootc.8.md @@ -34,7 +34,6 @@ pulled and `bootc upgrade`. | **bootc install** | Install the running container to a target | | **bootc container** | Operations which can be executed as part of a container build | | **bootc composefs-finalize-staged** | | -| **bootc config-diff** | Diff current /etc configuration versus default |