Skip to main content

RELAY Realtime SDK 3.10.0

· One min read
Renae Sowald

We are happy to announce Realtime-API SDK 3.10.0.

Upgrading is straightforward with our release process, which adheres to Semantic Versioning. Minor versions are guaranteed to not have breaking changes, so you can upgrade with confidence.

SignalWire Release Card

This small release of version 3.10 of the Realtime SDK introduces a new method for Voice calls and fixes a Voice bug.

Improvements

We have added the call.pass() method to pass an incoming call to another RELAY consumer. 6a35f0a3

This will allow a consumer to decline incoming calls without ending the call and redirect the call to another RELAY client.

client.on("call.received", async (call) => {
await call.pass();
});

Fixes

  • Fixed an undefined setPayload method on the CallTap instance. a7426731