You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DevTargetVerifier::satisfies() now understands Composer stability
qualifiers. Constraints like @dev, *@dev, and bare * are stability
/ wildcard expressions, not semver ranges; the previous implementation
fell through to literal-match and reported out of range for every
path-repo dep pinned with @dev (which is the common shape for CWM
sibling deps). Now treats * / @dev / *@dev as any-version,
strips trailing @<stability> qualifiers from caret/tilde constraints,
and matches dev-<branch> literally against the installed version.