github twilio/twilio-video.js 2.36.0

5 hours ago

2.36.0 (September 11, 2026)

New Features

  • Added support for @twilio/krisp-audio-plugin 2.x. Version 1.x remains supported, so
    existing applications continue to work without changes.

    The 2.x plugin expects the raw microphone signal, so disable the browser's own audio
    processing when using it:

    const localAudioTrack = await createLocalAudioTrack({
      noiseCancellationOptions: {
        sdkAssetsPath: 'path/to/hosted/twilio/krisp/audio/plugin/{version}/dist',
        vendor: 'krisp'
      },
      // Required for 2.x only — omit these for 1.x.
      echoCancellation: false,
      noiseSuppression: false,
      autoGainControl: false
    });

Bug Fixes

  • Fixed loading of the noise cancellation plugin when the SDK is bundled by tools that
    rewrite dynamic imports. The module path is now passed as an argument to the import
    function instead of being embedded in its body.

Changes

  • Updated ws to address a security advisory. This affects the Node.js build only;
    browser builds do not include ws.

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

NewReleases is sending notifications on new releases.