Skip to content

Bump com.twilio.sdk:twilio from 8.31.1 to 10.8.0 #184

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: next
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github May 6, 2025

Bumps com.twilio.sdk:twilio from 8.31.1 to 10.8.0.

Release notes

Sourced from com.twilio.sdk:twilio's releases.

10.8.0

Release Notes

Library - Chore

Library - Fix

  • [PR #846](twilio/twilio-java#846): update jjwt version. Thanks to @​manisha1997!
  • AccessToken
    • Breaking Change: Updated AccessTokenBuilder to use byte[] for the secret instead of String.
      • Updated method signatures:
        • AccessTokenBuilder(String accountSid, String keySid, byte[] secret)
      • Example usage:
        byte[] secret = “your_secret”.getBytes();
        AccessTokenBuilder builder = new AccessTokenBuilder(accountSid, keySid, secret);
    ClientCapability
    • Breaking Change: Updated ClientCapability.Builder to use byte[] for the authToken instead of String.
      • 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);
    TaskRouterCapability
    • Breaking Change: Updated TaskRouterCapability.Builder to use byte[] for the authToken instead of String.
      • 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);

Api

  • Add response_key for Usage 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

... (truncated)

Changelog

Sourced from com.twilio.sdk:twilio's changelog.

[2025-05-05] Version 10.8.0

Library - Chore

Library - Fix

  • [PR #846](twilio/twilio-java#846): update jjwt version. Thanks to @​manisha1997!
  • AccessToken
    • Breaking Change: Updated AccessTokenBuilder to use byte[] for the secret instead of String.
      • Updated method signatures:
        • AccessTokenBuilder(String accountSid, String keySid, byte[] secret)
      • Example usage:
        byte[] secret = “your_secret”.getBytes();
        AccessTokenBuilder builder = new AccessTokenBuilder(accountSid, keySid, secret);
    ClientCapability
    • Breaking Change: Updated ClientCapability.Builder to use byte[] for the authToken instead of String.
      • 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);
    TaskRouterCapability
    • Breaking Change: Updated TaskRouterCapability.Builder to use byte[] for the authToken instead of String.
      • 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);

Api

  • Add response_key for Usage 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 and transcriptions_configuration from the room resource (breaking change)

... (truncated)

Upgrade guide

Sourced from com.twilio.sdk:twilio's upgrade guide.

Upgrade Guide

MAJOR version bumps will have upgrade notes posted here.

[2024-02-08] 9.x.x to 10.x.x

Overview

Twilio Java Helper Library’s major version 10.0.0 is now available. We ensured that you can upgrade to Java helper Library 10.0.0 version without any breaking changes of existing apis

Behind the scenes Java Helper is now auto-generated via OpenAPI with this release. This enables us to rapidly add new features and enhance consistency across versions and languages. We're pleased to inform you that version 10.0.0 adds support for the application/json content type in the request body.

[2022-09-21] 8.x.x to 9.x.x

Overview

Twilio Java Helper Library’s major version 9.0.0 is now available. We ensured that you can upgrade to Java helper Library 9.0.0 version without any breaking changes

Behind the scenes Java Helper is now auto-generated via OpenAPI with this release. This enables us to rapidly add new features and enhance consistency across versions and languages.

[2020-09-28] 7.x.x to 8.x.x

Overview

Version 8.x.x is the first version that officially drops support for Java 7.

CHANGED - Migration to built-in Java concurrency dependencies

Getting/Setting a custom Executor Service

// 7.x.x
import com.google.common.util.concurrent.ListeningExecutorService;
import com.google.common.util.concurrent.MoreExecutors;
ListeningExecutorService listeningExecutorService = MoreExecutors.listeningDecorator(Executors.newCachedThreadPool());
</tr></table>

... (truncated)

Commits
  • a6714ca chore: add changelog for jwt (#853)
  • d2745b3 Release 10.8.0
  • 1a8d393 [Librarian] Regenerated @ 73b691d4309bbf652c00c8e81516e936534d2117 e39c0f89ec...
  • 6d8c1ad chore: removing jwt changelog (#852)
  • 7705b73 chore: Add example for using multi region setup in a single application (#849)
  • 3de6c4f chore: bump com.google.code.gson:gson from 2.8.6 to 2.8.9 (#847)
  • 8eb52f3 fix: update jjwt version (#846)
  • c3406bb Release 10.7.2
  • 3d5994a [Librarian] Regenerated @ e229c81d086276743ccce5ac8e1e19c4ad654adb 190899e14f...
  • 3571833 🏆 Add a Recommendation Badge from libs.tech (#843)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [com.twilio.sdk:twilio](https://github.com/twilio/twilio-java) from 8.31.1 to 10.8.0.
- [Release notes](https://github.com/twilio/twilio-java/releases)
- [Changelog](https://github.com/twilio/twilio-java/blob/main/CHANGES.md)
- [Upgrade guide](https://github.com/twilio/twilio-java/blob/main/UPGRADE.md)
- [Commits](twilio/twilio-java@8.31.1...10.8.0)

---
updated-dependencies:
- dependency-name: com.twilio.sdk:twilio
  dependency-version: 10.8.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels May 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants