Releases: GetStream/stream-chat-react-native
[0.11.0] 2020-06-01
Non breaking changes
UX improvements of ChannelList component
-
So far we only had
LoadingErrorIndicator
(which can be customized using propLoadingErrorIndicator
). This error indicator replaces the entire channel
list on screen. So if your 2nd page of list results in error, we used to remove all the already fetched channels and show this full screen error indicator.
Instead we have introduced following error indicators, which will be displayed at top of the list in case or error. Please note that if first page of
queryChannels api results in error, we will display LoadingErrorIndicator- HeaderErrorIndicator
- HeaderNetworkDownIndicator
-
Introducing following new props to ChannelList component
FooterLoadingIndicator
{UI Component} To override default spinner at footer of channel list (introduced in this release)HeaderErrorIndicator
{UI Component} To override default HeaderErrorIndicatorHeaderNetworkDownIndicator
{UI Component} To override default HeaderNetworkDownIndicator
-
Introduced pull to refresh functionality, to refresh the ChannelList in case of failure.
-
Adding following prop to
LoadingErrorIndicator
retry
{func} If you are using customLoadingErrorIndicator
for your ChannelList component, you can attach this function to CTA button
to reload the ChannelList.
-
Added retry mechanism to ChannelList's queryChannels api call. In case of failure, api will be retried 3 times (max) at the interval of 2 seconds.
[0.7.0-i18n-rc.1] 2020-03-08
THIS IS A RELEASE CANDIDATE: this means it's not stable yet, so proceed with care.
- Fixing typescript issues for i18n
- Exporting all translation
.json
files indist/i18n/
folder
Detailed docs - https://github.com/GetStream/stream-chat-react-native/blob/vishal/i18n/src/components/docs/Streami18n.md
[0.7.0-i18n-rc.0] 2020-03-06
THIS IS A RELEASE CANDIDATE: this means it's not stable yet, so proceed with care.
Introducing internationalisation (i18n) support for the sdk
Detailed docs - https://github.com/GetStream/stream-chat-react-native/blob/vishal/i18n/src/components/docs/Streami18n.md
[0.6.6] 2020-02-20
-
Adding following props to KeyboardCompatibleView component 6650109
- keyboardDismissAnimationDuration
- keyboardOpenAnimationDuration
- enabled
-
Adding following props to Channel component 6650109
- KeyboardCompatibleView
- disableKeyboardCompatibleView
-
Fixing title of send button 0990cb5
-
Fixing channel preview avatar for one-on-one conversation 790b0b9
-
Fixing types for context providers - dc40c8a
[0.6.5] 2020-02-04
- Adding a simple check to see if lastReceivedId has changed, before updating the state - to avoid infinite loop 3da5e4a
[0.6.4] 2020-02-04
-
Fixing image index for Image viewer (d16e86c)
Issue - if attachment gallery, when you click/touch on 1st photo, it opens image viewer at 1st photo. But if you touch 2nd photo, it still opens image viewer at first photo.
[0.6.3] 2020-01-29
- Adding support for prop
formatLatestMessageDate
inChannelPreviewMessenger
component (9a8d9a3) - Adding support for prop
latestMessageLength
inChannelPreviewMessenger
component (ef5b887) - Adding types for
SendButton
to typescript file (ad5c728) - Fixing date issue in
MessageSystem
component. (35c18e3) - Adding prop for AttachButton to MessageInput (600b1d2)
- Adding prop
formatDate
toMessageSimple
component (c3cfdf6) - Adding style and text customizability to LoadingIndicator (232241c)
[0.6.2] 2020-01-20
[0.6.1] 2020-01-14
Patch - When you change the filters prop on the ChannelList component this now we will refresh the channels with the new query
[0.6.0] 2020-01-07
- Exporting all the missing components and utils
- AutoCompleteInput
- Card
- CommandsItem
- DateSeparator
- EmptyStateIndicator
- EventIndicator
- FileAttachmentGroup
- FileUploadPreview
- Gallery
- IconSquare
- ImageUploadPreview
- KeyboardCompatibleView
- LoadingErrorIndicator
- LoadingIndicator
- MentionsItem
- Message
- MessageNotification
- MessageSystem
- ReactionList
- Spinner
- SuggestionsProvider
- UploadProgressIndicator
- Refining prop-types and typescript types for components.
- Fixed issue about app crash when document picker is cancelled - #110
- Adding
onPress
andonLongPress
props onMessageSimple
component - Fixing theme paths for MessageNotification component.