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.
- Close faye connection, when StreamApp component is unmounted b0c480a
- Fixed prop types for
deletes
prop onNewActivitiesNotification
7060571 - Fixed theming logic for nested styles b5e5080
Fixes
- Ignore email address from generating og preview
- sanitize the urls before using Linking module from react-native
Fixes
Image upload issues on android
-
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
withreact-native-image-crop-picker
to allow compression. -
Fixed pending issues:
-
Added
compressImageQuality
prop onStatusUpdateForm
component, which can be used to compress the images before uploading to CDN.
- BAD RELEASE, PLEASE USE v1.0.1
- Adding i18n support. Please read the docs here: https://getstream.github.io/react-native-activity-feed/#internationalisation-i18n
- Adding style customization support for text of Activity component - 97130d8
- Fixing
ref
variables in FlatFeed and NotificationFeed
- Fixed an issue with reactions on reactions creating duplicates in
latest_children
- 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)}
- Support marking notification groups as read and seen through the
onMarkAsSeen
andonMarkAsRead
handlers.
- Calling
onRemoveActivity
on a notification feed now updates the state correctly.
- Always display "Unknown" as the user which was a regression in 0.8.6
- Uploading images with the
StatusUpdateForm
now works on iOS withreact-native-activity-feed
again. This was a regression in 0.8.2
- Uploading images with the
StatusUpdateForm
now works on Android withreact-native-activity-feed
.
- Add basic support for 2-way pagination
LikesList
is renamed toLikeList
onToggleReaction
andonAddReaction
arguments have changed.
// old
onAddReaction(kind, activity, { data, targetFeeds, trackAnalytics });
// new
onAddReaction(kind, activity, data, { targetFeeds, trackAnalytics });
session
is replaced withclient
everywhere- Update
getstream
library to v4.0.7, if you it directly check out it's CHANGELOG for info on its breaking changes there.
- Support for liking of comments. See SinglePostScreen in the
example
directory for an example of this.