Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 1.32 KB

CHANGELOG.md

File metadata and controls

46 lines (34 loc) · 1.32 KB

Changelog

0.8.0

  • Dramatically reduced the number of setState calls which should yield better performance.
  • Because of the reduced setState calls, the shallow equality check in shouldComponentUpdate has been removed which should lead to less confusion when attempting to re-render list items.
  • No changes should need to be made by component consumers, but I've bumped the minor version because the shouldComponentUpdate change is significant.

0.7.22

  • Properly register and deregister event handlers with options. (#131)

0.7.21

  • Enable passive option in scroll and mousewheel event handlers. (#129)

0.7.20

  • Fix body scroll size bug. (#117)

0.7.19

  • Add itemSizeEstimator prop. (#113)
  • Add useStaticSize prop. (#116)

0.7.17

  • Fix issue where nested list positions were not scrolled to correctly. (#105)

0.7.16

  • Fix Chrome rendering issues when scrolling very quickly. (#58, #96)

0.7.15

  • Add React 15.0.0-rc.1 to dependency range.

0.7.14

  • Fix regression introduced in #85 where the height of lists with multiple items per row would be off by one.

0.7.13

  • Fixed a glitch where the list would sometimes flicker at the edge of iOS "rubber band" scrolling.

0.7.12

  • Fixed an issue with scrollTo and multiple items per row.

0.7.9

  • Added the scrollParentGetter prop.