Skip to content

Releases: gaearon/react-hot-loader

v3.0.0-beta.7

05 May 14:31
Compare
Choose a tag to compare
v3.0.0-beta.7 Pre-release
Pre-release
  • Update redbox-react dependency to fix prop-types deprecation errors (87c9123)

v1.3.1

28 Nov 12:33
Compare
Choose a tag to compare
  • Fix import for ReactMount to support 15.4.0 (#430)

v3.0.0-beta.6

14 Oct 01:59
Compare
Choose a tag to compare
v3.0.0-beta.6 Pre-release
Pre-release
  • Use production versions of patch and AppContainer if no module.hot available, so it doesn't break people using NODE_ENV=test (#398)
  • Opt out of transforming static class properties (#381)

v3.0.0-beta.5

22 Sep 02:44
Compare
Choose a tag to compare
v3.0.0-beta.5 Pre-release
Pre-release
  • Makes the class properties portion of the Babel plugin work with async functions. (#372)
  • Change the output of the tagger code in the Babel plugin so that it doesn't break the output of babel-node. (#374)

v3.0.0-beta.4

15 Sep 02:13
Compare
Choose a tag to compare
v3.0.0-beta.4 Pre-release
Pre-release
  • Extends the Babel plugin to enable hot reloading of class properties. (#322)
  • Fixes a bug in the Webpack loader from a component importing a module with the same basename. (#347)

v3.0.0-beta.3

07 Sep 02:30
Compare
Choose a tag to compare
v3.0.0-beta.3 Pre-release
Pre-release
  • Fixes broken import of RedBox, which led to confusing stack traces when applications threw errors. (#314)
  • Add module.hot checks to conditional require()s to remove unnecessary warnings when using server rendering. (#302)

v3.0.0-beta.1

02 May 11:58
Compare
Choose a tag to compare
v3.0.0-beta.1 Pre-release
Pre-release
  • Adds complete React Router support. Async routes should work fine now. (#272)
  • Fixes a nasty bug which caused unwrapped component to render. (#266, #272)
  • Fixes an issue that caused components with shouldComponentUpdate optimizations not getting redrawn (#269, 2a1e384)
  • Internal: a rewrite and much better test coverage.

v3.0.0-beta.0

30 Apr 17:06
Compare
Choose a tag to compare
v3.0.0-beta.0 Pre-release
Pre-release
  • Fixes an issue when used in Webpack 2 (#263)

  • Instead of

    <AppContainer component={App} props={{ prop: val }} />

    you now need to write

    <AppContainer>
      <App prop={val} />
    </AppContainer>

    (#250)

    See this commit as an update reference!

v3.0.0-alpha.8

18 Apr 13:57
Compare
Choose a tag to compare
v3.0.0-alpha.8 Pre-release
Pre-release

Big Changes!

React Hot Loader 3 is on the horizon, and you can try it today (boilerplate branch, upgrade example). It fixes some long-standing issues with both React Hot Loader and React Transform, and is intended as a replacement for both. The docs are not there yet, but they will be added before the final release. For now, this commit is a good reference.

v3.0.0-alpha.13

28 Apr 16:22
Compare
Choose a tag to compare
v3.0.0-alpha.13 Pre-release
Pre-release