Skip to content

Releases: QuickBlox/quickblox-javascript-sdk

2.13.7

19 May 09:07
Compare
Choose a tag to compare

Fixes

Fixed issue with chat connection freezing in DISCONNECTING state

2.13.6

30 Mar 13:15
Compare
Choose a tag to compare

Fixes

Changed RTCPeerConnection configuration to not use mixing of one-byte and two-byte header extensions ("extmap-allow-mixed") for backward compatibility with old WebRTC implementations

2.13.5

02 Mar 15:56
Compare
Choose a tag to compare

Fixes

Fixed error with WebRTC signalling re-initialization
Added throwing "ChatNotConnectedError" if trying to send message via not connected connection

2.13.2

23 Nov 15:36
Compare
Choose a tag to compare

Fixes

Fixed condition when to call "on.sessionExpired" callback

2.13.1

10 Nov 17:09
Compare
Choose a tag to compare

Fixes

Fixed work of "ping" feature in Node environment

2.13.0

28 Oct 14:06
Compare
Choose a tag to compare

Added

Ability to migrate account if “accountKey” was passed

Fixes

Assign ondevicechange handler only if WebRTC is available

2.12.9

11 Aug 16:20
Compare
Choose a tag to compare

Added

Ping functionality to QB.chat module

2.12.8

04 Aug 14:24
Compare
Choose a tag to compare

Fixes

WebRTC module

  • Do not end a p2p group call if initiator hung up
  • Do not start waitingReconnectTimer if it was created previously

2.12.7

21 Nov 12:35
Compare
Choose a tag to compare

Fixes

WebRTC module

"onCallListener" was called several times with same session

2.12.6

11 Oct 12:44
Compare
Choose a tag to compare

Ability to disable auto-reject if user already in call added.
To disable auto-reject in config set autoReject property to false(Default is true).
Example:

webrtc: {
    answerTimeInterval: 60,
    autoReject: false,
    incomingLimit: 1,
    dialingTimeInterval: 5,
    disconnectTimeInterval: 30
}