From 62266724046e15d97481d12dd0af535e27733e8a Mon Sep 17 00:00:00 2001 From: pshu Date: Fri, 28 Aug 2026 01:18:47 +0800 Subject: [PATCH 1/2] chore: bump all published crates in crate-version --- scripts/x.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/x.mjs b/scripts/x.mjs index 38e0ee7376a4..72cd0a62986f 100755 --- a/scripts/x.mjs +++ b/scripts/x.mjs @@ -178,7 +178,7 @@ program '--no-git-push', // Do not push generated commit and tags to git remote '--no-git-tag', // Do not tag versions in git, we will tag them in `crate-publish` '--force', - 'rspack*', // Always include targeted crates matched by glob even when there are no changes + '*', // Every member inherits `[workspace.package].version`, so all published crates must be bumped together '--yes', // Skip confirmation prompt bump, // Bump type ]; From 5790ecf37b6f42261612e7ec10be7d1b7e9c0009 Mon Sep 17 00:00:00 2001 From: pshu Date: Fri, 28 Aug 2026 01:40:31 +0800 Subject: [PATCH 2/2] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- scripts/x.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/x.mjs b/scripts/x.mjs index 72cd0a62986f..a492a384b85f 100755 --- a/scripts/x.mjs +++ b/scripts/x.mjs @@ -178,7 +178,7 @@ program '--no-git-push', // Do not push generated commit and tags to git remote '--no-git-tag', // Do not tag versions in git, we will tag them in `crate-publish` '--force', - '*', // Every member inherits `[workspace.package].version`, so all published crates must be bumped together + '*', // Published crates share `[workspace.package].version`; include them all so `[workspace.dependencies]` exact pins stay in sync '--yes', // Skip confirmation prompt bump, // Bump type ];