v0.5.0
Release notes v0.5.0
This release brings major changes to provide correct element key handling and stable tag shuffling.
Breaking changes
key
property of tag elements is now set astag.key
. If it is not provided thetag.value
is used instead. It is highly recommended to usekey
property if you are unsure that tagvalue
's are not unique. Otherwise it could fail.value
property of tag is now required to be string. If you need other data to be passed to the tag, use different property.- The
key
argument has been removed from renderer function definition. Usetag.key
ortag.value
instead
New features and enhancements
- Shuffling of tags has been improved - tags are no longer shuffled in each render call. It is shuffled only once during component initialization and re-shuffled only when data are modified.