Skip to content

v0.5.0

Compare
Choose a tag to compare
@madox2 madox2 released this 10 Jun 22:40
· 130 commits to master since this release

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 as tag.key. If it is not provided the tag.value is used instead. It is highly recommended to use key property if you are unsure that tag value'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. Use tag.key or tag.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.