From 9f80b23b2cb5f3d93962b2fe6396b441a7b68ac6 Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Mon, 16 Jun 2025 12:24:25 +0200 Subject: [PATCH 1/3] renovate: Remove custom config for warpy We don't use warpy anymore. --- .github/renovate.json5 | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index b11428963..ff22db911 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -6,14 +6,4 @@ ':semanticCommitsDisabled', 'customManagers:githubActionsVersions', ], - packageRules: [ - { - matchPackageNames: [ - 'warpy', - ], - extends: [ - 'schedule:weekly', - ], - }, - ], } From 67e31af04b565058a35d121be43ab353d0b93491 Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Mon, 16 Jun 2025 12:26:10 +0200 Subject: [PATCH 2/3] renovate: Don't update the lockfile The site is generated with Zola. All our regular Rust dependencies are essentially dev dependencies, used for testing and the blog post generator. Updating the lockfile weekly only causes frequent recompilation for no significant benefit. --- .github/renovate.json5 | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index ff22db911..bf9717a3c 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -2,7 +2,6 @@ extends: [ 'config:best-practices', ':pinAllExceptPeerDependencies', - ':maintainLockFilesWeekly', ':semanticCommitsDisabled', 'customManagers:githubActionsVersions', ], From 779c8ed0a42392bb638186d0017e1dc9ff7ac83c Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Mon, 16 Jun 2025 12:35:55 +0200 Subject: [PATCH 3/3] renovate: Unpin dependencies The site is generated with Zola. All our regular Rust dependencies are essentially dev dependencies, used for testing and the blog post generator. Pinning them to the patch release only causes frequent recompilation for no significant benefit. --- .github/renovate.json5 | 1 - crates/front_matter/Cargo.toml | 8 ++++---- crates/generate_blog/Cargo.toml | 8 ++++---- crates/snapshot/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index bf9717a3c..982ea26cc 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,7 +1,6 @@ { extends: [ 'config:best-practices', - ':pinAllExceptPeerDependencies', ':semanticCommitsDisabled', 'customManagers:githubActionsVersions', ], diff --git a/crates/front_matter/Cargo.toml b/crates/front_matter/Cargo.toml index 9132201db..3500aa1cf 100644 --- a/crates/front_matter/Cargo.toml +++ b/crates/front_matter/Cargo.toml @@ -4,9 +4,9 @@ version = "0.1.0" edition = "2024" [dependencies] -eyre = "=0.6.12" -serde = { version = "=1.0.219", features = ["derive"] } -toml = "=0.8.23" +eyre = "0.6.12" +serde = { version = "1.0.219", features = ["derive"] } +toml = "0.8.23" [dev-dependencies] -walkdir = "=2.5.0" +walkdir = "2.5.0" diff --git a/crates/generate_blog/Cargo.toml b/crates/generate_blog/Cargo.toml index 699d17587..d43d4982e 100644 --- a/crates/generate_blog/Cargo.toml +++ b/crates/generate_blog/Cargo.toml @@ -5,8 +5,8 @@ edition = "2024" [dependencies] front_matter = { version = "0.1.0", path = "../front_matter" } -inquire = "=0.7.5" -serde = "=1.0.219" -toml = "=0.8.23" +inquire = "0.7.5" +serde = "1.0.219" +toml = "0.8.23" rust_team_data = { git = "https://github.com/rust-lang/team" } -ureq = { version = "=3.0.11", features = ["rustls", "json"] } +ureq = { version = "3.0.11", features = ["rustls", "json"] } diff --git a/crates/snapshot/Cargo.toml b/crates/snapshot/Cargo.toml index fbf8abe8f..e39b7eef8 100644 --- a/crates/snapshot/Cargo.toml +++ b/crates/snapshot/Cargo.toml @@ -4,4 +4,4 @@ version = "0.1.0" edition = "2024" [dev-dependencies] -insta = { version = "=1.43.1", features = ["filters", "glob"] } +insta = { version = "1.43.1", features = ["filters", "glob"] }