All Versions
107
Latest Version
Avg Release Cycle
28 days
Latest Release
-

Changelog History
Page 4

  • v5.3.2 Changes

  • v5.3.0 Changes

    5.3.0 was retracted as files were not generated correctly during publish

    • Added disposeOnUnmount utility / decorator to call disposable properties (reaction, autorun, etc) automatically on componentWillUnmount
    • Introduced new method to patch lifecycle methods which should be more compatible with for example arrow functions.
  • v5.2.8 Changes

    • Make sure mobx-react doesn't require Object.assign polyfill
  • v5.2.7 Changes

    • โš  Fixed issue where React 16.5 printed a warning when using Provider, fixes #545
  • v5.2.6 Changes

    • ๐Ÿ›  Fixed bug in defining properties (although the bug had no known observable effect). Fixes #540
  • v5.2.4 Changes

    • ๐Ÿ‘€ Improved compatibility with React-Hot-Loader, see #522 by theKashey. Fixes #500
  • v5.2.3 Changes

    • ๐Ÿ›  Fixed problem with Symbol feature detection. By @Strate through #501. Fixes #498 and #503.
  • v5.2.2 Changes

    • Polyfill Symbol if it doesn't exist. By @Strate through #499.
  • v5.2.1 Changes

    • โช Component props and state properties are now made observable during the instance creation. This restores the behavior from before 5.1.0 where props and state could safely be observed during mount. Actually it is now possible to do similar things in constructors as well. Fixes #478. Thanks @Strate for the idea and PR! #496.
  • v5.2.0 Changes

    • ๐Ÿ‘ Added backward compatible support for MobX 5.
    • ๐Ÿ‘€ Fixed components sometimes being displayed as undefined in mobx-devtools. See #470 by @MauricioAndrades
    • ๐Ÿ‘ Removed unnecessary warning @observer was used both on a sub and super class. See #492 by @skiritsis. N.B. putting @observer on a super and subclass is still not an supported pattern, use @observer on subclasses only!