Skip to content

Commit 417c8af

Browse files
committed
v3.1.10
1 parent 23f60ae commit 417c8af

File tree

6 files changed

+29
-11
lines changed

6 files changed

+29
-11
lines changed

CHANGELOG.md

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

3+
## v3.1.10 (APR 04, 2022)
4+
- Fixed issue of MessageCollection changelog partially not updating/deleting cached messages.
5+
- Fixed type error of `isUserMessage()` being undefined.
6+
37
## v3.1.9 (MAR 16, 2022)
48
- Deprecated `ConnectionManager` in `SendBird`.
59
- Fixed wrong channel list order in `GroupChannelCollection`.

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -341,12 +341,9 @@ Additionally, migration guide for clients currently using SyncManager will be av
341341

342342
## Changelogs
343343

344-
### v3.1.9 (MAR 16, 2022)
344+
## v3.1.10 (APR 04, 2022)
345345

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

348-
- Deprecated `ConnectionManager` in `SendBird`.
349-
- Fixed wrong channel list order in `GroupChannelCollection`.
350-
- Added GroupChannelTotalUnreadChannelCountParams.
351-
- Added `getTotalUnreadChannelCount(params)` in `SendBird`.
352-
-
348+
- Fixed issue of MessageCollection changelog partially not updating/deleting cached messages.
349+
- Fixed type error of `isUserMessage()` being undefined.

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.1.9
2+
* Type Definitions for Sendbird SDK v3.1.10
33
* homepage: https://sendbird.com/
44
* git: https://github.com/sendbird/Sendbird-SDK-JavaScript
55
*/
@@ -593,6 +593,7 @@ declare namespace SendBird {
593593
metaArrays: Array<MessageMetaArray>;
594594
reactions: Array<Reaction>;
595595
mentionType: string | null;
596+
mentionedMessageTemplate: string | null;
596597
mentionedUsers: Array<User>;
597598
sendingStatus: MessageSendingStatus[keyof MessageSendingStatus] | null;
598599
silent: boolean;
@@ -677,6 +678,7 @@ declare namespace SendBird {
677678
mentionType: 'users' | 'channel';
678679
mentionedUserIds: Array<string>;
679680
mentionedUsers: Array<User>;
681+
mentionedMessageTemplate: string | null;
680682
metaArrays: Array<MessageMetaArray>;
681683
/**
682684
* @deprecated since version v3.0.122, please use {@link metaArrays} instead

SendBird.min.js

Lines changed: 17 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.1.9",
3+
"version": "3.1.10",
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.1.9",
3+
"version": "3.1.10",
44
"description": "Sendbird JavaScript SDK",
55
"main": "SendBird.min.js",
66
"dependencies": {

0 commit comments

Comments
 (0)