Skip to content

Releases: sendbird/sendbird-chat-sdk-javascript

v4.16.1

05 Dec 02:21
Compare
Choose a tag to compare

Improvements

  • Fixed a bug where excessive API calls in MessageCollection

v4.16.0

20 Nov 13:50
Compare
Choose a tag to compare

Features

SDK now supports Custom Report Categories configured through Sendbird Dashboard, which takes effect after restarting the app.
Previous report categories will remain until app restart.

  • Added getReportCategoryInfoList()
  • Added ReportCategoryInfo
  • Deprecated ReportCategory
 const reportCategoryInfoList: ReportCategoryInfo[] = await sb.getReportCategoryInfoList();

 ...

 reportCategoryInfoList.forEach((reportCategoryInfo) => {
    // make Report Category list
    // use reportCategoryInfo.name
 });

Improvements

  • Added sampledUserInfoList in Reaction
  • Fixed a bug where called API with deprecated param in markAsDelivered

v4.15.0

07 Nov 04:04
Compare
Choose a tag to compare

Features

Added new properties in Reaction to support more users

    export default class Reaction {
        
        ... 

        // A list of sampled userIds that have reacted to this Reaction.
        get sampledUserIds: string[]
        
        // A count of the number of users who have reacted to this.
        get count: number
        
        // A flag indicating whether the current user has reacted to this.
        get hasCurrentUserReacted: boolean

        ...
    }
  • Deprecated userIds in Reaction

Improvements

  • Fixed a bug where GET muted API is called every time
  • Fixed a bug when autoresend started, did not update channel info

v4.14.6

24 Oct 07:05
Compare
Choose a tag to compare

Improvements

  • Fixed a bug where expiring_session=true regardless of whether SessionHandler is registered when authToken exists
  • Fixed typo in markPushNotificationAsClicked logs

v4.14.5

14 Oct 01:32
Compare
Choose a tag to compare

Improvements

  • Added message property in FileMessageCreateParams
  • Added message property in FileMessage

v4.14.4

27 Sep 00:44
Compare
Choose a tag to compare

Improvements

  • Fixed a bug that local cache data is broken in a certain condition

v4.14.3

13 Sep 01:49
Compare
Choose a tag to compare

Improvements

  • Fixed a bug where there was no mentionedUser when sending a message with mentionedUserId as CopyMessage

v4.14.2

29 Aug 02:19
Compare
Choose a tag to compare

Improvements

  • Improvement stability

v4.14.1

14 Aug 05:29
Compare
Choose a tag to compare

Improvements

  • Deprecated customTypeFilters in UnreadItemCountParams
  • Added customTypesFilter in UnreadItemCountParams

v4.14.0

07 Aug 07:44
Compare
Choose a tag to compare

Feature

Support pinned message in OpenChannel

  • Added pinnedMessageIds property in BaseChannel
  • Added createPinnedMessageListQuery method in BaseChannel
  • Added pinMessage method in BaseChannel
  • Added unpinMessage method in BaseChannel
  • Added lastPinnedMessage property in OpenChannel
  • Added onPinnedMessageUpdated in OpenChannelHandler

Improvements

  • Added customTypeFilters in UnreadItemCountParams