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.