From 2289e53cbe624e4edb4e9ff85f7cecb3ac905bae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Fri, 14 Apr 2023 11:23:10 +0200 Subject: [PATCH 1/3] versions: Update td-shim to v0.5.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Let's update td-shim to the lataest released version of the project. 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 f1cd298083..7a0d560a06 100644 --- a/versions.yaml +++ b/versions.yaml @@ -310,7 +310,7 @@ externals: td-shim: description: "Confidential Containers Shim Firmware" url: "https://github.com/confidential-containers/td-shim" - version: "10568bab569bc40034cc973f26fbb0a768dcc3e3" + version: "v0.5.0" toolchain: "nightly-2022-11-15" virtiofsd: From d05ec9cb1207ef801df9a0528f8136b5cabd487a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Fri, 14 Apr 2023 11:27:00 +0200 Subject: [PATCH 2/3] versions: Update attestation-agent to v0.5.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Let's update the attestation-agent to the latest released version of the project. 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 7a0d560a06..8e6073fe5e 100644 --- a/versions.yaml +++ b/versions.yaml @@ -190,7 +190,7 @@ externals: attestation-agent: description: "Provide attested key unwrapping for image decryption" url: "https://github.com/confidential-containers/attestation-agent" - version: "c939d211fe5ac497715008e36161aff20cabb6e6" + version: "v0.5.0" cni-plugins: description: "CNI network plugins" From a3b2358c771343eb7c2e585a733acee0e1a25268 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Fri, 14 Apr 2023 11:24:34 +0200 Subject: [PATCH 3/3] agent: Update image-rs to v0.5.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Let's update image-rs to the latest released version of the project. Fixes: #6650 Signed-off-by: Fabiano FidĂȘncio --- src/agent/Cargo.lock | 4 ++-- src/agent/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/agent/Cargo.lock b/src/agent/Cargo.lock index 8b82d510f8..282bfc7853 100644 --- a/src/agent/Cargo.lock +++ b/src/agent/Cargo.lock @@ -1802,7 +1802,7 @@ dependencies = [ [[package]] name = "image-rs" version = "0.1.0" -source = "git+https://github.com/confidential-containers/image-rs?rev=b28eaae#b28eaae46bcea69ac28d079381b7aa1ef6851ad9" +source = "git+https://github.com/confidential-containers/image-rs?tag=v0.5.1#767800855738c559d54b3f84810876b669ec3b83" dependencies = [ "anyhow", "async-compression", @@ -2656,7 +2656,7 @@ dependencies = [ [[package]] name = "ocicrypt-rs" version = "0.1.0" -source = "git+https://github.com/confidential-containers/ocicrypt-rs?rev=55ab22d#55ab22d572ec385ba466085f3c78f4148dfd287e" +source = "git+https://github.com/confidential-containers/ocicrypt-rs?tag=v0.5.1#3bf5bc4ebabe6d4695edf955b76dd3635c55d118" dependencies = [ "aes 0.8.2", "anyhow", diff --git a/src/agent/Cargo.toml b/src/agent/Cargo.toml index 3d8f4b9d41..3ae604eed9 100644 --- a/src/agent/Cargo.toml +++ b/src/agent/Cargo.toml @@ -72,10 +72,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 = "b28eaae", default-features = false, features = ["kata-cc-s390x"] } +image-rs = { git = "https://github.com/confidential-containers/image-rs", tag = "v0.5.1", default-features = false, features = ["kata-cc-s390x"] } [target.'cfg(not(target_arch = "s390x"))'.dependencies] -image-rs = { git = "https://github.com/confidential-containers/image-rs", rev = "b28eaae", default-features = false, features = ["kata-cc"] } +image-rs = { git = "https://github.com/confidential-containers/image-rs", tag = "v0.5.1", default-features = false, features = ["kata-cc"] } [patch.crates-io] oci-distribution = { git = "https://github.com/krustlet/oci-distribution.git", rev = "f44124c" }