Skip to content

Version 2.12.0

Compare
Choose a tag to compare
@aaron-junot aaron-junot released this 12 Mar 22:44

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

  1. If you are using the Recurly_ExportFile class, you must now use getDownloadUrl() 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.

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