client-quickstart-php
client-quickstart-php copied to clipboard
Bump twilio/sdk from 6.22.0 to 7.3.0
Bumps twilio/sdk from 6.22.0 to 7.3.0.
Release notes
Sourced from twilio/sdk's releases.
7.3.0
Release Notes
Library - Docs
- [PR #775](twilio/twilio-php#775): consolidate. Thanks to
@stern-shawn
!Messaging
- Remove
messaging_service_sids
andmessaging_service_sid_action
from domain config endpoint (breaking change)- Add error_code and rejection_reason properties to tollfree verification API response
Numbers
- Added the new Eligibility API under version
/v1
.7.2.0
Release Notes
Conversations
- Expose query parameters
start_date
,end_date
andstate
in list operation on Conversations resource for sorting and filteringInsights
- Added answered by filter in Call Summaries
Lookups
- Remove
disposable_phone_number_risk
package (breaking change)Messaging
- Add support for
SOLE_PROPRIETOR
brand type andSOLE_PROPRIETOR
campaign use case.- New Sole Proprietor Brands should be created with
SOLE_PROPRIETOR
brand type. Brand registration requests withSTARTER
brand type will be rejected.- New Sole Proprietor Campaigns should be created with
SOLE_PROPRIETOR
campaign use case. Campaign registration requests withSTARTER
campaign use case will be rejected.- Add Brand Registrations OTP API
7.1.0
Release Notes
Api
- Revert Corrected the data type for
friendly_name
in Available Phone Number Local, Mobile and TollFree resources- Corrected the data type for
friendly_name
in Available Phone Number Local, Mobile and TollFree resources (breaking change)Messaging
- Add
linkshortening_messaging_service
resource- Add new endpoint for GetDomainConfigByMessagingServiceSid
- Remove
validated
parameter and addcert_in_validation
parameter to Link Shortening API (breaking change)
... (truncated)
Changelog
Sourced from twilio/sdk's changelog.
[2023-04-19] Version 7.3.0
Library - Docs
- [PR #775](twilio/twilio-php#775): consolidate. Thanks to
@stern-shawn
!Messaging
- Remove
messaging_service_sids
andmessaging_service_sid_action
from domain config endpoint (breaking change)- Add error_code and rejection_reason properties to tollfree verification API response
Numbers
- Added the new Eligibility API under version
/v1
.[2023-04-05] Version 7.2.0
Conversations
- Expose query parameters
start_date
,end_date
andstate
in list operation on Conversations resource for sorting and filteringInsights
- Added answered by filter in Call Summaries
Lookups
- Remove
disposable_phone_number_risk
package (breaking change)Messaging
- Add support for
SOLE_PROPRIETOR
brand type andSOLE_PROPRIETOR
campaign use case.- New Sole Proprietor Brands should be created with
SOLE_PROPRIETOR
brand type. Brand registration requests withSTARTER
brand type will be rejected.- New Sole Proprietor Campaigns should be created with
SOLE_PROPRIETOR
campaign use case. Campaign registration requests withSTARTER
campaign use case will be rejected.- Add Brand Registrations OTP API
[2023-03-22] Version 7.1.0
Api
- Revert Corrected the data type for
friendly_name
in Available Phone Number Local, Mobile and TollFree resources- Corrected the data type for
friendly_name
in Available Phone Number Local, Mobile and TollFree resources (breaking change)Messaging
- Add
linkshortening_messaging_service
resource- Add new endpoint for GetDomainConfigByMessagingServiceSid
- Remove
validated
parameter and addcert_in_validation
parameter to Link Shortening API (breaking change)[2023-03-09] Version 7.0.0
Note: This release contains breaking changes, check our upgrade guide for detailed migration notes.
Library - Feature
- [PR #771](twilio/twilio-php#771): Merge branch '7.0.0-rc' to main. Thanks to
@charan678
! (breaking change)
... (truncated)
Upgrade guide
Sourced from twilio/sdk's upgrade guide.
Upgrade Guide
MAJOR version bumps will have upgrade notes posted here.
[2023-03-08] 6.x.x to 7.x.x
Twilio Php Helper Library’s major version 7.0.1 is now available. We ensured that you can upgrade to Php helper Library 7.0.1 version without any breaking changes. Behind the scenes Php 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-04-15] 6.2.x to 6.3.x
CHANGED - Optional header parameters added to
Authy
endpointsCustom headers are now supported in
twilio-php
. The addition of these optional parameters have caused a breaking change to theread
,page
, andstream
functions forEntity
,Service
, andFactor
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);
[2020-02-19] 5.x.x to 6.x.x
Overview
Version
6.x.x
is the first version that officially drops support for Php versions 5.5, 5.6, 7.0, and 7.1.Removal and updates to support removing Php versions 5.5, 5.6, 7.0, and 7.1:
- Drop 'array()' syntax and add return types
- Drop 'array()' syntax and add return types in generated code
- Add scalar param type declarations
- Add scalar param type declarations to generated code
- Drop support for end of life Php versions
CHANGED - Added Return and Parameter Types
A TypeError may now be thrown if you pass an incompatible type into a php helper library function or if you depend on an incompatible return type from a Php helper library function.
... (truncated)
Commits
db64f7b
Release 7.3.050b6d54
[Librarian] Regenerated @ 09a1ab1da70c180f61d4cf900865abf7d89eaa323d1712f
docs: consolidate (#775)11271c6
Release 7.2.0179cda0
[Librarian] Regenerated @ bb1ac274ed061aeecd32f3c2c4226d23c9c910ce098e1a3
Release 7.1.03eb4719
[Librarian] Regenerated @ 063fefeb406fa3d6866703c240040a1e9146ca750cab797
Release 7.0.017e2f9b
[Librarian] Regenerated @ 05bdd0133313ac71fd55c97753894743b8f3cad97ab4bbe
feat!: Merge branch '7.0.0-rc' to main (#771)- 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 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)