Release Notes
Library - Chore
- PR #852: removing jwt changelog. Thanks to @tiwarishubham635!
- PR #849: Add example for using multi region setup in a single application. Thanks to @manisha1997!
- PR #847: bump com.google.code.gson:gson from 2.8.6 to 2.8.9. Thanks to @dependabot!
Library - Fix
- PR #846: update jjwt version. Thanks to @manisha1997!
- AccessToken
- Breaking Change: Updated
AccessTokenBuilder
to usebyte[]
for thesecret
instead ofString
.- Updated method signatures:
AccessTokenBuilder(String accountSid, String keySid, byte[] secret)
- Example usage:
byte[] secret = “your_secret”.getBytes(); AccessTokenBuilder builder = new AccessTokenBuilder(accountSid, keySid, secret);
- Updated method signatures:
- Breaking Change: Updated
ClientCapability.Builder
to usebyte[]
for theauthToken
instead ofString
.- Updated method signatures:
ClientCapability.Builder(String accountSid, byte[] authToken)
- Example usage:
byte[] authToken = “your_auth_token”.getBytes(); ClientCapability.Builder builder = new ClientCapability.Builder(accountSid, authToken);
- Updated method signatures:
- Breaking Change: Updated
TaskRouterCapability.Builder
to usebyte[]
for theauthToken
instead ofString
.- Updated method signatures:
TaskRouterCapability.Builder(String accountSid, byte[] authToken)
- Example usage:
byte[] authToken = “your_auth_token”.getBytes(); TaskRouterCapability.Builder builder = new TaskRouterCapability.Builder(accountSid, authToken);
- Updated method signatures:
- Breaking Change: Updated
Api
- Add
response_key
forUsage Triggers
fetch endpoint.
Flex
- Add Update Interaction API
- Adding
webhook_ttid
as optional parameter in Interactions API
Serverless
- Add node22 as a valid Build runtime
- Add node20 as a valid Build runtime
Video
- removed
transcribe_participants_on_connect
andtranscriptions_configuration
from the room resource (breaking change) - Added
transcribe_participants_on_connect
andtranscriptions_configuration
to the room resource