TwilioDevEd / video-access-token-server-php

Twilio Video server-side web app in PHP
MIT License
26 stars 26 forks source link

Bump twilio/sdk from 5.7.3 to 6.32.0 #78

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps twilio/sdk from 5.7.3 to 6.32.0.

Release notes

Sourced from twilio/sdk's releases.

6.32.0

Release Notes

Library - Feature

Api

  • Add optional boolean send_as_mms parameter to the create action of Message resource (breaking change)
  • Change team ownership for call delete

Conversations

  • Change wording for Service Webhook Configuration resource fields

Insights

  • Added new APIs for updating and getting voice insights flags by accountSid.

Media

  • Add max_duration param to MediaProcessor

Video

  • Add EmptyRoomTimeout and UnusedRoomTimeout properties to a room; add corresponding parameters to room creation

Voice

  • Add endpoint to delete archived Calls

Docs

6.31.2

Release Notes

Library - Chore

Conversations

  • Add Service Webhook Configuration resource

Flex

  • Adding flex_insights_drilldown and flex_url objects to Flex Configuration

Messaging

  • Update us_app_to_person endpoints to remove beta feature flag based access

Supersim

  • Add IP Commands resource

Verify

  • Add optional factor_friendly_name parameter to the create access token endpoint.

Video

... (truncated)

Changelog

Sourced from twilio/sdk's changelog.

[2021-12-15] Version 6.32.0

Library - Feature

Api

  • Add optional boolean send_as_mms parameter to the create action of Message resource (breaking change)
  • Change team ownership for call delete

Conversations

  • Change wording for Service Webhook Configuration resource fields

Insights

  • Added new APIs for updating and getting voice insights flags by accountSid.

Media

  • Add max_duration param to MediaProcessor

Video

  • Add EmptyRoomTimeout and UnusedRoomTimeout properties to a room; add corresponding parameters to room creation

Voice

  • Add endpoint to delete archived Calls

[2021-12-01] Version 6.31.2

Library - Chore

Conversations

  • Add Service Webhook Configuration resource

Flex

  • Adding flex_insights_drilldown and flex_url objects to Flex Configuration

Messaging

  • Update us_app_to_person endpoints to remove beta feature flag based access

Supersim

  • Add IP Commands resource

Verify

  • Add optional factor_friendly_name parameter to the create access token endpoint.

Video

  • Add maxParticipantDuration param to Rooms

Twiml

  • Unrevert Add supported SSML children to <emphasis>, <lang>, <p>, <prosody>, <s>, and <w>.

... (truncated)

Upgrade guide

Sourced from twilio/sdk's upgrade guide.

Upgrade Guide

After 5.1.1 all MINOR and MAJOR version bumps will have upgrade notes posted here.

[2020-04-15] 6.2.x to 6.3.x

CHANGED - Optional header parameters added to Authy endpoints

Custom headers are now supported in twilio-php. The addition of these optional parameters have caused a breaking change to the read, page, and stream functions for Entity, Service, and Factor resources. These functions now expect an array of optional parameters as the first argument.

6.2.x

<? 
use Twilio\Rest\Client;
$twilio = new Client();

$entities = $twilio->authy->v1->services("ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX") ->entities ->read(20);

6.3.x

<? 
use Twilio\Rest\Client;
$twilio = new Client();

$entities = $twilio->authy->v1->services("ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX") ->entities ->read([], 20);

[2017-09-28] 5.1x.x to 5.15.x

CHANGED - Body parameter on Chat Message creation is no longer required.

Rationale

This was changed to add support for sending media in Chat messages, users can now either provide a body or a media_sid.

5.1x.x

<?php

use Twilio\Rest\Client;

$client = new Client(); $client->chat->v2->service('IS123')->channel('CH123')->message->create("this is the body");

... (truncated)

Commits
  • d4a5ad2 Release 6.32.0
  • 9408042 [Librarian] Regenerated @ 0abbad22a16b8d30bf075bd4ce86bc83cc998b3b
  • d26f2c9 feat: run tests before deploying (#708)
  • be59275 Release 6.31.2
  • ddc45c8 [Librarian] Regenerated @ 0648d4ca0c72e6caa5ef9ec33e4ee2c56259bb7e
  • 806e4b9 chore: Test against php 8.1 (#707)
  • b3788dd Release 6.31.1
  • 71c8f89 [Librarian] Regenerated @ 352c12d2f3566583bc444c27197a49bb3ebfbab0
  • 4363837 chore: ignore directory and not just the content (#706)
  • 80179c9 chore: remove install as a dependency of test (#705)
  • 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[bot] commented 2 years ago

Superseded by #80.