github twilio/twilio-video.js 1.19.0

latest releases: 2.8.2-rc1, 2.28.2-rc1, 2.28.1...
4 years ago

1.19.0 (August 21, 2019)

New Features

  • You can now enable DSCP tagging for audio
    packets on supported browsers (only Chrome supports this as of now) by setting a new ConnectOptions property
    dscpTagging to true. This will request enhanced QoS treatment for audio packets from any firewalls or
    routers that support this feature. Audio packets will be sent with DSCP header value set to (0xb8) which
    corresponds to EF (Expedited Forwarding). (JSDK-2440)

    const { connect } = require('twilio-video');
    const room = await connect(token, {
      dscpTagging: true
    });
  • Setting bandwidth limits for media using LocalParticipant.setParameters() will now no longer require a
    round of negotiation with the remote peer and will take effect instantaneously. (JSDK-2250)

Bug Fixes

  • Worked around a minor interop issue between Chrome/Safari Participants and Firefox 68+
    Participants in a Peer-to-Peer Room. Although this issue does no affect the normal
    functioning of the Room, it resulted in the Chrome/Safari Participants logging cryptic
    Error messages to the JavaScript console. Now, twilio-video.js will log warning messages
    until Chrome (bug) and Safari
    fix this issue. (JSDK-2412)

Don't miss a new twilio-video.js release

NewReleases is sending notifications on new releases.