Skip to content

Commit 17fc1aa

Browse files
committed
1.9.0
1 parent a630ef3 commit 17fc1aa

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

CHANGELOG.md

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

3+
### 1.9.0 (December 9, 2021 UTC)
4+
For 1.9.0, a feature to delete a room in Group call is released.
5+
* Added `deleted` in `RoomEventMap` which is invoked when the room has been deleted by the Platform API.
6+
37
### 1.8.2 (November 19, 2021 UTC)
48
* Bug fix
59
* Fixed the unexpected error when joining room in which there are more than two participants.

SendBirdCall.min.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** 1.8.2 */
1+
/** 1.9.0 */
22
// eslint-disable-next-line no-undef,max-classes-per-file
33
export as namespace SendBirdCall;
44

@@ -475,6 +475,7 @@ declare type RoomEventMap = {
475475
remoteVideoSettingsChanged: { args: [RemoteParticipant]; };
476476
customItemsUpdated: { args: [CustomItems, string[]] };
477477
customItemsDeleted: { args: [CustomItems, string[]] };
478+
deleted: {};
478479
error: { args: [Error, Participant?] };
479480
};
480481

SendBirdCall.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-calls",
3-
"version": "1.8.2",
3+
"version": "1.9.0",
44
"authors": [
55
"SendBird <[email protected]>"
66
],

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird-calls",
3-
"version": "1.8.2",
3+
"version": "1.9.0",
44
"description": "SendBird Calls JavaScript SDK",
55
"main": "SendBirdCall.min.js",
66
"types": "SendBirdCall.min.d.ts",

0 commit comments

Comments
 (0)