Releases: fluxo-js/fluxo
v0.0.25
v0.0.24
#37 Computed and Subsets on change
.
#36 change
once per mutation cycle.
964b70c Attributes contract
97e969b Removing the radio module
608c214 Using store internal radio instead external one
e4ac5e8 Nested stores event bubbling
ea49a8b Performance adjustments on #find method
275d7f4 Exposing the previous attribute on attributes events
2ad8416 Reordering the collection on remove and children store's change
768317a setStores removing missing stores (opt in)
7748827 Also check by cid if a store is already added on addStore
676da43 Added the clear method
How to upgrade:
- Your subsets now must listen the
add
andremove
events or you can just depend on thechange
event if it's more convenient to you. - You must remove the
attributeParsers
anddefaults
in favor to https://github.com/fluxo-js/fluxo#attributes-contracts - You must remove any
Fluxo.Radio
usage.
v0.0.23
v0.0.22
0e26aee Fluxo.ObjectStore#toJSON memoization
2dc8a6b Warning about missing children store class delegated method
f2c7c8a Updating subsets before computed properties
67d6482 Warning about collection children delegate method on missing child store
5d49aa2 Warning about wrong types on store setter's arguments
1a8d603 Do not unset computed properties on reset
v0.0.21
- Little adjustment on initialize routine allowing extensions choose the order.
v0.0.20
- exporting Fluxo.extend correctly
v0.0.19
- Fixing the fluxo usage through browserify.
v0.0.18
- ES6 classes
- Subsets
- Removing "data" key padding on collection's toJSON
v0.0.17
- This version makes a big usage change #4 and name change #5.
Fluxo.CollectionStore#resetFromData
=>Fluxo.CollectionStore#resetStores
Fluxo.CollectionStore#setFromData
=>Fluxo.CollectionStore#setStores
- Removed
Fluxo.CollectionStore#addFromData
. You can just useFluxo.CollectionStore#add
. - Added the
Fluxo.ObjectStore#unsetAttribute
to remove an attribute. - Added "children delegation" c3fea41