Skip to content

Releases: Vonage/vonage-php-sdk-core

1.3.0-beta

26 Feb 19:47
Compare
Choose a tag to compare
1.3.0-beta Pre-release
Pre-release
  • Initial Stitch support

1.2.1

07 Jan 21:46
Compare
Choose a tag to compare
  • Add getCost() support to Number objects - thanks @arubacao!

1.2.0

19 Dec 20:04
5a8229f
Compare
Choose a tag to compare
  • Add support for auto-topup
  • Add support for submitting SMS/Voice conversions to Nexmo

1.1.3

22 Nov 14:51
Compare
Choose a tag to compare
  • Fix User-Agent header to use Title-Case
  • Update VERSION constant in Client.php

1.1.2

12 Nov 10:06
Compare
Choose a tag to compare
  • Add ability to specify additional parameters when searching numbers that you own

v1.1.1

17 Oct 11:45
Compare
Choose a tag to compare
  • Fix issue with PUT /call where the endpoint may return a 204 response with no body payload

v1.1.0

28 Sep 15:33
Compare
Choose a tag to compare

Added the following functionality:

  • Support for downloading call recordings
  • Search available numbers
  • Purchase number
  • Cancel number
  • Search SMS rejections
  • Number insights standard/advanced support

v1.0.0

28 Sep 15:30
Compare
Choose a tag to compare
Merge master->develop for 1.0.0 release

Beta 4 - More Call API Support

10 Apr 01:51
Compare
Choose a tag to compare
Pre-release

🔨 Changed how underlying collection / resource concepts are applied:

  • Moving to both collections and resources being client aware.
  • Moving away from the concept of each API having a 'client' (now represented by collections / resources)

✨ Added live call support:

$call->stream->setUrl($url);
$call->stream->put();
Need to add fluent interface, and some convience methods.

✨ Can pass arbitrary data to JWT generation:

Per general spec (#22)

🔨 Update of signature generation:

Based on changes to the API: #29

Beta 3 - New APIs!

14 Sep 03:44
Compare
Choose a tag to compare
Beta 3 - New APIs! Pre-release
Pre-release

Adds support for:
Applications:

  • Create an application using an array, or an application entity.
  • Iterate over applications (with automatic paging).
  • Update and delete applications using string UUIDs and arrays, or the richer entity support.

Numbers:

  • Get and update an owned number.
  • No support for listing owned numbers, or buying numbers in this release.
  • Does support associating a number with an application.

Calls:

  • Supports creating calls with the new voice API. Can use rich entities or array structures.
  • Get individual calls using their UUID.
  • No support for iterating over the calls collection, or manipulating live calls in this release.

JWTs:

  • Adds a new Keypair credential, used to generate JWTs.
  • Allows multiple credentials to be used at the same time, client understands that JWTs must be used for the new Voice API.