Skip to content

Releases: sendbird/sendbird-calls-javascript

1.10.10

16 Jun 08:17
Compare
Choose a tag to compare

1.10.10 (Jun 16, 2023)

  • Added DirectCall.onCalleeDialReceived event listener to notify the caller when the callee has received the call. This listener will be called when the callee has received the SendBirdCallListener.onRinging event.

1.10.9

10 May 07:46
Compare
Choose a tag to compare

1.10.9 (May 10, 2023 UTC)

  • Fixed the type error in the declaration file.

1.10.8

09 May 05:29
Compare
Choose a tag to compare

1.10.8 (May 9, 2023 UTC)

  • Added the missing export of RoomState enum.
  • Fixed the type error in the declaration file.
  • Changed the return type of RoomListQuery.next(), RoomListQuery.prev() to the actual Room instance, rather than the data object.

1.10.7

21 Apr 07:24
Compare
Choose a tag to compare

1.10.7 (Apr 21, 2023 UTC)

  • Improved connection quality listener in DirectCall.

1.10.6

12 Apr 07:14
Compare
Choose a tag to compare

1.10.6 (Apr 12, 2023 UTC)

  • Added a feature to detect connection qualities in ongoing Direct Calls.
    • Added ConnectionQualityState.
    • Added ConnectionQualityMonitoringMode.
    • Added ConnectionMetrics.
    • Added setConnectionQualityListener(mode: ConnectionQualityMonitoringMode, listener: (metrics: ConnectionMetrics) => void): void, removeConnectionQualityListener(): void in DirectCall;

1.10.5

04 Apr 05:41
Compare
Choose a tag to compare

1.10.5 (Apr 4, 2023 UTC)

  • Fixed the bug that User.metaData is always undefined.
  • Fixed self is not defined error in node environment.

1.10.4

10 Mar 09:04
Compare
Choose a tag to compare

1.10.4 (Mar 10, 2023 UTC)

  • Added a feature to kick other participants in a room with the same user id as the current user.
    • Added kickSiblings in EnterParams.

1.10.3

14 Feb 08:31
Compare
Choose a tag to compare

1.10.3 (Mar 2, 2023 UTC)

  • Fixed an error in SendbirdCall.connectWebSocket().
  • Removed the unexpected console logs.

1.10.1

03 Feb 07:54
Compare
Choose a tag to compare

1.10.1 (Feb 3, 2023 UTC)

  • Fixed the bug that the client with only one of audio/video permission can't use the allowed device in video call/room.
    • Now, the client can use the microphone in video call/room regardless of camera permission.
    • Likewise, the client can use the camera in video call/room regardless of microphone permission.
  • Improved stability.

1.10.0

31 Jan 10:02
Compare
Choose a tag to compare

1.10.0 (Jan 31, 2023 UTC)

  • Added a feature to invite users to enter a room.
    • Added Room.sendInvitation(invitee: string): Promise<RoomInvitation>.
    • Added RoomInvitation class to manage invitation.
    • Added RoomInvitation.accept(): Promise<void>, RoomInvitation.decline(): Promise<void>, RoomInvitation.cancel(): Promise<void>.
    • Added invitationAccepted, invitationDeclined, invitationCanceled in RoomEventMap.
  • Added a new interface to delete a room.
    • Added Room.delete().