Skip to content

Releases: cooperka/react-native-immutable-list-view

v2.0.0

19 Oct 02:00
Compare
Choose a tag to compare

Changes

  • Removed ImmutableListView from the main exports to prevent "ListView is deprecated" warnings for people who have already switched to ImmutableVirtualizedList

    • If you want to continue using ImmutableListView, you can simply import it from its new location:
    -import { ImmutableListView } from 'react-native-immutable-list-view';
    +import { ImmutableListView } from 'react-native-immutable-list-view/lib/ImmutableListView';

v1.0.2

19 Oct 01:57
Compare
Choose a tag to compare

Changes

  • Upgraded babel version significantly (should have no impact, but you never know)
  • Fully refreshed the example app using Expo now

v1.0.1

17 Jun 00:42
Compare
Choose a tag to compare

Fixes

  • Added index.d.ts to published files (#39)

v1.0.0

04 Jun 20:31
Compare
Choose a tag to compare

The API has been stable for a long time, may as well take it out of beta!

Changes

  • Added a typescript definition file (#38)

v0.7.5

21 Feb 17:30
Compare
Choose a tag to compare

Fixed

  • Fixed error in getItemCount if you give it null items (#37)

v0.7.4

31 Jan 16:24
Compare
Choose a tag to compare

Changed

  • Upgraded lodash slightly to avoid a vulnerability on that version

v0.7.3

26 May 20:17
Compare
Choose a tag to compare

Fixed

  • Stubbed out keyExtractor for EmptyVirtualizedList (#35) (minor)

v0.7.2

22 Feb 16:52
Compare
Choose a tag to compare

Changed

  • Significantly updated the README and simplified the instructions

v0.7.1

11 Feb 23:19
Compare
Choose a tag to compare

Added

  • Fun README logo (no code changes)

v0.7.0

08 Dec 23:37
Compare
Choose a tag to compare

Changed

  • (BREAKING) Stop exporting ImmutableListView as default; require named imports
    • Most apps will continue to work as-is; otherwise, update the following:
-import ImmutableListView from 'react-native-immutable-list-view';
+import { ImmutableListView } from 'react-native-immutable-list-view';

Fixed

  • Prevent "unknown props ..." warnings when used with react-native-web (#33)