Update Rushstack projects (Rush 5.175.0, @rushstack/* bumps)#251
Update Rushstack projects (Rush 5.175.0, @rushstack/* bumps)#251iclanton wants to merge 4 commits intoSharePoint:mainfrom
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Updates Rushstack tooling and related repo dependencies to align with Rush 5.175.0 and newer @rushstack/* packages, along with regenerated lock/config artifacts.
Changes:
- Bump Rush to
5.175.0and update@rushstack/node-core-library,@rushstack/terminal,@rushstack/ts-command-line, and@rushstack/heftversions across packages. - Regenerate Rush bootstrap scripts (
install-run*.js) and Rush validation lockfile (rush-package-lock.json) for the new Rush version. - Update autoinstaller plugin versions/lockfiles and Rush state hashes.
Reviewed changes
Copilot reviewed 29 out of 32 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| tools/spfx-cli-build-rig/package.json | Updates build-rig toolchain deps (api-extractor, heft-node-rig, heft). |
| tools/repo-toolbox/package.json | Bumps Rushstack runtime/dev deps used by repo-toolbox. |
| tests/spfx-template-test/package.json | Aligns test project Rushstack deps with updated versions. |
| rush.json | Updates rushVersion to 5.175.0. |
| examples/webpart-react/package.json | Bumps @rushstack/heft used by the example. |
| examples/webpart-noframework/package.json | Bumps @rushstack/heft used by the example. |
| examples/webpart-minimal/package.json | Bumps @rushstack/heft used by the example. |
| examples/library/package.json | Bumps @rushstack/heft used by the example. |
| examples/extension-search-query-modifier/package.json | Bumps @rushstack/heft used by the example. |
| examples/extension-listviewcommandset/package.json | Bumps @rushstack/heft used by the example. |
| examples/extension-formcustomizer-react/package.json | Bumps @rushstack/heft used by the example. |
| examples/extension-formcustomizer-noframework/package.json | Bumps @rushstack/heft used by the example. |
| examples/extension-fieldcustomizer-react/package.json | Bumps @rushstack/heft used by the example. |
| examples/extension-fieldcustomizer-noframework/package.json | Bumps @rushstack/heft used by the example. |
| examples/extension-fieldcustomizer-minimal/package.json | Bumps @rushstack/heft used by the example. |
| examples/extension-application-customizer/package.json | Bumps @rushstack/heft used by the example. |
| examples/ace-search-card/package.json | Bumps @rushstack/heft used by the example. |
| examples/ace-generic-primarytext-card/package.json | Bumps @rushstack/heft used by the example. |
| examples/ace-generic-image-card/package.json | Bumps @rushstack/heft used by the example. |
| examples/ace-generic-card/package.json | Bumps @rushstack/heft used by the example. |
| examples/ace-data-visualization/package.json | Bumps @rushstack/heft used by the example. |
| common/scripts/install-run.js | Regenerated Rush bootstrap script runtime (webpack module loader logic). |
| common/scripts/install-run-rush.js | Regenerated Rush bootstrap script runtime (webpack module loader logic). |
| common/config/validation/rush-package-lock.json | Updates Rush validation lockfile for Rush 5.175.0 and new dependency graph. |
| common/config/rush/repo-state.json | Updates Rush repo state hashes after lockfile/version changes. |
| common/config/rush/common-versions.json | Updates preferred version for @rushstack/heft. |
| common/changes/@microsoft/spfx-cli/update-rushstack-projects_2026-04-18-17-52.json | Adds change entry for the Rushstack update (no publish impact). |
| common/autoinstallers/plugins/pnpm-lock.yaml | Updates autoinstaller lock for the Rush plugin bump. |
| common/autoinstallers/plugins/package.json | Bumps @rushstack/rush-published-versions-json-plugin to 0.1.8. |
| apps/spfx-cli/package.json | Bumps Rushstack runtime/dev deps for the CLI app. |
| api/spfx-template-api/package.json | Bumps Rushstack runtime/dev deps for the template API package. |
Files not reviewed (2)
- common/autoinstallers/plugins/pnpm-lock.yaml: Language not supported
- common/config/validation/rush-package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 56 out of 59 changed files in this pull request and generated 1 comment.
Files not reviewed (2)
- common/autoinstallers/plugins/pnpm-lock.yaml: Language not supported
- common/config/validation/rush-package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "devDependencies": { | ||
| "@rushstack/heft": "^1.2.9", | ||
| "@rushstack/heft": "^1.2.15", | ||
| "eslint": "9.37.0" |
There was a problem hiding this comment.
The rig now depends on and develops against @rushstack/heft ^1.2.15, but the peerDependency range still pins @rushstack/heft to ^1.2.9. This will cause peer dependency warnings (and may block installs in stricter package manager settings) for consumers using the updated Heft version. Update the peerDependency range to include the new supported Heft version (e.g., bump to ^1.2.15, or widen appropriately if multiple ranges are intended).
|
@iclanton do you want to close this out since the other PR merged? |
Description
Updates Rushstack dependencies across the repo:
@rushstack/node-core-library: ~5.21.0 → ~5.23.1@rushstack/ts-command-line: ~5.3.4 → ~5.3.8@rushstack/terminal: ~0.22.4 → ~0.23.0@rushstack/heft: ^1.2.9 → ^1.2.15Also updates lock files,
install-run.js/install-run-rush.js, andrush-package-lock.jsonaccordingly.How was this tested?
rush updatecompleted successfullyrush buildcompleted successfullyType of change