Skip to content

Releases: GetStream/stream-chat-react-native

[0.11.0] 2020-06-01

11 Jun 08:20
Compare
Choose a tag to compare

Non breaking changes

UX improvements of ChannelList component

IMAGE ALT TEXT HERE IMAGE ALT TEXT HERE IMAGE ALT TEXT HERE
  • So far we only had LoadingErrorIndicator (which can be customized using prop LoadingErrorIndicator). 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 HeaderErrorIndicator
    • HeaderNetworkDownIndicator{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 custom LoadingErrorIndicator 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

08 Mar 20:09
Compare
Choose a tag to compare
Pre-release

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 in dist/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

06 Mar 22:57
Compare
Choose a tag to compare
Pre-release

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

06 Mar 22:53
Compare
Choose a tag to compare
  • 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

06 Mar 22:53
Compare
Choose a tag to compare
  • 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

06 Mar 22:52
Compare
Choose a tag to compare
  • 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

29 Jan 16:14
Compare
Choose a tag to compare
  • Adding support for prop formatLatestMessageDate in ChannelPreviewMessenger component (9a8d9a3)
  • Adding support for prop latestMessageLength in ChannelPreviewMessenger 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 to MessageSimple component (c3cfdf6)
  • Adding style and text customizability to LoadingIndicator (232241c)

[0.6.2] 2020-01-20

29 Jan 16:14
Compare
Choose a tag to compare
  • Added support for following props to Channel component:

[0.6.1] 2020-01-14

29 Jan 16:12
Compare
Choose a tag to compare

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

07 Jan 14:42
Compare
Choose a tag to compare
  • 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 and onLongPress props on MessageSimple component
  • Fixing theme paths for MessageNotification component.

Breaking Changes

  • Replacing theme path messageList.messageNotificationText with messageList.messageNotification.text (#3593dfb)
  • Replacing theme path messageList.messageNotification with messageList.messageNotification.container (#3593dfb)