Skip to content

Commit 48ddd1d

Browse files
committed
ver3.0.52
1 parent 6284b82 commit 48ddd1d

File tree

7 files changed

+16
-10
lines changed

7 files changed

+16
-10
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# Created by .ignore support plugin (hsz.mobi)
22
npm-debug.log
3+
.idea

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Changelog
22
=========
33

4+
## v3.0.52
5+
* Added `channelUrlsFilter` in `GroupChannelListQuery`.
6+
47
## v3.0.51
58
* Minor bugfix for `markAsReadWithChannelUrls()`.
69

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ If you have trouble importing `SendBird`, please check your `tsconfig.json` file
3939
# [Documentation](https://docs.sendbird.com/javascript)
4040

4141

42-
## Upgrading to v3.0.51
42+
## Upgrading to v3.0.52
4343
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).
44-
* Minor bugfix for `markAsReadWithChannelUrls()`.
44+
* Added `channelUrlsFilter` in `GroupChannelListQuery`.
4545

4646

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

SendBird.d.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Type Definitions for SendBird SDK v3.0.51
2+
* Type Definitions for SendBird SDK v3.0.52
33
* homepage: https://sendbird.com/
44
* git: https://github.com/smilefam/SendBird-SDK-JavaScript
55
*/
@@ -561,5 +561,6 @@ interface GroupChannelListQuery {
561561
channelNameContainsFilter: string;
562562
customTypeFilter: string; // Deprecated
563563
customTypesFilter: Array<string>;
564+
channelUrlsFilter: Array<string>;
564565
next(callback: groupChannelListQueryCallback): void;
565566
}

SendBird.min.js

+6-5
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.51",
3+
"version": "3.0.52",
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.51",
3+
"version": "3.0.52",
44
"description": "SendBird JavaScript SDK",
55
"main": "SendBird.min.js",
66
"dependencies": {

0 commit comments

Comments
 (0)