Skip to content

Commit 3febe20

Browse files
committed
v3.0.17 release
1 parent ddeca00 commit 3febe20

File tree

6 files changed

+23
-12
lines changed

6 files changed

+23
-12
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
Changelog
22
=========
3+
## v3.0.17
4+
### update
5+
* Finally push notifications feature is officially supported in V3 JS SDK.
6+
* Added "setBackgroundState()" and "setForegroundState()".
7+
* Added "messageType" filter to PreviousMessageQueryList.
8+
9+
310
## v3.0.16
411
### update
5-
* Intial connection speed has been improved a lot!.
12+
* InItial connection speed has been improved a lot!.
613
* Auto-Reconnection is now more robust.
714
* Auto-Translation support has been added.
815

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ SendBird-SDK-JavaScript
2727
# [Documentation](https://docs.sendbird.com/javascript)
2828

2929

30-
## Upgrading to v3.0.16
30+
## Upgrading to v3.0.17
3131
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).
32-
* Intial connection speed has been improved a lot!.
33-
* Auto-Reconnection is now more robust.
34-
* Auto-Translation support has been added.
32+
* Finally push notifications feature is officially supported in V3 JS SDK.
33+
* Added "setBackgroundState()" and "setForegroundState()".
34+
* Added "messageType" filter to PreviousMessageQueryList.
3535

3636

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

SendBird.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ interface SendBird_Instance {
2828
unregisterAPNSPushTokenForCurrentUser(apnsRegToken: string, callback?: Function): void;
2929
unregisterAPNSPushTokenAllForCurrentUser(callback: Function): void;
3030

31+
getPendingGCMToken(): string;
32+
getPendingAPNSToken(): string;
33+
3134
setDoNotDisturb(doNotDisturbOn: boolean, startHour: number, startMin: number, endHour: number, endMin: number, timezone: string, callback?: Function): void;
3235
getDoNotDisturb(callback: Function): void;
3336

@@ -135,6 +138,7 @@ interface MessageListQuery {
135138
interface PreviousMessageListQuery {
136139
hasMore: boolean;
137140
load(limit: number, reverse: boolean, callback: Function): void;
141+
load(limit: number, reverse: boolean, messageType: string, callback: Function): void;
138142
}
139143

140144

SendBird.min.js

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

0 commit comments

Comments
 (0)