Releases: cooperka/react-native-immutable-list-view
Releases · cooperka/react-native-immutable-list-view
v0.4.1
v0.4.0
v0.3.1
v0.3.0
v0.2.5
v0.2.4
v0.2.3
v0.2.2
v0.2.1
- Return
false
by default fromsectionHeaderHasChanged
- There's a new prop
sectionHeaderHasChanged
that you can pass toImmutableListView
if your section headers depend on your row data (for example, if you display a count of all the row items in the section header), but given that this is fairly rare, the new default should improve things for most people.
- There's a new prop
v0.2.0
Breaking
- Accept only fully Immutable list data
- Previously it actually assumed that the nested data was not immutable. This was clearly bad practice, and has been corrected.
- Add some helpful warnings in
__DEV__
to let you know if your data is mutable- Warning:
Can't get keys: Data is not Immutable: <data>
- Warning:
If these changes break your code, you are probably using Immutable data inefficiently! Please read Facebook's Immutable.js docs for more info.