What's wrong with this entry?
Anonymous. No account, no email.
What changed: Switched from default imports to named imports for Node.js built-in modules Changes:
import crypto from "crypto"→import { createHash, randomBytes } from "crypto"import stream from "stream"→import { PassThrough } from "stream"import process from "node:process"→import { cwd } from "node:process"
Impact: Slightly improved tree-shaking and bundle optimization
Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.