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

Changelog History
Page 15

  • v1.2.4 Changes

    • ๐Ÿ›  Fixed: observable arrays didn't properly apply modifiers if created using asFlat([]) or fastArray([])
    • Don't try to make frozen objects observable (by @andykog)
    • observableArray.reverse no longer mutates the arry but just returns a sorted copy
    • โšก๏ธ Updated tests to use babel6
  • v1.2.3 Changes

    • ๐Ÿ‘ฏ observableArray.sort no longer mutates the array being sorted but returns a sorted clone instead (#90)
    • ๐Ÿšš removed an incorrect internal state assumption (#97)
  • v1.2.2 Changes

    • ๐Ÿ‘ Add bower support
  • v1.2.1 Changes

    • Computed value now yields consistent results when being inspected while in transaction
  • v1.2.0 Changes

  • v1.1.8 Changes

    • ๐Ÿ‘ Implemented #59, isObservable and observe now support a property name as second param to observe individual values on maps and objects.
  • v1.1.7 Changes

    • ๐Ÿ— Fixed #77: package consumers with --noImplicitAny should be able to build
  • v1.1.6 Changes

    • ๐Ÿ‘ Introduced mobservable.fastArray(array), in addition to mobservable.observable(array). Which is much faster when adding items but doesn't support enumerability (for (var idx in ar) .. loops).
    • Introduced observableArray.peek(), for fast access to the array values. Should be used read-only.
  • v1.1.5 Changes

    • ๐Ÿ›  Fixed 71: transactions should not influence running computations
  • v1.1.4 Changes

    • ๐Ÿ›  Fixed #65; illegal state exception when using a transaction inside a reactive function. Credits: @kmalakoff