Skip to content

2.6.1

Compare
Choose a tag to compare
@charliesantos charliesantos released this 07 Jul 17:24
· 131 commits to master since this release

2.6.1 (July 7, 2023)

Changes

  • Fixed some security vulnerabilities shown by npm audit.
  • Removed unused dependencies.
  • Replaced deprecated dependencies.

Bug Fixes

  • Fixed an issue where custom DTMF sounds would not play. With this release, custom DTMF sounds should now play when configured during device initialization.

    const device = new Device(token, {
      sounds: {
        dtmf8: 'http://mysite.com/8_button.mp3',
        // Other custom sounds
      },
      // Other options
    });
  • Fixed an issue where calling device.updateOptions would reset the device.audio._enabledSounds state.