Fix file: dependency context resolution mismatch in rush-resolver-cache-plugin (pnpm v9/v10)#5802
Draft
Copilot wants to merge 3 commits into
Draft
Fix file: dependency context resolution mismatch in rush-resolver-cache-plugin (pnpm v9/v10)#5802Copilot wants to merge 3 commits into
file: dependency context resolution mismatch in rush-resolver-cache-plugin (pnpm v9/v10)#5802Copilot wants to merge 3 commits into
Conversation
Copilot created this pull request from a session on behalf of
bmiddha
May 11, 2026 07:59
View session
Copilot
AI
changed the title
Fix file: dependency context resolution mismatch in rush-resolver-cache-plugin (pnpm v9/v10)
refactor(rush-resolver-cache-plugin): extract repeated specifier strings into variables in tests
May 11, 2026
Copilot stopped work on behalf of
bmiddha due to an error
May 12, 2026 01:34
file: dependency context resolution mismatch in rush-resolver-cache-plugin (pnpm v9/v10)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bug Fix
resolveDependencyKey()handledfile:specifiers differently from package context key generation, producing non-matching.pnpmpaths (missingname@prefix + different hash input). This causedcreateContextSerializerto fail context lookups withMissing contextand emit incomplete resolver cache entries forfile:dependencies.What was the bug?
file:dependencies from importer specifiers were resolved directly from rawfile:strings, while package contexts were keyed from canonical dependency keys (name@file:...in v9/v10 lockfile format). The mismatch brokecontexts.get(contextRoot).How did you fix it?
Updated the
file:branch inresolveDependencyKey()to follow the same canonical-key path as other specifiers:packageKeyspassthrough when the exact key exists.helpers.buildDependencyKey(key, specifier).Testing
Added targeted regression coverage in
helpers.test.tsfor:file:specifiers with peer suffixes using canonical key shapefile:specifierspackageKeyspassthrough behavior whenfile:key already exists