All Versions
173
Latest Version
Avg Release Cycle
27 days
Latest Release
1266 days ago

Changelog History
Page 16

  • v1.1.3 Changes

    • ๐Ÿ›  Fixed #61; if autorun was created during a transaction, postpone execution until the end of the transaction
  • v1.1.2 Changes

    • ๐Ÿ›  Fixed exception when autorunUntil finished immediately
  • v1.1.1 Changes

    • ๐ŸŽ toJSON now serializes object trees with cycles as well. If you know the object tree is acyclic, pass in false as second parameter for a performance gain.
  • v1.1.0 Changes

    • Exposed ObservableMap type
    • Introduced mobservable.untracked(block)
    • Introduced mobservable.autorunAsync(block, delay)
  • v1.0.9 Changes

    โœ‚ Removed accidental log message

  • v1.0.7 Changes

    ๐Ÿ›  Fixed inconsistency when using transaction and @observer, which sometimes caused stale values to be displayed.

  • v1.0.6 Changes

    ๐Ÿ›  Fix incompatibility issue with systemjs bundler (see PR 52)

  • v1.0.4 Changes

    • map.size is now a property instead of a function
    • map() now accepts an array as entries to construct the new map
    • introduced isObservableObject, isObservableArray and isObservableMap
    • introduced observe, to observe observable arrays, objects and maps, similarly to Object.observe and Array.observe
  • v1.0.3 Changes

    • ๐Ÿ‘ extendObservable now supports passing in multiple object properties
  • v1.0.2 Changes

    • ๐Ÿ“š added mobservable.map(), which creates a new map similarly to ES6 maps, yet observable. Until properly documentation, see the MDN docs.