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.35.1 #84

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps twilio/sdk from 5.7.3 to 6.35.1.

Release notes

Sourced from twilio/sdk's releases.

6.35.1

Release Notes

Library - Chore

Api

  • Add optional boolean include_soft_deleted parameter to retrieve soft deleted recordings

Chat

  • Add X-Twilio-Wehook-Enabled header to delete method in UserChannel resource

Numbers

  • Expose failure_reason in the Supporting Documents resources

Verify

  • Add optional metadata parameter to "verify challenge" endpoint, so the SDK/App can attach relevant information from the device when responding to challenges.
  • remove beta feature flag to list atempt api operations.
  • Add ttl and date_created properties to AccessTokens.

Docs

6.35.0

Release Notes

Api

  • Add uri to stream resource
  • Add A2P Registration Fee category (a2p-registration-fee) to usage records
  • Detected a bug and removed optional boolean include_soft_deleted parameter to retrieve soft deleted recordings. (breaking change)
  • Add optional boolean include_soft_deleted parameter to retrieve soft deleted recordings.

Numbers

  • Unrevert valid_until and sort filter params added to List Bundles resource
  • Revert valid_until and sort filter params added to List Bundles resource
  • Update sorting params added to List Bundles resource in the previous release

Preview

  • Moved web_channels from preview to beta under flex-api (breaking change)

Taskrouter

  • Add ETag as Response Header to List of Task, Reservation & Worker

Verify

  • Remove outdated documentation commentary to contact sales. Product is already in public beta.
  • Add optional metadata to factors.

Twiml

  • Add new Polly Neural voices

... (truncated)

Changelog

Sourced from twilio/sdk's changelog.

[2022-03-09] Version 6.35.1

Library - Chore

Api

  • Add optional boolean include_soft_deleted parameter to retrieve soft deleted recordings

Chat

  • Add X-Twilio-Wehook-Enabled header to delete method in UserChannel resource

Numbers

  • Expose failure_reason in the Supporting Documents resources

Verify

  • Add optional metadata parameter to "verify challenge" endpoint, so the SDK/App can attach relevant information from the device when responding to challenges.
  • remove beta feature flag to list atempt api operations.
  • Add ttl and date_created properties to AccessTokens.

[2022-02-23] Version 6.35.0

Api

  • Add uri to stream resource
  • Add A2P Registration Fee category (a2p-registration-fee) to usage records
  • Detected a bug and removed optional boolean include_soft_deleted parameter to retrieve soft deleted recordings. (breaking change)
  • Add optional boolean include_soft_deleted parameter to retrieve soft deleted recordings.

Numbers

  • Unrevert valid_until and sort filter params added to List Bundles resource
  • Revert valid_until and sort filter params added to List Bundles resource
  • Update sorting params added to List Bundles resource in the previous release

Preview

  • Moved web_channels from preview to beta under flex-api (breaking change)

Taskrouter

  • Add ETag as Response Header to List of Task, Reservation & Worker

Verify

  • Remove outdated documentation commentary to contact sales. Product is already in public beta.
  • Add optional metadata to factors.

Twiml

  • Add new Polly Neural voices

[2022-02-09] Version 6.34.0

Library - Fix

... (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
  • d553800 Release 6.35.1
  • 263c6a7 [Librarian] Regenerated @ a1917d1944f22571f6058f60324ccf7d5b133eae
  • 81bb03a chore: push Datadog Release Metric upon deploy success (#722)
  • 9cfb888 Release 6.35.0
  • 1787bfe [Librarian] Regenerated @ f96923c630f48d9ea3cd9bb44a0e00d4222f426c
  • 336cc54 Release 6.34.0
  • 0a270ad [Librarian] Regenerated @ 9f4fd6d7dec4be5db09365d51285d78d42fd2f36
  • d69a2a6 fix: install docs dependencies in separate step (#721)
  • abc9af3 fix: use offset +0000 for iso8601 conversion (#720)
  • ca9b488 Fix: Php 8.1 support (#713)
  • 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 #85.