Skip to content

v1.2.2 — constraint satisfaction for stability qualifiers

Choose a tag to compare

@bcordis bcordis released this 15 May 19:40
· 9 commits to main since this release

Fixed

  • 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.