Skip to content

Releases: gaearon/react-hot-loader

v1.1.3

28 Jan 13:03
Compare
Choose a tag to compare
  • Avoid warnings on React 0.13

v1.1.2

28 Jan 12:48
Compare
Choose a tag to compare
  • Compatibility with React 0.13.0-beta.1

v1.1.1

12 Jan 23:36
Compare
Choose a tag to compare
  • Fix edge cases by requiring react/lib/ReactMount in transformed source files
  • Add a warning if ReactMount doesn't return anything useful (e.g. when using external React)

v1.1.0

12 Jan 14:32
Compare
Choose a tag to compare
  • Skipping node_modules entirely wasn't the best idea. Instead, we now specifically skip node_modules/react/, node_modules/webpack/ and node_modules/react-hot-loader/. However you are still encouraged to add exclude: /node_modules/ to your loader config for best performance.
  • Now modules that don't export any valid React classes in module.exports or any its properties will not be auto-accepted. This prevents hot loader from trying to handle non-React updates and allows changes in plain JS files to propagate to components that can handle them. For example, this allows react-jss mixin to apply hot updates to JSS styles.

v1.0.7

03 Jan 19:02
Compare
Choose a tag to compare
  • Skip node_modules entirely. Fixes #54 on Windows.

v1.0.6

01 Jan 18:21
Compare
Choose a tag to compare
  • Add require('react-hot-loader/Injection') to override Hot Loader behavior. Now you can supply your own way of getting root component instances, so Hot Loader can also work in environment where react/lib/ReactMount is not available (for example, when React is used as standalone bundle and not NPM package).

v1.0.5

31 Dec 16:43
Compare
Choose a tag to compare
  • Fix stack overflow when hotifying class twice (#52)

v1.0.4

22 Dec 18:05
Compare
Choose a tag to compare
  • Allow both module.exports and its properties be components (Fixes #50)

v1.0.3

22 Dec 15:08
Compare
Choose a tag to compare
  • In addition to hotifying module.exports by default, also hotify all its own properties

v1.0.2

19 Dec 12:19
Compare
Choose a tag to compare
  • Include bugfix from react-hot-api: don't try to hot-replace exported ReactElements