Skip to content

Releases: sendbird/sendbird-calls-javascript

1.6.1

21 May 07:09
Compare
Choose a tag to compare

1.6.1 (May 21, 2021 UTC)

  • Bug fix
    • Fixed the error and undefined behavior in recording feature.
      • Now, DirectCall.startRecording() produces .webm file in Chrome and Firefox, .mp4 file in Safari.
    • Fixed the noise when calling addDirectCallSound().
    • Fixed the bug that sometimes the error message of authenticate() is blank.

1.6.0

22 Apr 08:06
Compare
Choose a tag to compare

1.6.0 (April 22, 2021 UTC)

  • Added support for group call.
    • Below class is added in SendBirdCall
      • Room
    • Below methods are added in SendBirdCall
      • createRoom(params: RoomParams): Promise<Room>
      • getCachedRoomById(roomId: string): Room
      • fetchRoomById(roomId: string): Promise<Room>
    • Below interfaces are added in SendBirdCall
      • RoomParams
      • EnterParams
      • Participant
      • LocalParticipant
      • RemoteParticipant
    • Below enums are added in SendBirdCall
      • RoomType
      • ParticipantState
  • Bug fix
    • Fixed an unexpected exception.
  • Improved stability.

1.5.4

12 Mar 11:24
Compare
Choose a tag to compare

1.5.4 (Mar 12, 2021 UTC)

  • Added suuport for screen share in DirectCall.
    • Below methods are added in DirectCall:
      • startScreenShare(): Promise<void>
      • stopScreenShare(): void
    • Below property is added in DirectCall:
      • readonly isLocalScreenShareEnabled: boolean

1.6.0-beta

17 Feb 10:35
Compare
Choose a tag to compare

1.6.0-beta (Feb 17, 2021 UTC)

Sendbird Calls SDK version 1.6.0 supports the early access program for group calling. New concepts introduced in this version center around rooms and participants.

  • Added group call feature.
    • Below methods are added in SendBirdCall
      • createRoom(): Promise<Room>
      • getCachedRoomById(roomId: string): Room
      • fetchRoomById(roomId: string): Promise<Room>
    • Below class is added in SendBirdCall
      • Room
    • Below interfaces are added in SendBirdCall
      • EnterParams
      • Participant
      • LocalParticipant
      • RemoteParticipant
    • Below enum is added in SendBirdCall
      • ParticipantState

1.5.3

26 Jan 09:03
Compare
Choose a tag to compare

1.5.3 (Jan 26, 2021 UTC)

  • Bug fix
    • Fixed doubling bug in recording.

1.5.2

14 Jan 06:27
Compare
Choose a tag to compare

1.5.2 (Jan 14, 2021 UTC)

  • Bug fix
    • Fixed an unexpected exception.

1.5.1

28 Dec 04:04
Compare
Choose a tag to compare

1.5.1 (Dec 28, 2020 UTC)

  • Bug fix
    • Fixed an unexpected exception.

1.5.0

24 Dec 11:27
Compare
Choose a tag to compare

1.5.0 (Dec 24, 2020 UTC)

  • Added support for integration with Sendbird Chat
    • Added sendBirdChatOptions to DialParams
  • Added support for Call summary on the dashboard.
  • Improved backend scalability
  • Enhanced security for compliance

1.4.1

03 Nov 10:11
Compare
Choose a tag to compare

1.4.1 (Nov 3, 2020 UTC)

  • Improved stability

1.4.0

03 Nov 09:14
Compare
Choose a tag to compare

1.4.0 (Nov 3, 2020 UTC)

  • Added remote recording progress event.
    • Below properties are added in DirectCall:
      • onRemoteRecordingStatusChanged: ((call: DirectCall) => void) | null
      • localRecordingStatus: RecordingStatus
      • remoteRecordingStatus: RecordingStatus
    • Below enum is added in SendBirdCall:
      • RecordingStatus
  • Improved stability