Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

Conversation

@dependabot-preview
Copy link
Contributor

Bumps twilio from 7.9.0 to 8.13.0.

Release notes

Sourced from twilio's releases.

8.13.0

Release Notes

Events

  • add query param to return types filtered by Schema Id
  • Add query param to return sinks filtered by status
  • Add query param to return sinks used/not used by a subscription

Messaging

  • Add fetch and delete instance endpoints to us_app_to_person api (breaking change)
  • Remove delete list endpoint from us_app_to_person api (breaking change)
  • Update read list endpoint to return a list of us_app_to_person compliance objects (breaking change)
  • Add sid field to Preregistered US App To Person response

Supersim

  • Mark unique_name in Sim, Fleet, NAP resources as not PII

Video

  • [Composer] GA maturity level

Docs Maven

8.12.0

Release Notes

Library - Feature

Library - Fix

Api

  • Corrected the data types for feedback summary fields (breaking change)
  • Update the conference participant create from and to param to be endpoint type for supporting client identifier and sip address

Bulkexports

  • promoting API maturity to GA

Events

  • Add endpoint to update description in sink
  • Remove beta-feature account flag

Messaging

  • Update status field in us_app_to_person api to campaign_status (breaking change)

Verify

  • Improve documentation regarding push factor and include extra information about totp factor.

... (truncated)

Changelog

Sourced from twilio's changelog.

[2021-05-19] Version 8.13.0

Events

  • add query param to return types filtered by Schema Id
  • Add query param to return sinks filtered by status
  • Add query param to return sinks used/not used by a subscription

Messaging

  • Add fetch and delete instance endpoints to us_app_to_person api (breaking change)
  • Remove delete list endpoint from us_app_to_person api (breaking change)
  • Update read list endpoint to return a list of us_app_to_person compliance objects (breaking change)
  • Add sid field to Preregistered US App To Person response

Supersim

  • Mark unique_name in Sim, Fleet, NAP resources as not PII

Video

  • [Composer] GA maturity level

[2021-05-05] Version 8.12.0

Library - Feature

Library - Fix

Api

  • Corrected the data types for feedback summary fields (breaking change)
  • Update the conference participant create from and to param to be endpoint type for supporting client identifier and sip address

Bulkexports

  • promoting API maturity to GA

Events

  • Add endpoint to update description in sink
  • Remove beta-feature account flag

Messaging

  • Update status field in us_app_to_person api to campaign_status (breaking change)

Verify

  • Improve documentation regarding push factor and include extra information about totp factor.

[2021-04-21] Version 8.11.0

Library - Chore

... (truncated)

Upgrade guide

Sourced from twilio's upgrade guide.

Upgrade Guide

MAJOR version bumps will have upgrade notes posted here.

[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());
Twilio.setExecutorService(listeningExecutorService);

// 8.x.x
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executor;
ExecutorService executorService = Executors.newCachedThreadPool();
Twilio.setExecutorService(executorService);

Making asynchronous requests

Note that this change effects all asynchronous Create/Fetch/Update/Delete/Read return types. For example:

// 7.x.x
import com.twilio.rest.api.v2010.account.IncomingPhoneNumber;
</tr></table> 

... (truncated)

Commits
  • 2e5959c Release 8.13.0
  • 472e37e [Librarian] Regenerated @ 277e53a232b830747a98a7b463b89f7d9a99ce03
  • 6a174a0 Release 8.12.0
  • 948a01d [Librarian] Regenerated @ c95de69ef589811189089c789616f1b139c1ae3e
  • 0a457b8 chore: rotate slack token
  • 92bbb35 feat: allow conference participant to be any endpoint (#559)
  • ed7d434 fix: log correct URL in TwilioRestClient (#632)
  • b354fdf Release 8.11.0
  • 65c4fe0 [Librarian] Regenerated @ 13a590a5017846bb40a46a0722d90a15ca591b2d
  • d3b891f chore: protected TwilioRestClient constructor (#631)
  • 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 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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label May 20, 2021
@dependabot-preview
Copy link
Contributor Author

Superseded by #88.

@dependabot-preview dependabot-preview bot deleted the dependabot/maven/com.twilio.sdk-twilio-8.13.0 branch June 3, 2021 05:28
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant