Skip to content

Latest commit

 

History

History
163 lines (98 loc) · 5.13 KB

CHANGELOG.md

File metadata and controls

163 lines (98 loc) · 5.13 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

1.1.0 - 2021-04-09

  • Close faye connection, when StreamApp component is unmounted b0c480a
  • Fixed prop types for deletes prop on NewActivitiesNotification 7060571
  • Fixed theming logic for nested styles b5e5080

1.0.3 - 2021-03-05

Fixes

  • Ignore email address from generating og preview
  • sanitize the urls before using Linking module from react-native

#172

1.0.2 - 2021-01-29

Fixes

Image upload issues on android

1.0.1 - 2021-01-11

  • Added support for Expo 40 and react-native 0.63

  • Removed flow types and added traditional PropTypes

  • Upgrade to getstream@7.1.0

  • Cleanup around examples

    Removed following existing examples:

    • example
    • examples/one
    • native-example

    Added new examples:

    • examples/expo (Expo 40)
    • examples/native (RN 0.63.x)
  • Replace react-native-image-picker with react-native-image-crop-picker to allow compression.

  • Fixed pending issues:

  • Added compressImageQuality prop on StatusUpdateForm component, which can be used to compress the images before uploading to CDN.

1.0.0 - 2021-01-11

  • BAD RELEASE, PLEASE USE v1.0.1

0.9.1 - 2020-03-31

  • Fixing the build, by adding translation json files to distributed package issue commit

0.9.0 - 2020-03-31

0.8.19 - 2020-02-27

  • Adding style customization support for text of Activity component - 97130d8

0.8.18 - 2020-01-08

  • Fixing ref variables in FlatFeed and NotificationFeed

0.8.17 - 2019-09-19

Fixed

  • Fixed an issue with reactions on reactions creating duplicates in latest_children

0.8.16 - 2019-09-13

Added

  • Added two props to the Activity component to handle onPress events on hashtags and mentions:
    • onPressHashtag={(hashtagText, activity) => console.log(hashtagText, activity)}
    • onPressMention={(mentionText, activity) => console.log(mentionText, activity)}

0.8.8 - 2019-02-05

Added

  • Support marking notification groups as read and seen through the onMarkAsSeen and onMarkAsRead handlers.

Fixed

  • Calling onRemoveActivity on a notification feed now updates the state correctly.

0.8.7 - 2019-02-05

Fixes

  • Always display "Unknown" as the user which was a regression in 0.8.6

0.8.3 - 2019-01-08

Fixes

  • Uploading images with the StatusUpdateForm now works on iOS with react-native-activity-feed again. This was a regression in 0.8.2

0.8.2 - 2019-01-07

Fixes

  • Uploading images with the StatusUpdateForm now works on Android with react-native-activity-feed.

0.8.1 - 2018-12-21

Additions

  • Add basic support for 2-way pagination

0.8.0 - 2018-12-18

Breaking Changes

  • LikesList is renamed to LikeList

0.7.0 - 2018-12-14

Breaking Changes

  • onToggleReaction and onAddReaction arguments have changed.
// old
onAddReaction(kind, activity, { data, targetFeeds, trackAnalytics });
// new
onAddReaction(kind, activity, data, { targetFeeds, trackAnalytics });
  • session is replaced with client everywhere
  • Update getstream library to v4.0.7, if you it directly check out it's CHANGELOG for info on its breaking changes there.

Added

  • Support for liking of comments. See SinglePostScreen in the example directory for an example of this.