Skip to content

Commit e8f2227

Browse files
committed
v3.0.80
1 parent c80bd9f commit e8f2227

File tree

6 files changed

+109
-62
lines changed

6 files changed

+109
-62
lines changed

CHANGELOG.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
Changelog
2-
=========
3-
2+
=========
3+
4+
## v3.0.80(SEP 21, 2018)
5+
* Added readStatus of currentUser by passing `true` as first argument to `getReadStatus()` in `GroupChannel`. Passing `false` or nothing to `getReadStatus()` returns the read status without currentUser.
6+
* Added `getReadMembers()` in `GroupChannel` to return a list of members who read the message.
7+
* Added `getUnreadMember()` in `GroupChannel` to return a list of members who did not read the message.
8+
* Added `isEqual()` in `GroupChannel` and `BaseMessage` to deep-equal with other instance.
9+
* Added `isIdentical()` in `GroupChannel` and `BaseMessage` to check if the instance is identical to another.
10+
* Fixed to call `connect()` callback function with an error when connection is lost while connecting to SendBird.
11+
* Minor bug fixed.
12+
* Deprecated some feature.
13+
* Deprecated `getCurrentUserId()` in `SendBird`.
14+
* Deprecated `CLOSING` in ConnectionState in `SendBird`.
15+
* Deprecated some `createChannel()`, `createChannelWithUserIds()` in `GroupChannel` and `OpenChannel`.
16+
* Deprecated some `updateChannel()` in `GroupChannel` and `OpenChannel`.
17+
* Deprecated some `sendUserMessage()` and `sendFileMessage()`.
18+
* Deprecated `getChannelCount()` in `GroupChannel`. Use newly added `SendBird.getGroupChannelCount()` instead.
19+
* Deprecated `getTotalUnreadMessageCount()` in `GroupChannel`. Use newly added `SendBird.getTotalUnreadMessageCount()` instead.
20+
* Deprecated `getTotalUnreadChannelCount()` in `GroupChannel`. Use newly added `SendBird.getTotalUnreadChannelCount()` instead.
21+
* Deprecated `getUnreadItemCount()` in `GroupChannel`. Use newly added `SendBird.getUnreadItemCount()` instead.
22+
423
## v3.0.79(SEP 14, 2018)
524
* From now, `useMemberAsMessageSender` option is true by default.
625
* Fixed a bug previous messages not showing the senders' latest user metadata.

README.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,25 @@ If you have trouble importing `SendBird`, please check your `tsconfig.json` file
4040

4141
# [Documentation](https://docs.sendbird.com/javascript)
4242

43-
## v3.0.79(SEP 14, 2018)
43+
## v3.0.80(SEP 21, 2018)
4444
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).
45-
* From now, `useMemberAsMessageSender` option is true by default.
46-
* Fixed a bug previous messages not showing the senders' latest user metadata.
47-
* Minor bug fixed.
45+
* Added readStatus of currentUser by passing `true` as first argument to `getReadStatus()` in `GroupChannel`. Passing `false` or nothing to `getReadStatus()` returns the read status without currentUser.
46+
* Added `getReadMembers()` in `GroupChannel` to return a list of members who read the message.
47+
* Added `getUnreadMember()` in `GroupChannel` to return a list of members who did not read the message.
48+
* Added `isEqual()` in `GroupChannel` and `BaseMessage` to deep-equal with other instance.
49+
* Added `isIdentical()` in `GroupChannel` and `BaseMessage` to check if the instance is identical to another.
50+
* Fixed to call `connect()` callback function with an error when connection is lost while connecting to SendBird.
51+
* Minor bug fixed.
52+
* Deprecated some feature.
53+
* Deprecated `getCurrentUserId()` in `SendBird`.
54+
* Deprecated `CLOSING` in ConnectionState in `SendBird`.
55+
* Deprecated some `createChannel()`, `createChannelWithUserIds()` in `GroupChannel` and `OpenChannel`.
56+
* Deprecated some `updateChannel()` in `GroupChannel` and `OpenChannel`.
57+
* Deprecated some `sendUserMessage()` and `sendFileMessage()`.
58+
* Deprecated `getChannelCount()` in `GroupChannel`. Use newly added `SendBird.getGroupChannelCount()` instead.
59+
* Deprecated `getTotalUnreadMessageCount()` in `GroupChannel`. Use newly added `SendBird.getTotalUnreadMessageCount()` instead.
60+
* Deprecated `getTotalUnreadChannelCount()` in `GroupChannel`. Use newly added `SendBird.getTotalUnreadChannelCount()` instead.
61+
* Deprecated `getUnreadItemCount()` in `GroupChannel`. Use newly added `SendBird.getUnreadItemCount()` instead.
4862

4963

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

0 commit comments

Comments
 (0)