Patch Changes
-
#14152
3d7992eThanks @petebacondarwin! - Fix module resolution failing when project path contains spacesWhen a project lived under a directory with spaces (e.g.
/Users/me/Documents/Master CMS/project), the vitest pool would fail withNo such module "threads.js"before any test executed. The module fallback service now uses therawSpecifierfrom workerd's fallback request to correctly decodefile://URLs, avoiding the double-encoding of spaces (%20→%2520) that occurred when workerd resolved these URLs as relative paths. -
#14105
337e912Thanks @dario-piotrowicz! - Remove trailing periods from URLs in terminal outputURLs printed to the terminal with a sentence-ending period (e.g.
https://example.com/path.) would include the period when clicked in some terminal emulators, causing 404 errors. This removes trailing periods from all URLs displayed in CLI output across wrangler, miniflare, vitest-pool-workers, and workers-utils. -
#14112
3a746acThanks @penalosa! - Pin non-bundled runtime dependencies to exact versionsDependencies that are not bundled into a package's published output are installed directly into consumers' dependency trees, so they are now pinned to exact versions instead of semver ranges. This closes a supply-chain gap where an unpinned external dependency could resolve to a compromised upstream release on a fresh install. A new
pnpm check:pinned-depslint enforces this for all published packages (and for the shared pnpm catalog) going forward. -
#14061
da8e306Thanks @Vardiak! - Preserve Durable Object WebSocket handler invocation orderDurable Object WebSocket events could begin executing out of order in the Workers Vitest integration when several events arrived while the test wrapper was resolving user code.
Handler invocation now preserves arrival order while still allowing asynchronous handler completion to run concurrently.
-
Updated dependencies [
b210c5e,aec1bb8,e06cbb7,9a26191,5565823,4ef790b,890fca7,6fc9777,337e912,8e7b74f,e86489a,42288d4,65b5f9e,3a746ac,64ef9fd,94b29f7]:- wrangler@4.97.0
- miniflare@4.20260601.0