From 779cd66c910ea002be8c8cb20fd3511b25cd2c3b Mon Sep 17 00:00:00 2001 From: Binu Philip Date: Thu, 2 Apr 2026 19:55:45 +0000 Subject: [PATCH] fix(rust): pin rust to a version available on fedora repo Fedora pushed out rust 1.94.1 and we had pinned to 1.94.0. Given 1.94.0-1 went out before this, the repo does not have 1.94 rpms anymore. We pin to 1.94.1 to make sure we have two upgrades before having to do this again. --- base/comps/rust/rust.comp.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/base/comps/rust/rust.comp.toml b/base/comps/rust/rust.comp.toml index 43104ed6b55..1deb03c6b84 100644 --- a/base/comps/rust/rust.comp.toml +++ b/base/comps/rust/rust.comp.toml @@ -1,4 +1,4 @@ [components.rust] -# Fedora repo does not have 1.93 which the spec gets pinned to. Snapshot from a -# later version to pickup a later version - 1.94, which is available. -spec = { type = "upstream", upstream-distro = { name = "fedora", version = "43", snapshot = "2026-03-10T00:00:00-08:00" } } +# Fedora repo does not host 1.93, which the spec gets pinned to. Fetch +# spec from a more recent commit to pickup version - 1.94.1. +spec = { type = "upstream", upstream-distro = { name = "fedora", version = "43"}, upstream-commit = "b431103e3e71d30dda680c95d2f5d4fe50003436" }