From c26e43630c3181884c64cbff45533752975b0514 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Apr 2025 18:16:07 +0000 Subject: [PATCH 1/2] chore(cargo): bump image from 0.25.5 to 0.25.6 Bumps [image](https://github.com/image-rs/image) from 0.25.5 to 0.25.6. - [Changelog](https://github.com/image-rs/image/blob/main/CHANGES.md) - [Commits](https://github.com/image-rs/image/compare/v0.25.5...v0.25.6) --- updated-dependencies: - dependency-name: image dependency-version: 0.25.6 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a0642e89f..e7a0acdc4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2800,9 +2800,9 @@ dependencies = [ [[package]] name = "image" -version = "0.25.5" +version = "0.25.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd6f44aed642f18953a158afeb30206f4d50da59fbc66ecb53c66488de73563b" +checksum = "db35664ce6b9810857a38a906215e75a9c879f0696556a39f59c62829710251a" dependencies = [ "bytemuck", "byteorder-lite", diff --git a/Cargo.toml b/Cargo.toml index 0ad2328e5..18f01ce19 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,7 +61,7 @@ http-body-util = "0.1.2" humansize = "2" hyper = "1" hyper-util = "0.1.11" -image = { version = "0.25.5", default-features=false, features = ["gif", "jpeg", "ico", "png", "pnm", "webp", "bmp"] } +image = { version = "0.25.6", default-features=false, features = ["gif", "jpeg", "ico", "png", "pnm", "webp", "bmp"] } iroh-gossip = { version = "0.33", default-features = false, features = ["net"] } iroh = { version = "0.33", default-features = false } kamadak-exif = "0.6.1" From 5210b376018cc905ae9e704fe418fdbf0b2d5b7c Mon Sep 17 00:00:00 2001 From: link2xt Date: Mon, 7 Apr 2025 18:39:36 +0000 Subject: [PATCH 2/2] test: update blob hash in blob::blob_tests::test_selfavatar_outside_blobdir --- src/blob/blob_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blob/blob_tests.rs b/src/blob/blob_tests.rs index 91133d078..57fe798e3 100644 --- a/src/blob/blob_tests.rs +++ b/src/blob/blob_tests.rs @@ -174,7 +174,7 @@ async fn test_selfavatar_outside_blobdir() { let avatar_blob = t.get_config(Config::Selfavatar).await.unwrap().unwrap(); let avatar_path = Path::new(&avatar_blob); assert!( - avatar_blob.ends_with("009161310a6afc319163e4bcabd23b9.jpg"), + avatar_blob.ends_with("1e08d1c9398297c21dd3820f7db2324.jpg"), "The avatar filename should be its hash, put instead it's {avatar_blob}" ); let scaled_avatar_size = file_size(avatar_path).await;