Skip to content

Releases: sendbird/sendbird-chat-sdk-flutter

v3.1.6

04 Nov 19:18
Compare
Choose a tag to compare
  • Added RestrictedUser for callback mute/ban feature
  • Fixed session related issue
  • Fixed group channel updates not to apply unset operator_ids in GroupChannelParams

v3.1.4

24 Sep 22:08
Compare
Choose a tag to compare
  • Fixed HMS push token registration
  • Improved stability

v3.1.0

12 Jul 17:38
Compare
Choose a tag to compare

[3.1.0] - Jul 7, 2021

Breaking changes

In line with the overall update for Chat SDK for Flutter 3.1.0, behavior changes are applied to the following classes. Visit Sendbird Docs for further information.

  • The PreviousMessageListQuery now requires channelType and channelUrl.
PreviousMessageListQuery({
        required this.channelType,
        required this.channelUrl,
});
  • The OperatorListQuery now requires channelType and channelUrl.
 OperatorListQuery({
        required this.channelType,
        required this.channelUrl,
});
  • The MessageSearchQuery now requires keyword.
MessageSearchQuery({required this.keyword});
  • The GroupChannelMemberListQuery now requires channelUrl.
GroupChannelMemberListQuery({required this.channelUrl});
  • The UserMessageParams now requires message.
UserMessageParams({
        required this.message,
})
  • The ScheduledUserMessageParams now requires scheduledDateString, timezone, and message.
 ScheduledUserMessageParams({
        required this.scheduledDateString,
        required this.timezone,
        required String message,
})
  • The MessageRetrievalParams now requires channelType, channelUrl, and messageId.
 MessageRetrievalParams({
        required this.channelType,
        required this.channelUrl,
        required this.messageId,
});
  • Applied null-safety
  • Updated dependencies
  • Fixed mostRepliesUsers mapping in ThreadInfo
  • Fixed connectionStatus mapping for user/sender/member
  • Fixed channel object to contain last message when invoking onMessageReceived callback
  • Added HMS for push type
  • Added always_push parameter for push registeration
  • Improved stability

v3.0.13

17 May 23:18
Compare
Choose a tag to compare
  • Fixed file type mis mapping bug
  • Added cancelUploadingFileMessage in BaseChannel
  • Added joinedAt in GroupChannel
  • Improved stability

v3.0.12

29 Apr 23:21
Compare
Choose a tag to compare
  • Fixed to apply option to SendbirdSdk properly
  • Fixed sendFileMessage progress inconsistency
  • Improved stability

v3.0.11

29 Apr 23:04
Compare
Choose a tag to compare
  • Added nicknameStartWith filter in ApplicationListQuery
  • Updated pubspec and README
  • Fixed typo

v3.0.10

29 Apr 23:05
Compare
Choose a tag to compare
  • Fixed register token endpoint
  • Fixed typo
  • Dropped some suffix ~Filter from GroupChannelListQuery
  • Changed FileInfo.fromUrl parameter mimeType as optional (default is image/jpeg)
  • Changed getCurrentUser to currentUser getter
  • Improved stability