Skip to content

Releases: gaearon/react-hot-loader

v1.2.5

14 Apr 10:59
Compare
Choose a tag to compare
  • Fix “React is not defined” error (#116)

v1.2.4

24 Mar 11:39
Compare
Choose a tag to compare
  • Avoid updating each class twice in React 0.12

Public Notice

It is now recommended to use include instead of exclude in Webpack loader configuration. Read more.

v1.2.3

11 Mar 22:52
Compare
Choose a tag to compare
  • Explicitly exclude react/lib files from processing. You should use exclude: /node_modules/ in configuration, but at least this doesn't blow up for those who don't.

v1.2.2

11 Mar 03:09
Compare
Choose a tag to compare
  • Fix crash on React 0.13. Now compatible!

v1.2.1

10 Mar 04:17
Compare
Choose a tag to compare
  • Don't try to flatten inheritance chains, as it causes problems with super.
  • Instead, automatically opt custom base classes into hot reloading as long as they descend from React.Component (in React 0.13). If your custom base class doesn't do that but you'd still want to have hot reloading, you need to manually opt it in via module.makeHot API.

v1.2.0

09 Mar 20:25
Compare
Choose a tag to compare
  • Support hot-reloading components without a base class (react-hot-api#5)
  • Support hot-reloading inheritance chains (react-hot-api#10)
  • Support using React 0.13 as an external

v1.1.7

04 Mar 20:41
Compare
Choose a tag to compare
  • Add React 0.13 RC2 to peerDeps

v1.1.6

02 Mar 17:26
Compare
Choose a tag to compare
  • Allow React 0.13 RC1
  • Better support for ES6 inheritance
  • Fix reloading for modules with null prototype chain (#82)

v1.1.5

11 Feb 16:49
Compare
Choose a tag to compare
  • Wrap user code in IEFF to prevent losing "use strict". Fixes #75

v1.1.4

30 Jan 05:23
Compare
Choose a tag to compare
  • Fix crash when hot-reloading element factory. (Note: React discourages exporting factories.)