All Versions
173
Latest Version
Avg Release Cycle
27 days
Latest Release
1681 days ago
Changelog History
Page 15
Changelog History
Page 15
-
v1.2.4 Changes
- ๐ Fixed: observable arrays didn't properly apply modifiers if created using
asFlat([])
orfastArray([])
- 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
- ๐ Fixed: observable arrays didn't properly apply modifiers if created using
-
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
- ๐ Implemented #67: Reactive graph transformations. See: http://mobxjs.github.io/mobservable/refguide/create-transformer.html
-
v1.1.8 Changes
- ๐ Implemented #59,
isObservable
andobserve
now support a property name as second param to observe individual values on maps and objects.
- ๐ Implemented #59,
-
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 tomobservable.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.
- ๐ Introduced
-
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