Skip to content

Commit

Permalink
v3.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
liamcho committed Apr 4, 2022
1 parent 23f60ae commit 417c8af
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v3.1.10 (APR 04, 2022)
- Fixed issue of MessageCollection changelog partially not updating/deleting cached messages.
- Fixed type error of `isUserMessage()` being undefined.

## v3.1.9 (MAR 16, 2022)
- Deprecated `ConnectionManager` in `SendBird`.
- Fixed wrong channel list order in `GroupChannelCollection`.
Expand Down
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,12 +341,9 @@ Additionally, migration guide for clients currently using SyncManager will be av

## Changelogs

### v3.1.9 (MAR 16, 2022)
## v3.1.10 (APR 04, 2022)

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).

- Deprecated `ConnectionManager` in `SendBird`.
- Fixed wrong channel list order in `GroupChannelCollection`.
- Added GroupChannelTotalUnreadChannelCountParams.
- Added `getTotalUnreadChannelCount(params)` in `SendBird`.
-
- Fixed issue of MessageCollection changelog partially not updating/deleting cached messages.
- Fixed type error of `isUserMessage()` being undefined.
4 changes: 3 additions & 1 deletion SendBird.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Type Definitions for Sendbird SDK v3.1.9
* Type Definitions for Sendbird SDK v3.1.10
* homepage: https://sendbird.com/
* git: https://github.com/sendbird/Sendbird-SDK-JavaScript
*/
Expand Down Expand Up @@ -593,6 +593,7 @@ declare namespace SendBird {
metaArrays: Array<MessageMetaArray>;
reactions: Array<Reaction>;
mentionType: string | null;
mentionedMessageTemplate: string | null;
mentionedUsers: Array<User>;
sendingStatus: MessageSendingStatus[keyof MessageSendingStatus] | null;
silent: boolean;
Expand Down Expand Up @@ -677,6 +678,7 @@ declare namespace SendBird {
mentionType: 'users' | 'channel';
mentionedUserIds: Array<string>;
mentionedUsers: Array<User>;
mentionedMessageTemplate: string | null;
metaArrays: Array<MessageMetaArray>;
/**
* @deprecated since version v3.0.122, please use {@link metaArrays} instead
Expand Down
19 changes: 17 additions & 2 deletions SendBird.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sendbird",
"version": "3.1.9",
"version": "3.1.10",
"authors": [
"Sendbird <[email protected]>"
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sendbird",
"version": "3.1.9",
"version": "3.1.10",
"description": "Sendbird JavaScript SDK",
"main": "SendBird.min.js",
"dependencies": {
Expand Down

0 comments on commit 417c8af

Please sign in to comment.