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
Found while gating #47 (2026-08-11): the webcrypto sibling republished @polymorph/webcrypto-deltic@0.0.0 importing the deltic runtime from https://raw.githubusercontent.com/lann/deltic/pre-58b2404/runtime/... URLs rather than depending on jsr:@deltic/runtime. Two consequences:
The pin-drift gate is blind to it.exam-deltic's guard asserts every jsr:@deltic/* pin across the deno.jsons names the same prerelease; a runtime arriving over raw-github URLs never matches that grep. The gate that was supposed to fail loudly on runtime skew only fired indirectly, through --frozen lockfile staleness (Refresh deno.lock for the webcrypto-deltic republish #50).
Options, not mutually exclusive:
Converge forward: move this repo's pins to the sibling's deltic version once a matching jsr:@deltic/* prerelease exists (the raw-URL import suggests pre-58b2404 is not on JSR yet).
Ask the sibling to keep its published module depending on jsr:@deltic/runtime so one resolver-level pin governs the whole graph.
Extend the drift guard to also scan the resolved lockfile for non-JSR deltic runtime sources and fail on version mismatch with the JSR pin.
#50 refreshes the lockfile to unbreak CI without deciding any of this.
Found while gating #47 (2026-08-11): the webcrypto sibling republished
@polymorph/webcrypto-deltic@0.0.0importing the deltic runtime fromhttps://raw.githubusercontent.com/lann/deltic/pre-58b2404/runtime/...URLs rather than depending onjsr:@deltic/runtime. Two consequences:Two deltic runtime copies in one module graph. This repository's embedder pins
jsr:@deltic/runtime@0.1.0-pre.ga67ee83; the webcrypto host module's closure now carriespre-58b2404internally. The endpoint exam passes against the mixed graph (the webcrypto seam is exercised heavily by the ed25519 identity path), so no observable break today — but this is exactly the double-runtime shape (WitErroridentity, plan-format skew) the packaged-translator work (Consume deltic from JSR: packaged translator, no fetch step #45/Converge .deps pins on the JSR-consuming siblings; gate module identity on the resolved graph #46) was ruling out.The pin-drift gate is blind to it.
exam-deltic's guard asserts everyjsr:@deltic/*pin across the deno.jsons names the same prerelease; a runtime arriving over raw-github URLs never matches that grep. The gate that was supposed to fail loudly on runtime skew only fired indirectly, through--frozenlockfile staleness (Refresh deno.lock for the webcrypto-deltic republish #50).Options, not mutually exclusive:
jsr:@deltic/*prerelease exists (the raw-URL import suggestspre-58b2404is not on JSR yet).jsr:@deltic/runtimeso one resolver-level pin governs the whole graph.#50 refreshes the lockfile to unbreak CI without deciding any of this.