Skip to content

Releases: sendbird/sendbird-chat-sdk-javascript

v4.8.5

24 May 05:49
Compare
Choose a tag to compare

Improvements

  • Fixed a bug in the environment that does not allow local storage access
  • Improved stability

v4.8.4

19 May 03:08
Compare
Choose a tag to compare

Improvements

  • Fixed a bug where channel metadat disappears when receiving channel events

v4.8.3

17 May 06:32
Compare
Choose a tag to compare

Improvements

  • Added handling of session revocation.
  • Fixed a bug that session refresh fails when session token is expired.
  • Improved stability.

v4.8.2

12 May 06:46
Compare
Choose a tag to compare

Improvements

  • Fixed a bug that PublicGroupChannelListQuery overwrites the cache with missing properties

v4.8.1

04 May 07:02
Compare
Choose a tag to compare

Improvements

  • Improved stability

v4.8.0

08 May 16:14
Compare
Choose a tag to compare

PinnedMessageListQuery

You can now retrieve all pinned messages in a GroupChannel by the PinnedMessageListQuery.

  • Added PinnedMessage
  • Added PinnedMessageListQuery, PinnedMessageListQueryParams
  • Added groupChannel.createPinnedMessageListQuery()
const query = groupChannel.createPinnedMessageListQuery(params);
const pinnedMessages = await query.next();

Improvements

Improvements stability

v4.7.2

19 Apr 04:00
Compare
Choose a tag to compare

Improvements

  • Fixed a bug where MessageCollection.initialize() would throw an Error in some cases

v4.7.1

18 Apr 06:32
Compare
Choose a tag to compare

Improvements

  • Fixed a bug on AbortController import

v4.7.0

17 Apr 06:29
Compare
Choose a tag to compare

v4.7.0 (Apr 17, 2023)

Features

(Moderation) Automatically detect when user is unmuted

You can now automatically detect when a muted user is unmuted by leveraging MessageCollections.
Clients will now receive MessageCollectionHandler.onChannelUpdated() with GroupChannelContext.GroupChannelEventSource.EVENT_CHANNEL_UNMUTED when an user is unmuted after their muted duration has expired, on top of explict unmute calls. This now means that you can easily transition user’s experience and allow them to chat even more seamlessly.
Note that this is a MessageCollections only feature! We recommend all of our clients to give it a try if you haven’t

Improvements

  • Fixed a bug when broken disconnect() before cache initialization
  • Fixed a bug where LOGI error command processing
  • Added collection.close() when disconnect() is called
  • Added support for AbortController compatibility
  • Improved stability

v4.6.2

05 Apr 05:45
Compare
Choose a tag to compare

Improvements

  • Fixed a bug where GroupChannelCollection could not handle EVENT_MESSAGE_SENT