automated-survey-spring
automated-survey-spring copied to clipboard
Bump com.twilio.sdk:twilio from 7.16.0 to 9.9.0
Bumps com.twilio.sdk:twilio from 7.16.0 to 9.9.0.
Release notes
Sourced from com.twilio.sdk:twilio's releases.
9.9.0
Release Notes
Flex
- Adding
interaction_context_sidas optional parameter in Interactions APIMessaging
- Making visiblity public for tollfree_verification API
Numbers
- Remove Sms capability property from HNO creation under version
/v2of HNO API. (breaking change)- Update required properties in LOA creation under version
/v2of Authorization document API. (breaking change)Taskrouter
- Add api to fetch task queue statistics for multiple TaskQueues
Verify
- Add
RiskCheckoptional parameter on Verification creation.Twiml
- Add Google Voices and languages
9.8.0
Release Notes
Library - Chore
- [PR #754](twilio/twilio-java#754): Add content type enum to request. Thanks to
@sbansla!- [PR #753](twilio/twilio-java#753): added content type enum. Thanks to
@sbansla!Lookups
- Add
reassigned_numberpackage to the lookup responseNumbers
- Add hosted_number_order under version
/v2.- Update properties in Porting and Bulk Porting APIs. (breaking change)
- Added bulk Portability API under version
/v1.- Added Portability API under version
/v1.9.7.0
Release Notes
Api
... (truncated)
Changelog
Sourced from com.twilio.sdk:twilio's changelog.
[2023-07-14] Version 9.9.0
Flex
- Adding
interaction_context_sidas optional parameter in Interactions APIMessaging
- Making visiblity public for tollfree_verification API
Numbers
- Remove Sms capability property from HNO creation under version
/v2of HNO API. (breaking change)- Update required properties in LOA creation under version
/v2of Authorization document API. (breaking change)Taskrouter
- Add api to fetch task queue statistics for multiple TaskQueues
Verify
- Add
RiskCheckoptional parameter on Verification creation.Twiml
- Add Google Voices and languages
[2023-06-28] Version 9.8.0
Library - Chore
- [PR #754](twilio/twilio-java#754): Add content type enum to request. Thanks to
@sbansla!- [PR #753](twilio/twilio-java#753): added content type enum. Thanks to
@sbansla!Lookups
- Add
reassigned_numberpackage to the lookup responseNumbers
- Add hosted_number_order under version
/v2.- Update properties in Porting and Bulk Porting APIs. (breaking change)
- Added bulk Portability API under version
/v1.- Added Portability API under version
/v1.[2023-06-15] Version 9.7.0
Api
- Added
content_sidas conditional parameter- Removed
content_sidas optional field (breaking change)Insights
- Added
annotationto list summary output[2023-06-01] Version 9.6.2
... (truncated)
Upgrade guide
Sourced from com.twilio.sdk:twilio's upgrade guide.
Upgrade Guide
MAJORversion bumps will have upgrade notes posted here.[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.xis the first version that officially drops support for Java 7.
- Removal of dependencies offering functionality included in Java 8 and beyond:
- Guava concurrency, hashing, and charstreams
- Guava
com.google.common.collect.Rangeremoval- joda-time
org.joda.time.DateTime->java.time.ZonedDateTimeorg.joda.time.LocalDate->java.time.LocalDate- Removal of deprecated classes and methods:
com.twilio.jwt.accesstoken.ConversationsGrantcom.twilio.jwt.accesstoken.IpMessagingGrantcom.twilio.jwt.accesstoken.VideoGrant.getConfigurationProfileSid()com.twilio.jwt.accesstoken.VideoGrant.setConfigurationProfileSid()- Renamed child TwiML methods:
com.twilio.twiml.voice.Refer.Builder.referSipcom.twilio.twiml.voice.Say.Builder.ssml<Element>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()); Twilio.setExecutorService(listeningExecutorService);
// 8.x.x import java.util.concurrent.ExecutorService; import java.util.concurrent.Executor;ExecutorService executorService = Executors.newCachedThreadPool(); </tr></table>
... (truncated)
Commits
5ff4b79Release 9.9.0399d2af[Librarian] Regenerated @ 5627c63bd23f159fdbe112bf727f87b79c3d4f745a8398bRelease 9.8.028476af[Librarian] Regenerated @ d9d9306ce476f68a10ab20bf103e0e31e523a4b3ab31155chore: Add content type enum to request (#754)d95be26added content type enum (#753)11a8368Release 9.7.042a5c25[Librarian] Regenerated @ 0430a9c977225d55252b84f4d16e16ad2091cde135deebbRelease 9.6.27b97ab6[Librarian] Regenerated @ 66882adf0db70d1f2bc084fe6acef7d99445b17b- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)