Skip to content

Commit 16e00a4

Browse files
committed
v3.0.146
1 parent a1f54ba commit 16e00a4

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v3.0.146(MAR 24, 2021)
4+
5+
- Added `onChannelMemberCountChanged` and `onChannelParticipantCountChanged` in `ChannelHandler`.
6+
- Changed `markAsDelivered` policy to remove rate limit timer.
7+
- Improved stability.
8+
39
## v3.0.145(MAR 05, 2021)
410

511
- Added `getCachedMetaData()` in BaseChannel.

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,10 @@ The `sb.setErrorFirstCallback(false)` returns callbacks to their original parame
325325

326326
## Changelogs
327327

328-
## v3.0.144(FEB 19, 2021)
328+
## v3.0.146(MAR 24, 2021)
329329

330-
- Add & Delete reaction API bug-fix to support emoji code and URI encoding.
331-
- React native bug fix: Group channel static `buildFromSerializedData()`.
330+
If you want to check the record of other versions, go to [Change Log](https://github.com/sendbird/Sendbird-SDK-JavaScript/blob/master/CHANGELOG.md).
331+
332+
- Added `onChannelMemberCountChanged` and `onChannelParticipantCountChanged` in `ChannelHandler`.
333+
- Changed `markAsDelivered` policy to remove rate limit timer.
334+
- Improved stability.

SendBird.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Type Definitions for Sendbird SDK v3.0.145
2+
* Type Definitions for Sendbird SDK v3.0.146
33
* homepage: https://sendbird.com/
44
* git: https://github.com/sendbird/Sendbird-SDK-JavaScript
55
*/
@@ -361,6 +361,8 @@ declare namespace SendBird {
361361
onReactionUpdated(channel: OpenChannel | GroupChannel, reactionEvent: ReactionEvent): void;
362362
onMentionReceived(channel: OpenChannel | GroupChannel, message: AdminMessage | UserMessage | FileMessage): void;
363363
onThreadInfoUpdated(channel: OpenChannel | GroupChannel, threadInfoUpdateEvent: ThreadInfoUpdateEvent): void;
364+
onChannelMemberCountChanged(channels: Array<GroupChannel>): void;
365+
onChannelParticipantCountChanged(channels: Array<OpenChannel>): void;
364366
}
365367

366368
interface ConnectionHandlerStatic {

SendBird.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird",
3-
"version": "3.0.145",
3+
"version": "3.0.146",
44
"authors": [
55
"Sendbird <[email protected]>"
66
],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird",
3-
"version": "3.0.145",
3+
"version": "3.0.146",
44
"description": "Sendbird JavaScript SDK",
55
"main": "SendBird.min.js",
66
"dependencies": {

0 commit comments

Comments
 (0)