Released on July 2, 2012
- Fix an issue introduced in the 3.5.0 release that would cause a second HTTP request for an instance resource to request an incorrect URI.
Released on June 30, 2012
- Support paging through resources using the
next_page_uri
parameter instead of manually constructing parameters using thePage
andPageSize
parameters. Specifically, this allows the library to use theAfterSid
parameter, which leads to improved performance when paging deep into your resource list.
This involved a major refactor of the library. The documented interface to twilio-php will not change. However, some undocumented public methods are no longer supported. Specifically, the following classes are no longer available:
Services/Twilio/ArrayDataProxy.php
Services/Twilio/CachingDataProxy.php
Services/Twilio/DataProxy.php
In addition, the following public methods have been removed:
-
setProxy
, inServices/Twilio/InstanceResource.php
-
getSchema
, inServices/Twilio/ListResource.php
,Services/Twilio/Rest/AvailablePhoneNumbers.php
,Services/Twilio/Rest/SMSMessages.php
-
retrieveData
, inServices/Twilio/Resource.php
-
deleteData
, inServices/Twilio/Resource.php
-
addSubresource
, inServices/Twilio/Resource.php
Please check your own code for compatibility before upgrading.
Released on May 3, 2012
- If you pass booleans in as TwiML (ex transcribe="true"), convert them to the strings "true" and "false" instead of outputting the incorrect values 1 and "".
Released on May 1, 2012
- Use the 'Accept-Charset' header to specify we want to receive UTF-8 encoded data from the Twilio API. Remove unused XML parsing logic, as the library never requests XML data.
Released on March 14, 2012
- If no version is passed to the Services_Twilio constructor, the library will default to the most recent API version.