Skip to content

Commit 9550244

Browse files
committed
v3.0.154
1 parent ee64bee commit 9550244

File tree

6 files changed

+21
-8
lines changed

6 files changed

+21
-8
lines changed

CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
# Changelog
22

3-
## v3.0.153(JUNE 11, 2021)
3+
## v3.0.154(JUL 6, 2021)
4+
- Added `metadataKey`, `metadataValues` and `metadataValueStartsWith` in `GroupChannelListQuery` and `PublicGroupChannelListQuery`.
5+
- Optimized Supergroup protocol handling to improve performance for specific use cases.
46
- Improved stability.
57

6-
## v3.0.152(JUNE 10, 2021)
8+
## v3.0.153(JUN 11, 2021)
9+
- Improved stability.
10+
11+
## v3.0.152(JUN 10, 2021)
712
- Added `getMessage` in `BaseMessage`.
813

914
## v3.0.151(MAY 28, 2021)

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,10 @@ The `sb.setErrorFirstCallback(false)` returns callbacks to their original parame
325325

326326
## Changelogs
327327

328-
## v3.0.153(JUNE 11, 2021)
328+
### v3.0.154(JUL 6, 2021)
329329

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

332+
- Added `metadataKey`, `metadataValues` and `metadataValueStartsWith` in `GroupChannelListQuery` and `PublicGroupChannelListQuery`.
333+
- Optimized Supergroup protocol handling to improve performance for specific use cases.
332334
- Improved stability.

SendBird.d.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Type Definitions for Sendbird SDK v3.0.153
2+
* Type Definitions for Sendbird SDK v3.0.154
33
* homepage: https://sendbird.com/
44
* git: https://github.com/sendbird/Sendbird-SDK-JavaScript
55
*/
@@ -2196,6 +2196,9 @@ declare namespace SendBird {
21962196
superChannelFilter: 'all' | 'super' | 'nonsuper';
21972197
publicChannelFilter: 'all' | 'public' | 'private';
21982198
metadataOrderKeyFilter: string;
2199+
metadataKey: string;
2200+
metadataValues: Array<string>;
2201+
metadataValueStartsWith: string;
21992202
memberStateFilter: 'all' | 'joined_only' | 'invited_only' | 'invited_by_friend' | 'invited_by_non_friend';
22002203
hiddenChannelFilter: 'unhidden_only' | 'hidden_only' | 'hidden_allow_auto_unhide' | 'hidden_prevent_auto_unhide';
22012204
unreadChannelFilter: 'all' | 'unread_message';
@@ -2219,6 +2222,9 @@ declare namespace SendBird {
22192222
superChannelFilter: 'all' | 'super' | 'nonsuper';
22202223
membershipFilter: 'all' | 'joined';
22212224
metadataOrderKeyFilter: string;
2225+
metadataKey: string;
2226+
metadataValues: Array<string>;
2227+
metadataValueStartsWith: string;
22222228
includeFrozen: boolean;
22232229

22242230
next(callback?: groupChannelListQueryCallback): Promise<Array<GroupChannel>>;

SendBird.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird",
3-
"version": "3.0.153",
3+
"version": "3.0.154",
44
"authors": [
55
"Sendbird <[email protected]>"
66
],

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird",
3-
"version": "3.0.153",
3+
"version": "3.0.154",
44
"description": "Sendbird JavaScript SDK",
55
"main": "SendBird.min.js",
66
"dependencies": {

0 commit comments

Comments
 (0)