From 0117863a20b1b141ddab3b8af0bfb71e6ac82f77 Mon Sep 17 00:00:00 2001 From: Lucas Schwiderski Date: Mon, 9 Sep 2024 10:54:24 +0200 Subject: [PATCH] chore(dep): Use exact version for request Mostly a test to see how Renovate behaves here. It updated from `0.11.0` to `0.12.0`, even though `0.12.7` was available at that point. While this doesn't matter for Cargo, Renovate seems to use `Cargo.toml` to calculate the changelog entries, not `Cargo.lock`. So because `Cargo.toml` specified `0.11.0`, PR #60 showed changelogs for all tags since then, even though `Cargo.lock` was at `0.11.27`. So there were 27 pointless changelog entries shown. So this test is to see whether Renovate will always use the `x.0` version in `Cargo.toml`, or if having `0.12.7` now will trigger it to eventually go to some `0.13.x`, where `x > 0`. --- images/gitea/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/gitea/Cargo.toml b/images/gitea/Cargo.toml index ff64dfd..dd2ec14 100644 --- a/images/gitea/Cargo.toml +++ b/images/gitea/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] clap = { version = "4.2.0", features = ["cargo", "color", "unicode", "std", "derive"] } color-eyre = "0.6.2" -reqwest = { version = "0.12.0", default-features = false, features = ["blocking", "json", "rustls-tls-native-roots"] } +reqwest = { version = "0.12.7", default-features = false, features = ["blocking", "json", "rustls-tls-native-roots"] } serde_json = "1.0.95" serde = { version = "1.0.159", features = ["derive"] } time = { version = "0.3.20", features = ["formatting", "parsing", "serde"] }