Releases: recurly/recurly-client-python
Releases · recurly/recurly-client-python
Version 2.5.0 April 17, 2017
Upgrade Notes
This release will upgrade us to API version 2.6. There are two breaking changes:
- To speed up your listing requests we’re no long automatically computing the record counts for each requests. For our larger sites this could halve the response time. If you still need a count it will be computed with a separate request. You can no longer use
len()
on aPage
. From now on you must explicitly call thecount()
class method on a Page. See PR #202 for more information. - For
POST /v2/subscriptions
SendingNone
fortotal_billing_cycles
attribute will now override plantotal_billing_cycles
setting and will make subscription renew forever.
Omitting the attribute will cause the setting to default to the value of plantotal_billing_cycles
.
Version 2.4.4 March 23, 2017
- Add API version 2.5 changes #195
Version 2.4.3 February 6th, 2017
Version 2.4.2 September 12th, 2016
- Add ability to create shipping address on existing account PR
Version 2.4.1 August 30th, 2016
- Shipping Address Support PR
Version 2.4.0 August 18th, 2016
Version 2.3.0 July 6, 2016
Version 2.2.21 June 29, 2016
Version 2.2.20 May 23, 2016
- Add
ConfigurationException
when API_KEY or SUBDOMAIN is unicode #141 - Add transaction_error_code property to ValidationError class #158
- Fix timeout on connection object #166
- Add python 3.5 to travis tests #159
- Add fraud info if available on
Transaction
#165 - Add Usage Based Billing #161
- Add generator comprehensions in js module #160
- Add Free Trial Coupons #164
Version 2.2.19 February 22, 2016
- Added
currency
attribute to theBillingInfo
class #153