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
The cached license record for undici was pinned to 6.24.1 while the installed dependency is 6.27.0, so licensed status failed source enumeration.
While fixing this, the Check dist/ workflow also surfaced pre-existing drift: the committed dist/ bundle was built with undici 6.24.1, but the lockfile resolves undici 6.27.0, so a fresh npm run build produced uncommitted changes.
Fix
License cache: Regenerated the cached record with licensed cache (v3.9.0) so it matches the installed version. Only .licenses/npm/undici.dep.yml changed (version: 6.24.1 → 6.27.0 and refreshed content). licensed status now reports 53 dependencies checked, 0 errors found.
dist rebuild: Ran npm run build to rebuild dist/setup/index.js and dist/cleanup/index.js against the installed undici 6.27.0 (bundled llhttp parser changes only). A clean rebuild now yields 0 diff, so check-dist passes.
Both changes stem from the same undici 6.24.1 → 6.27.0 bump and are intentionally scoped separately from the Azul Metadata API migration (#1010).
Description
The Licensed / Check licenses workflow fails on
main(and on PRs such as #1010) with:The cached license record for
undiciwas pinned to6.24.1while the installed dependency is6.27.0, solicensed statusfailed source enumeration.While fixing this, the Check dist/ workflow also surfaced pre-existing drift: the committed
dist/bundle was built withundici 6.24.1, but the lockfile resolvesundici 6.27.0, so a freshnpm run buildproduced uncommitted changes.Fix
licensed cache(v3.9.0) so it matches the installed version. Only.licenses/npm/undici.dep.ymlchanged (version: 6.24.1→6.27.0and refreshed content).licensed statusnow reports53 dependencies checked, 0 errors found.npm run buildto rebuilddist/setup/index.jsanddist/cleanup/index.jsagainst the installedundici 6.27.0(bundled llhttp parser changes only). A clean rebuild now yields 0 diff, socheck-distpasses.Both changes stem from the same
undici 6.24.1→6.27.0bump and are intentionally scoped separately from the Azul Metadata API migration (#1010).