Fix partial update where path repos are being auto-unlocked two levels deep not loading all packages properly, fixes #10431

main
Jordi Boggiano 2 years ago
parent 64d39a9655
commit 641ad10a9f
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC

@ -459,6 +459,10 @@ class PoolBuilder
}
}
}
} elseif (isset($this->pathRepoUnlocked[$require]) && !isset($this->loadedPackages[$require])) {
// if doing a partial update and a package depends on a path-repo-unlocked package which is not referenced by the root, we need to ensure it gets loaded as it was not loaded by the request's root requirements
// and would not be loaded above if update propagation is not allowed (which happens if the requirer is itself a path-repo-unlocked package) or if transitive deps are not allowed to be unlocked
$this->markPackageNameForLoading($request, $require, $linkConstraint);
}
} else {
$this->markPackageNameForLoading($request, $require, $linkConstraint);

Loading…
Cancel
Save