Skip to content

Commit 2ce43c1

Browse files
committed
ver3.0.56
1 parent ff919b1 commit 2ce43c1

File tree

6 files changed

+983
-715
lines changed

6 files changed

+983
-715
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
## v3.0.56
5+
* Changed an ephemeral `GroupChannel` to maintain fields of `lastMessage` and `unreadMessageCount` after connected.
6+
* Update `SendBird.d.ts` file.
7+
48
## v3.0.55
59
* Added `UserMessageParams` feature.
610
* This is used in `sendUserMessage()` of channel.

README.md

Lines changed: 3 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -39,56 +39,10 @@ If you have trouble importing `SendBird`, please check your `tsconfig.json` file
3939
# [Documentation](https://docs.sendbird.com/javascript)
4040

4141

42-
## Upgrading to v3.0.55
42+
## Upgrading to v3.0.56
4343
If you want to check the record of other version, go to [Change Log](https://github.com/smilefam/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md).
44-
* Added `UserMessageParams` feature.
45-
* This is used in `sendUserMessage()` of channel.
46-
* message: set text message to send. This value is required.
47-
* data: set message data to send.
48-
* customType: set message customType to send.
49-
* targetLanguages: set message translation target language list.
50-
* mentionedUserIds: set mentioned userId.
51-
* mentionedUsers: set mentioned User.
52-
* Added `FileMessageParams` feature.
53-
* This is used in `sendFileMessage()` of channel.
54-
* `file` or `fileUrl` is required.
55-
* file: set file to send.
56-
* fileUrl: set file's url to send.
57-
* fileName: set file's name to send. When you set a file and do not specify this value, it is specified by name of the file. When you set a fileUrl and do not specify this value, it is set as empty string.
58-
* fileSize: set file's size to send. When you set a file and do not specify this value, it is specified by size of the file. When you set a fileUrl and do not specify this value, it is set as 0.
59-
* mimeType: set file's type to send. When you set a file and do not specify this value, it is specified by type of the file. When you set a fileUrl and do not specify this value, it is specified by inferring from fileUrl.
60-
* data: set message data to send.
61-
* customType: set message customType to send.
62-
* thumbnailSizes: set size of the thumbnail to be created. This value only works when you use file not fileUrl.
63-
* mentionedUserIds: set mentioned userId.
64-
* mentionedUsers: set mentioned User.
65-
* Added `sendUserMessage(UserMessageParams, CallBackFunction)` in channel.
66-
* Added `sendFileMessage(FileMessageParams, CallBackFunction)` in channel.
67-
* Added `mentionedUsers` in UserMessage and FileMessage to check mentioned user.
68-
* Added `isEphemeral` in GroupChannel to indicate whether the channel supports message retention.
69-
* Added `myMemberState` in GroupChannel to check my joined state on GroupChannel.
70-
* Added `operator` feature in GroupChannel.
71-
* Added `operators` in `GroupChannelParams` to set operator.
72-
* Added `operatorUserIds` in `GroupChannelParams` to set operator.
73-
* Added `banUser` in `GroupChannel` to ban User.
74-
* Added `banUserWithUserId` in `GroupChannel` to ban User using userId.
75-
* Added `unbanUser ` in `GroupChannel` to remove banned User using User object.
76-
* Added `unbanUserWithUserId` in `GroupChannel` to remove banned User using userId.
77-
* Added `muteUser` in `GroupChannel` to mute User using User object.
78-
* Added `muteUserWithUserId` in `GroupChannel` to mute User using userId.
79-
* Added `unmuteUser` in `GroupChannel` to unmute User using User object.
80-
* Added `unmuteUserWithUserId` in `GroupChannel` to unmute User using userId.
81-
* Added `freeze` in `GroupChannel` not to allow messages from members from the channel.
82-
* Added `unfreeze` in `GroupChannel` to allow messages from members from the channel.
83-
* Added `isFrozen` in `GroupChannel` to check if the channel is frozen or not.
84-
* From now, channel param in callbacks of the ChannelHandler below can come in either GroupChannel or OpenChannel.
85-
* onUserMuted(channel, user)
86-
* onUserUnmuted(channel, user)
87-
* onUserBanned(channel, user)
88-
* onUserUnbanned(channel, user)
89-
* onChannelFrozen(channel)
90-
* onChannelUnfrozen(channel)
91-
* Added `createMemberListQuery()` in `GroupChannel` to search members.
44+
* Changed an ephemeral `GroupChannel` to maintain fields of `lastMessage` and `unreadMessageCount` after connected.
45+
* Update `SendBird.d.ts` file.
9246

9347

9448
## [Change Log](https://github.com/smilefam/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md)

0 commit comments

Comments
 (0)