What's wrong with this entry?
Anonymous. No account, no email.
These changes represent a shift from default imports to named imports for better tree-shaking and reduced memory footprint:
// Before (v0.2.96)
import process from "node:process";
import stream from "stream";
// After (v0.2.97)
import { cwd } from "node:process";
import { PassThrough } from "stream";
Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.