Releases: pmmmwh/react-refresh-webpack-plugin
Releases · pmmmwh/react-refresh-webpack-plugin
v0.5.0
0.5.0 (14 September 2021)
BREAKING
- While most of the public API did not change,
we've re-written a large chunk of the runtime code to support a wider range of use cases.
This is likely to provide more stability, but if0.4.xworks in your setup but0.5.xdoesn't,
please file us an issue - we would love to address it! - The
disableRefreshCheckoption have been removed (#285).
It has long been effect-less and deprecated since0.3.x. - The
overlay.useLegacyWDSSocketshave been removed (#498).
It is aimed to support WDS below3.6.0(published in June 2019),
but looking at current usage and download stats,
we've decided it is best to drop support for the old socket format moving forward. - Handling of port
0have been removed (#337). html-entitieshave been bumped to2.x(#321).react-refreshhave been bumped to0.10.0(#353).
Features
- Added WDS v4 support with new socket defaults through Webpack config (#241, #286, #392, #413, #479)
- Added the
overlay.sockProtocoloption (#242) - Added monorepo compatibility via the the
libraryoption (#273) - Rewritten URL handling using WHATWG
URLAPIs with automatic pony-filling (#278, #332, #378) - Rewritten Webpack 5 compatibility using new APIs and hooks (#319, #372, #434, #483)
- Rewritten refresh runtime to be fully module system aware (#337, #461, #482, #492)
- Rewritten Webpack 4 and 5 checks using feature detection on compiler (#415)
- Added support for
experiments.topLevelAwait(#435, #447, #493) - Added retry logic when socket initialisation fails (#446)
Fixes
- Relaxed peer dependency requirement on
type-fest(#257, c02018a, #484) - Relaxed requirement on the
overlayoption to accept relative paths (#284) - Patched unstable initialisation of global scope across module boundaries (#290, #369, #464, #505)
- Patched quote escaping in injected runtime code (#306)
- Invalidate updates outside of Refresh boundary for consistency (#307)
- Properly throw when an ambiguous entrypoint is received while using Webpack 4 (#320)
- Fixed overlay script source detection for WDS when no
srcis found (#331) - Fixed possible Stack Overflow through self-referencing (#370, #380)
- Relaxed errors on HMR not found to not crash JS parsing (#371)
- Ensure overlay code won't run if disabled (#374)
- Relaxed peer dependency requirement on
@types/webpack(#414) - Fixed compiler error overlay crashes when messages are empty (#462)
- Swapped
ansi-htmltoansi-html-communityto fix ReDoS vulnerability (#501)
Internal
v0.4.3
0.4.3 (2 November 2020)
Fixes
v0.4.2
v0.4.1
v0.4.0
0.4.0 (28 July 2020)
BREAKING
- Minimum required Node.js version have been bumped to 10 as Node.js 8 is EOL now.
- Minimum required Webpack version is now
v4.43.0or later as we adopted the newmodule.hot.invalidateAPI (#).
The new API enabled us to bail out of the HMR loop less frequently and provide a better experience.
If you really cannot upgrade, you can stay on0.3.3for the time being. - While most of our public API did not change, this release is closer to a rewrite than a refactor.
A lot of files have moved to provide easier access to files for advanced users and frameworks (#122).
You can check the difference in the PR to see what have moved and where they are now. - The
useLegacyWDSSocketsoption is now scoped under theoverlayoption (#153).
Features
- Adopted the
module.hot.invalidate()API, which means we will now bail out less often (#89) - Attach runtime on Webpack's global scope instead of
window, making the plugin platform-agnostic (#102) - Added stable support for Webpack 5 and beta support for Module Federation (#123, #132, #164)
- Socket integration URL detection via
document.currentScript(#133) - Relaxed requirements for "required"
overlayoptions to receivefalseas value (#154) - Prefixed all errors thrown by the plugin (#161)
- Eliminated use of soon-to-be-deprecated
lodash.debouncepackage (#163)
Fixes
- Fixed circular references for
__react_refresh_error_overlay__and__react_refresh_utils(#116) - Fixed IE11 compatibility (#106, #121)
- Rearranged directories to provide more ergonomic imports (#122)
- Fixed issues with Babel/ESLint/Flow regarding loader ordering and runtime cleanup (#129, #140)
- Correctly detecting the HMR plugin (#130, #160)
- Fixed unwanted injection of error overlay in non-browser environment (#146)
- Scoped the
useLegacyWDSSocketsoptions underoverlayto reflect its true use (#153) - Fixed non-preserved relative ordering of Webpack entries (#165)
Internal
v0.3.3
v0.3.2
v0.3.1
v0.3.0
0.3.0 (10 May 2020)
BREAKING
- Deprecated the
disableRefreshCheckflag (#60)
Features
- Added custom error overlay support (#44)
- Added example project to use TypeScript without usual Babel settings (#46)
- Added custom socket parameters for WDS (#52)
- Added TypeScript definition files (#65)
- Added stricter options validation rules (#62)
- Added option to configure socket runtime to support more hot integrations (#64)
- Added support for
webpack-plugin-serve(#74)