Skip to content

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

v2.0.0

Choose a tag to compare

@cooperka cooperka released this 19 Oct 02:00

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

Choose a tag to compare

@cooperka cooperka released this 19 Oct 01:57

Changes

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

v1.0.1

Choose a tag to compare

@cooperka cooperka released this 17 Jun 00:42

Fixes

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

v1.0.0

Choose a tag to compare

@cooperka cooperka released this 04 Jun 20:31

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

Choose a tag to compare

@cooperka cooperka released this 21 Feb 17:30

Fixed

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

v0.7.4

Choose a tag to compare

@cooperka cooperka released this 31 Jan 16:24

Changed

  • Upgraded lodash slightly to avoid a vulnerability on that version

v0.7.3

Choose a tag to compare

@cooperka cooperka released this 26 May 20:17

Fixed

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

v0.7.2

Choose a tag to compare

@cooperka cooperka released this 22 Feb 16:52

Changed

  • Significantly updated the README and simplified the instructions

v0.7.1

Choose a tag to compare

@cooperka cooperka released this 11 Feb 23:19

Added

  • Fun README logo (no code changes)

v0.7.0

Choose a tag to compare

@cooperka cooperka released this 08 Dec 23:37

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)