From a758cb0f7f5e413abba3e5530b7218ef31426c27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Thu, 12 Jan 2023 18:18:13 +0100 Subject: [PATCH 1/3] versions: Update TD-Shim version to v0.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit TD-Shim has released its v0.3.0 release earlier Today, following the Confidential Containers v0.3.0 release. Let's update it here. We need to also bump the toolchain to using the nightly-2022-11-15 Signed-off-by: Fabiano FidĂȘncio --- versions.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/versions.yaml b/versions.yaml index e3110385da..1e5168b32b 100644 --- a/versions.yaml +++ b/versions.yaml @@ -316,8 +316,8 @@ externals: td-shim: description: "Confidential Containers Shim Firmware" url: "https://github.com/confidential-containers/td-shim" - version: "v0.2.0" - toolchain: "nightly-2022-05-15" + version: "v0.3.0" + toolchain: "nightly-2022-11-15" virtiofsd: description: "vhost-user virtio-fs device backend written in Rust" From e87b8875891536ecd07612e4c5a4926fcf229960 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Thu, 12 Jan 2023 18:28:48 +0100 Subject: [PATCH 2/3] build: Update image-rs to v0.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit image-rs has released its v0.3.0 release earlier Today, following the v0.3.0 Confidential Containers release process. The v0.3.0 is based on exactly the same commit we've been using already, so no changes are expected for us. Signed-off-by: Fabiano FidĂȘncio --- src/agent/Cargo.lock | 2 +- src/agent/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/agent/Cargo.lock b/src/agent/Cargo.lock index 96647f91ca..7eaa58a4ff 100644 --- a/src/agent/Cargo.lock +++ b/src/agent/Cargo.lock @@ -2158,7 +2158,7 @@ dependencies = [ [[package]] name = "image-rs" version = "0.1.0" -source = "git+https://github.com/confidential-containers/image-rs?rev=cf1f7f96eb60ec4cc4aaa671c04d574a4ea0e441#cf1f7f96eb60ec4cc4aaa671c04d574a4ea0e441" +source = "git+https://github.com/confidential-containers/image-rs?rev=v0.3.0#cf1f7f96eb60ec4cc4aaa671c04d574a4ea0e441" dependencies = [ "anyhow", "async-compression", diff --git a/src/agent/Cargo.toml b/src/agent/Cargo.toml index f6fe6e1e99..fc7bed62a6 100644 --- a/src/agent/Cargo.toml +++ b/src/agent/Cargo.toml @@ -71,10 +71,10 @@ openssl = { version = "0.10.38", features = ["vendored"] } # Image pull/decrypt [target.'cfg(target_arch = "s390x")'.dependencies] -image-rs = { git = "https://github.com/confidential-containers/image-rs", rev = "cf1f7f96eb60ec4cc4aaa671c04d574a4ea0e441", default-features = false, features = ["default_s390x"] } +image-rs = { git = "https://github.com/confidential-containers/image-rs", rev = "v0.3.0", default-features = false, features = ["default_s390x"] } [target.'cfg(not(target_arch = "s390x"))'.dependencies] -image-rs = { git = "https://github.com/confidential-containers/image-rs", rev = "cf1f7f96eb60ec4cc4aaa671c04d574a4ea0e441", default-features = true } +image-rs = { git = "https://github.com/confidential-containers/image-rs", rev = "v0.3.0", default-features = true } [dev-dependencies] tempfile = "3.1.0" From 7415227645b9f7406614bedf3bd6a8bb267fcabc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Thu, 12 Jan 2023 19:10:40 +0100 Subject: [PATCH 3/3] versions: Bump attestation-agent to v0.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The attestation-agent had its v0.3.0 release earlier Today, following the Confidential Containers v0.3.0 release process. Let's bump it on our side, as we've already tested the version that became this release. Signed-off-by: Fabiano FidĂȘncio --- versions.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions.yaml b/versions.yaml index 1e5168b32b..7fff158fa5 100644 --- a/versions.yaml +++ b/versions.yaml @@ -191,7 +191,7 @@ externals: attestation-agent: description: "Provide attested key unwrapping for image decryption" url: "https://github.com/confidential-containers/attestation-agent" - version: "v0.2.0" + version: "v0.3.0" cni-plugins: description: "CNI network plugins"