Releases: sendbird/sendbird-chat-sdk-javascript
v4.8.2
Improvements
- Fixed a bug that
PublicGroupChannelListQuery
overwrites the cache with missing properties
v4.8.1
Improvements
- Improved stability
v4.8.0
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
Improvements
- Fixed a bug where
MessageCollection.initialize()
would throw an Error in some cases
v4.7.1
Improvements
- Fixed a bug on
AbortController
import
v4.7.0
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()
whendisconnect()
is called - Added support for
AbortController
compatibility - Improved stability
v4.6.2
Improvements
- Fixed a bug where
GroupChannelCollection
could not handleEVENT_MESSAGE_SENT
v4.6.1
Improvements
- Added
fetch
polyfill withAbortController
support - Fixed a bug where messages in
MessageCollection
not carryingparentMessage
value when they should - Improved stability
v4.6.0
v4.6.0 (Mar 16, 2023)
Features
Set your own Local Caching DB size
You can now control the size of your local cache. Starting from 64mb, decide how much you want to store (Default: 256mb).
Once the size limit is reached, the SDK will automatically remove messages and channels with pre-specified logic (clearOrder
) so that you don't have to actively manage it.
- Added DB size related properties in
LocalCacheConfig
const localCacheConfig: LocalCacheConfig = new LocalCacheConfig({
maxSize: 256,
clearOrder: CachedDataClearOrder.MESSAGE_COLLECTION_ACCESSED_AT,
});
Improvements
- Added
SendbirdErrorCode.DATABASE_ERROR
- Added
getCachedDataSize()
in SendBirdChat - Added
OpenChannelCreateParams.isEphemeral
- Fixed a bug where SDK reconnects internally in disconnected state after
disconnectWebsocket()
is called - Fixed a bug to use
MemoryStore
when SDK is running in a browser that does not supportindexedDB
- Improvement stability
v4.5.0
v4.5.0 (Mar 3, 2023)
Features
Polls in Open Channel
Polls is now supported in both Open Channels and Group Channels!
Specification
- Added
Poll.serialize()
- Added
PollModule.buildPollFromSerializedData()
- Added
onPollUpdated
,onPollVoted
, andonPollDeleted
inOpenChannelHandlerParams
- Moved following methods from
GroupChannel
toBaseChannel
:updatePoll()
deletePoll()
closePoll()
addPollOption()
updatePollOption()
deletePollOption()
votePoll()
getPollChangeLogsSinceTimestamp()
getPollChangeLogsSinceToken()
createPollListQuery()
createPollVoterListQuery()
Improvements
- Fixed a bug where
GroupChannelFilter
using nicknames (nicknameContainsFilter
,nicknameExactMatchFilter
, andnicknameExactMatchFilter
) includes current user's nickname when searching from locally cached group channels - Fixed a bug where
BaseMessage.applyThreadInfoUpdateEvent()
always returning false - Fixed a bug where
BaseChannel
’screateMessageMetaArrayKeys
,deleteMessageMetaArrayKeys
,addMessageMetaArrayValues
, andremoveMessageMetaArrayValues
returning unexpected result when file message is given