Skip to content

Latest commit

 

History

History
290 lines (187 loc) · 7.97 KB

CHANGES.md

File metadata and controls

290 lines (187 loc) · 7.97 KB

twilio-php Changelog

Version 3.12.8

Released on December 4, 2014

  • Add support for the new Addresses endpoints.

Version 3.12.7

Released on November 21, 2014

  • Add support for the new Tokens endpoint

Version 3.12.6

Released on November 13, 2014

  • Add support for redacting Messages and deleting Messages or Calls
  • Remove pinned SSL certificates

Version 3.12.5

Released on July 15, 2014

  • Changed the naming of the SIP class to comply with PSR-0

Version 3.12.4

Released on January 30, 2014

  • Fix incorrect use of static:: which broke compatibility with PHP 5.2.

Version 3.12.3

Released on January 28, 2014

  • Add link from recordings to associated transcriptions.
  • Document how to debug requests, improve TwiML generation docs.

Version 3.12.2

Released on January 5, 2014

  • Fixes string representation of resources
  • Support PHP 5.5

Version 3.12.1

Released on October 21, 2013

  • Add support for filtering by type for IncomingPhoneNumbers.
  • Add support for searching for mobile numbers for both IncomingPhoneNumbers and AvailablePhoneNumbers.

Version 3.12.0

Released on September 18, 2013

  • Support MMS

  • Support SIP In

  • $params arrays will now turn lists into multiple HTTP keys with the same name,

      array("Twilio" => array('foo', 'bar'))
    

    will turn into Twilio=foo&Twilio=bar when sent to the API.

  • Update the documentation to use php-autodoc and Sphinx.

Version 3.11.0

Released on June 13

  • Support Streams when curl is not available for PHP installations

Version 3.10.0

Released on February 2, 2013

Version 3.9.1

Released on December 30, 2012

Version 3.9.0

Released on December 20, 2012

Version 3.8.3

Released on December 15, 2012

Version 3.8.2

Released on November 26, 2012

Version 3.8.1

Released on November 23, 2012

Internally:

Version 3.8.0

Released on October 17, 2012

Version 3.7.2

Version 3.7.1

Released on August 16, 2012

Version 3.7.0

Released on August 6, 2012

  • Add retry support for idempotent HTTP requests that result in a 500 server error (default is 1 attempt, however this can be configured).
  • Throw a Services_Twilio_RestException instead of a DomainException if the response content cannot be parsed as JSON (usually indicates a 500 error)

Version 3.6.0

Released on August 5, 2012

  • Add support for Queues and Members. Includes tests and documentation for the new functionality.

Version 3.5.2

Released on July 23, 2012

Version 3.5.1

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.

Version 3.5.0

Released on June 30, 2012

  • Support paging through resources using the next_page_uri parameter instead of manually constructing parameters using the Page and PageSize parameters. Specifically, this allows the library to use the AfterSid 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, in Services/Twilio/InstanceResource.php

  • getSchema, in Services/Twilio/ListResource.php, Services/Twilio/Rest/AvailablePhoneNumbers.php, Services/Twilio/Rest/SMSMessages.php

  • retrieveData, in Services/Twilio/Resource.php

  • deleteData, in Services/Twilio/Resource.php

  • addSubresource, in Services/Twilio/Resource.php

Please check your own code for compatibility before upgrading.

Version 3.3.2

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 "".

Version 3.3.1

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.

Version 3.2.4

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.