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
minimum supported Node.js version is 12.13.0 (93a87ce)
use xxhash64 by default for [hash]/[contenthash] and getHashDigest API
[emoji] was removed without replacements, please use custom function if you need this
removed getOptions in favor loaderContext.getOptions (loaderContext is this inside loader function), note - special query parameters like ?something=true is not supported anymore, if you need this please do it on loader side, but we strongly recommend avoid it, as alternative you can use ?something=1 and handle 1 as true
removed getRemainingRequest in favor loaderContext.remainingRequest (loaderContext is this inside loader function)
removed getCurrentRequest in favor loaderContext.currentRequest (loaderContext is this inside loader function)
removed parseString in favor JSON.parse
removed parseQuery in favor new URLSearchParams(loaderContext.resourceQuery.slice(1)) where loaderContext is this in loader function
removed stringifyRequest in favor JSON.stringify(loaderContext.utils.contextify(this.context, request)) (loaderContext is this inside loader function), also it will be cachable and faster
isUrlRequest ignores only absolute URLs and #hash requests, data URI and root relative request are handled as requestable due webpack v5 support them
Bug Fixes
allowed the interpolateName API works without options (862ea7d)