What's wrong with this entry?
Anonymous. No account, no email.
What: Changed stream module import from default import to named import for better clarity.
Details:
- Old:
import dFQ from "stream";(line 338181 removed) - New:
import { PassThrough as rr5 } from "stream";(line 443623 added) - More explicit about what's being imported
- Better tree-shaking support
Evidence
Import statement change at line 443623
Strings lifted out of the shipped bundle, so the claim above can be checked against them.
Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.