Skip to content

Commit 26554d4

Browse files
committed
release SDK 3.1.12
1 parent ff27203 commit 26554d4

File tree

6 files changed

+21
-10
lines changed

6 files changed

+21
-10
lines changed

CHANGELOG.md

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

3+
## v3.1.12 (MAY 11, 2022)
4+
- Fixed incorrect type in User.lastSeenAt.
5+
- Fixed bug when createChannelWithUserIds without callback.
6+
- Fixed bug "operators is not defined" on `CHANNEL_OPERATOR_UPDATE` event.
7+
- Added `HiddenChannelFilter.ALL`.
8+
- Update `axios` library.
9+
310
## v3.1.11 (APR 29, 2022)
411
- Fixed bug when reading unsent file message from local cache in React Native.
512
- Fixed bug storing cached metadata into local cache in `BaseChannel`.

README.md

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

342342
## Changelogs
343343

344-
### v3.1.11 (APR 29, 2022)
344+
### v3.1.12 (MAY 11, 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-
- Fixed bug when reading unsent file message from local cache in React Native.
349-
- Fixed bug storing cached metadata into local cache in `BaseChannel`.
348+
- Fixed incorrect type in User.lastSeenAt.
349+
- Fixed bug when createChannelWithUserIds without callback.
350+
- Fixed bug "operators is not defined" on `CHANNEL_OPERATOR_UPDATE` event.
351+
- Added `HiddenChannelFilter.ALL`.
352+
- Update `axios` library.

SendBird.d.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Type Definitions for Sendbird SDK v3.1.11
2+
* Type Definitions for Sendbird SDK v3.1.12
33
* homepage: https://sendbird.com/
44
* git: https://github.com/sendbird/Sendbird-SDK-JavaScript
55
*/
@@ -115,6 +115,7 @@ declare enum UnreadChannelFilter {
115115
UNREAD_MESSAGE = 'unread_message',
116116
}
117117
declare enum HiddenChannelFilter {
118+
ALL = 'all',
118119
UNHIDDEN = 'unhidden_only',
119120
HIDDEN = 'hidden_only',
120121
HIDDEN_ALLOW_AUTO_UNHIDE = 'hidden_allow_auto_unhide',
@@ -905,7 +906,7 @@ declare namespace SendBird {
905906
plainProfileUrl: string;
906907
metaData: Object;
907908
connectionStatus: string;
908-
lastSeenAt: string;
909+
lastSeenAt: number;
909910
isActive: boolean;
910911
requireAuth: boolean;
911912
friendDiscoveryKey: string | null;
@@ -2726,7 +2727,7 @@ declare namespace SendBird {
27262727
metadataValues: Array<string>;
27272728
metadataValueStartsWith: string;
27282729
memberStateFilter: 'all' | 'joined_only' | 'invited_only' | 'invited_by_friend' | 'invited_by_non_friend';
2729-
hiddenChannelFilter: 'unhidden_only' | 'hidden_only' | 'hidden_allow_auto_unhide' | 'hidden_prevent_auto_unhide';
2730+
hiddenChannelFilter: 'all' | 'unhidden_only' | 'hidden_only' | 'hidden_allow_auto_unhide' | 'hidden_prevent_auto_unhide';
27302731
unreadChannelFilter: 'all' | 'unread_message';
27312732
includeFrozen: boolean;
27322733

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.1.11",
3+
"version": "3.1.12",
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.11",
3+
"version": "3.1.12",
44
"description": "Sendbird JavaScript SDK",
55
"main": "SendBird.min.js",
66
"dependencies": {

0 commit comments

Comments
 (0)