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.34.0 #82

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps twilio/sdk from 5.7.3 to 6.34.0.

Release notes

Sourced from twilio/sdk's releases.

6.34.0

Release Notes

Library - Fix

Api

  • Add stream resource

Conversations

  • Fixed DELETE request to accept "sid_like" params in Address Configuration resources (breaking change)
  • Expose Address Configuration resource for sms and whatsapp

Fax

  • Removed deprecated Programmable Fax Create and Update methods (breaking change)

Insights

  • Rename call_state to call_status and remove whisper in conference participant summary (breaking change)

Numbers

  • Expose valid_until filters as part of provisionally-approved compliance feature on the List Bundles resource

Supersim

  • Fix typo in Fleet resource docs
  • Updated documentation for the Fleet resource indicating that fields related to commands have been deprecated and to use sms_command fields instead.
  • Add support for setting and reading ip_commands_url and ip_commands_method on Fleets resource for helper libraries
  • Changed sim property in requests to create an SMS Command made to the /SmsCommands to accept SIM UniqueNames in addition to SIDs

Verify

  • Update list attempts API to include new filters and response fields.

Docs

6.33.1

Release Notes

Insights

  • Added new endpoint to fetch Conference Participant Summary
  • Added new endpoint to fetch Conference Summary

Messaging

  • Add government_entity parameter to brand apis

Verify

  • Add Access Token fetch endpoint to retrieve a previously created token.

... (truncated)

Changelog

Sourced from twilio/sdk's changelog.

[2022-02-09] Version 6.34.0

Library - Fix

Api

  • Add stream resource

Conversations

  • Fixed DELETE request to accept "sid_like" params in Address Configuration resources (breaking change)
  • Expose Address Configuration resource for sms and whatsapp

Fax

  • Removed deprecated Programmable Fax Create and Update methods (breaking change)

Insights

  • Rename call_state to call_status and remove whisper in conference participant summary (breaking change)

Numbers

  • Expose valid_until filters as part of provisionally-approved compliance feature on the List Bundles resource

Supersim

  • Fix typo in Fleet resource docs
  • Updated documentation for the Fleet resource indicating that fields related to commands have been deprecated and to use sms_command fields instead.
  • Add support for setting and reading ip_commands_url and ip_commands_method on Fleets resource for helper libraries
  • Changed sim property in requests to create an SMS Command made to the /SmsCommands to accept SIM UniqueNames in addition to SIDs

Verify

  • Update list attempts API to include new filters and response fields.

[2022-01-26] Version 6.33.1

Insights

  • Added new endpoint to fetch Conference Participant Summary
  • Added new endpoint to fetch Conference Summary

Messaging

  • Add government_entity parameter to brand apis

Verify

  • Add Access Token fetch endpoint to retrieve a previously created token.
  • Add Access Token payload to the Access Token creation endpoint, including a unique Sid, so it's addressable while it's TTL is valid.

[2022-01-12] Version 6.33.0

... (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
  • 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)
  • 54aec58 chore: make Slack message consistent across all repos
  • f353d06 fix: use offset +0000 for iso8601 conversions (#719)
  • 3024498 fix: install and remove phpdox as required (#718)
  • 569441b Release 6.33.1
  • b927cef [Librarian] Regenerated @ 8a2e951f4fb6857d0989e8d2fded7c757e2ef2d4
  • 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 #83.