From 40dcfbce6db2c9f9fd4f00b8c42fe94bc3519633 Mon Sep 17 00:00:00 2001 From: zackees Date: Mon, 15 Jun 2026 16:27:07 -0700 Subject: [PATCH] chore(deps): bump managed zccache 1.12.4 -> 1.12.7 Picks up zackees/zccache#763 (version-namespaced cache root, closes zackees/zccache#762 / #761 / #760 / #759) plus intervening 1.12.5 / 1.12.6 compile-path + observability fixes. Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/fbuild-build/src/managed_zccache.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/fbuild-build/src/managed_zccache.rs b/crates/fbuild-build/src/managed_zccache.rs index daaff538..0daf3cc7 100644 --- a/crates/fbuild-build/src/managed_zccache.rs +++ b/crates/fbuild-build/src/managed_zccache.rs @@ -20,12 +20,12 @@ use fbuild_core::{FbuildError, Result}; /// The zccache release fbuild pins. Bump in lockstep with the floor that /// the rest of the toolchain expects. -pub const MANAGED_ZCCACHE_VERSION: &str = "1.12.4"; +pub const MANAGED_ZCCACHE_VERSION: &str = "1.12.7"; /// GitHub release tag for [`MANAGED_ZCCACHE_VERSION`]. The zccache release /// workflow tags without a `v` prefix, while the per-asset filenames carry /// `v` — keep both spellings in sync when bumping. -const RELEASE_TAG: &str = "1.12.4"; +const RELEASE_TAG: &str = "1.12.7"; /// Source repository for managed downloads. const REPO: &str = "zackees/zccache";