Skip to content

Commit 97865d9

Browse files
committed
v3.0.88
1 parent f076917 commit 97865d9

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

CHANGELOG.md

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

4+
## v3.0.88(NOV 15, 2018)
5+
* Changed type of `sender` property in `UserMessage` and `FileMessage` from `User` to a new class `Sender` which extends `User`.
6+
* `Sender` has `isBlockedByMe` property which indicates that the message sender is blocked by the current user (default: false).
7+
* `isBlockedByMe` is valid in `GroupChannel` only.
8+
* Message from blocked user is delivered only when `block_mode` in `Application` is set to `explicit` mode. Otherwise, it's not visible nor delivered.
9+
* Minor bug fixed.
10+
411
## v3.0.87(NOV 8, 2018)
512
* Added `ApplicationUserListQuery`.
613
* It is used to get users created in the application.

README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,13 @@ For more information about `SyncManager`, please refer to [SyncManager README](h
4949

5050
# [Documentation](https://docs.sendbird.com/javascript)
5151

52-
## v3.0.87(NOV 8, 2018)
52+
## v3.0.88(NOV 15, 2018)
5353
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).
54-
* Added `ApplicationUserListQuery`.
55-
* It is used to get users created in the application.
56-
* It could be derived by `createApplicationUserListQuery()` in `SendBird`.
57-
* `userIdsFilter`: use to filter through userIds to get users.
58-
* `metaDataKeyFilter`: use to filter by user's metaData to get users. If you set this value, you should set `metaDataValuesFilter` too.
59-
* `metaDataValuesFilter`: use to filter by user's metaData to get users. If you set this value, you should set `metaDataKeyFilter` too.
60-
* Added `userIdsFilter` in `BlockedUserListQuery` to get filtered by userIds among users blocked by currentUser.
61-
* Deprecated `createUserListQuery()` in `SendBird`. We recommend that you use `createApplicationUserListQuery()`.
54+
* Changed type of `sender` property in `UserMessage` and `FileMessage` from `User` to a new class `Sender` which extends `User`.
55+
* `Sender` has `isBlockedByMe` property which indicates that the message sender is blocked by the current user (default: false).
56+
* `isBlockedByMe` is valid in `GroupChannel` only.
57+
* Message from blocked users is delivered only when `block_mode` in `Application` is set to `explicit` mode. Otherwise, it's not visible nor delivered.
58+
* Minor bug fixed.
6259

6360

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

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.87",
3+
"version": "3.0.88",
44
"authors": ["SendBird <[email protected]>"],
55
"homepage": "https://github.com/smilefam/SendBird-SDK-JavaScript",
66
"description": "SendBird JavaScript SDK",

0 commit comments

Comments
 (0)