Releases: recurly/recurly-client-php
Releases · recurly/recurly-client-php
Version 2.12.1
Version 2.12.1 (March 15th, 2019)
- Fix issue with _verifyUri PR
Version 2.12.0
Version 2.12.0 (March 12th, 2019)
This brings us up to API version 2.19
Note: This version contains a bug with the _verifyUri method. Please use 2.12.1 instead.
- Adds support for Account Hierarchy PR
- Ensure that the client can only connect to recurly domains to improve security 878e844
Upgrade Notes
- If you are using the
Recurly_ExportFile
class, you must now usegetDownloadUrl()
to get the download url rather than accessing this property directly.
# if you are accessing the download url directly
$url = $export_file->download_url;
# you'll now need to use a getter
$url = $export_file->getDownloadUrl();
If you are using $export_file->download($fp)
and not accessing the url directly, you should not be affected.
- If your test environment changes the Recurly_Client->$apiUrl property, it will no longer work due to domain whitelisting. For a workaround, please see this conversation.
Version 2.11.2
Version 2.11.1
Version 2.11.0
Version 2.11.0 (December 11th, 2018)
This release will upgrade us to API version 2.17.
- Add
gateway_code
to Subscription and Invoice objects PR - Add
exemption_certificate
to Account object PR - Remove deprecated JS module PR
- Add
getHeaders()
method PR - Add OpenSSL version to user agent PR
Upgrade Notes
This release contains one breaking change. Older Recurly.js token signing is not longer supported. You should upgrade to version 4 of Recurly.js: https://dev.recurly.com/docs/recurlyjs
Version 2.10.6
Version 2.10.6 (October 30th, 2018)
This release will upgrade us to API version 2.16. There are no breaking changes.
Version 2.10.5
Version 2.10.4
Version 2.10.3
Version 2.10.2
This release will upgrade us to API version 2.12. There are no breaking changes.
- API Version 2.12 #348