forked from recurly/recurly-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
335 lines (211 loc) · 9.85 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
## Unreleased
#
## Version 2.6.2 – November 9, 2017 ##
- Fix SSRF vuln in Resource.get
## Version 2.6.1 October 26, 2017
- Added missing attributes on Delivery resource
## Version 2.6.0 October 12, 2017
- imported_trial flag on Subscription
- Purchases endpoint
- Support multiple suberrors per field in ValidationError
### Upgrade Notes
This release will upgrade us to API version 2.8. There is one breaking change:
When more than one error appears for a given key, the value will become a list. See
[PR](https://github.com/recurly/recurly-client-python/pull/208) and the [original issue](https://github.com/recurly/recurly-client-python/issues/197)
for more details.
## Version 2.5.1 – November 9, 2017 ##
- Fix SSRF vuln in Resource.get
## Version 2.5.0 April 17, 2017
- Remove parsing of X-Records header
- Cardless Free Trial changes for 2.6
### Upgrade Notes
This release will upgrade us to API version 2.6. There are two breaking changes:
1. Since the X-Records header was removed in the pagination endpoint, you can no longer call `len()` on a Page and expect it to return a cached response.
From now on you need to explicitly call the `count()` class method on a Page. See [PR #202](https://github.com/recurly/recurly-client-python/pull/202) for more information.
2. For `POST /v2/subscriptions` Sending `None` for `total_billing_cycles` attribute will now override plan `total_billing_cycles` setting and will make subscription renew forever.
Omitting the attribute will cause the setting to default to the value of plan `total_billing_cycles`.
## Version 2.4.5 – November 9, 2017 ##
- Fix SSRF vuln in Resource.get
## Version 2.4.4 March 23, 2017
- Add API version 2.5 changes
## Version 2.4.3 February 6, 2017
- Add canceled_at, preview, and redeem-on-account support for gift cards
- Add timestamps to `MeasuredUnit`
- Add Account acquisition endpoint
- Add cached rate limiting headers
- Add canceled at, preview, and redeem-on-account support to gift cards
## Version 2.4.2 September 12, 2016
- Add ability to create shipping address on existing account
## Version 2.4.1 August 30, 2016
- Shipping address support
## Version 2.4.0 August 18, 2016
- Fix revenue schedule typo
- Remove old python references from readme
- Gift card support, bumps to api v 2.4
- Add updated_at fields
## Version 2.3.1 – November 9, 2017 ##
- Fix SSRF vuln in Resource.get
## Version 2.3.0 July 6, 2016
- Adding variable for api version in fixtures
- Adding `usage_percentage` and `optional` to `AddOn`
- Upgrade API to version 2.3
## Version 2.2.22 – November 9, 2017 ##
- Fix SSRF vuln in Resource.get
## Version 2.2.21 June 29, 2016
- Adding `collection_path` to `MeasuredUnit`
- Adding `TransactionError` parsing inside `ValidationError`
## Version 2.2.20 May 23, 2016
- Add `ConfigurationException` when API_KEY or SUBDOMAIN is unicode
- Add transaction_error_code property to ValidationError class
- Fix apply timeout to connection object
- Add python 3.5 to travis tests
- Add fraud info if available on `Transaction`
- Add Usage Based Billing
- Add generator comprehensions in js module
- Add Free Trial Coupons
## Version 2.2.19 February 22, 2016
- Added `currency` attribute to the `BillingInfo` class
## Version 2.2.18 February 11, 2016
- Add `mark_failed` API call to `Invoice`
- Add the python version to the user agent string
- Fix the `delete_url` on the Redemption class by removing the override
- Add support for `cc_emails` attribute in `Account` class
- Remove AttributeError when trying to print ValidationError in Python 3
- Remove _ValidatedHTTPSConnection in favor of native functionality
- Add collection_method and net_terms attributes for invoice calls
## Version 2.2.17 October 2, 2015
- Add support for bulk coupons and coupon code generation
- Add support for editing and restoring coupons
## Version 2.2.16 September 30, 2015
- Remove TLS 1.0 flag allowing proper TLS negotiation
- Fix recursive call to `str(self)` in python 3
## Version 2.2.15 August 31, 2015
- Add `coupon_codes` to `Subscription`
- Adding `setup_fee_accounting_code` to `Plan`
- Add `total_billing_cycles` to `Plan`
- Add `redemption_resource` to `Coupon`
- Adding X-Api-Version support
- Setting X-Api-Version to 2.1
- Adding `redemptions` to `Account`
- Adding `redemptions` to `Invoice`
- Adding `uuid` to `CouponRedemption`
- Add `applies_to_non_plan_charges` to `Coupon`
## Version 2.2.14 August 10, 2015
- Add `gateway_error_code` to `TransactionError`
## Version 2.2.13 July 31, 2015
- Require a version of six library >= 1.4.0
- Add `tax_exempt`, `tax_code`, `accounting_code` to `Transaction`
- Add `duration` to `Coupon`
- Add `temporal_unit` to `Coupon`
- Add `temporal_amount` to `Coupon`
## Version 2.2.12 June 25, 2015
- Add `ip_address` to `Transaction`
- Add `closed_at` to `Invoice`
- Add `refund_apply_order` to `Invoice` for specifying credits or transactions
to be refunded first
## Version 2.2.11 May 6, 2015
- Add `bank_account_authorized_at` to `Subscription`
## Version 2.2.10 April 28, 2015
- Add `tax_type`, `tax_rate`, `tax_region` to `Adjustment`
- Added `bank_account` type and attributes to `BillingInfo`, these include:
- `name_on_account`
- `account_type` (`checking` or `savings`)
- `last_four`
- `routing_number`
## Version 2.2.9 February 6, 2015
- Added `original_adjustment()` to `Adjustment` for retrieving the linked
adjustment where the other came from for better accounting purposes
## Version 2.2.8 January 27, 2015
- Added address attribute into preview calls and update invoice notes path
- Added tests for new read-only attribute `vat_location_valid` on `Account`
- Added `invoice_number_prefix` and `invoice_number_with_prefix()` on
`Invoice` for use with the Country Invoice Sequencing feature
- Added support for update_notes path on Subscription
- Added `refund_amount` (open amount refunds) to `Invoice`
- Added `refund` (line item refunds) to `Invoice`
## Version 2.2.7 December 8, 2014
- Added ability to read and write invoice notes
- Added `tax_code` to `plan`, `add_ons`, and `adjustment`
- Added inspection on the details of a `transaction`: `transaction.details`
and `transaction.transaction_error`
- Removed support for SSLv3
## Version 2.2.6 October 31, 2014
- Bug fix: `subscription.invoice` now returns the invoice for subscription
change previewing
## Version 2.2.5 October 21, 2014
- Added invoice previews: `account.build_invoice()`
## Version 2.2.4 September 9, 2014
- Added account entity use code: `account.entity_use_code`
- Added bulk parameter
- Added billing agreement support to BillingInfo
## Version 2.2.3 August 5, 2014
- Added subscription change preview
- Added `remaining_billing_cycles` to subscriptions
## Version 2.2.2 June 25, 2014
- Added subscription preview: `subscription.preview()`
## Version 2.2.1 June 6, 2014
- Added tests for `invoice_description`
## Version 2.2.0 May 14, 2014
- Added tax details to adjustments: `adjustment.tax_details`
- Removed `taxable` support on adjustments
- Added `tax_exempt` to accounts, adjustments and plans
- Added `tax_rate`, `tax_type` to invoices and subscriptions
- Added `tax_in_cents` to subscriptions
## Version 2.1.16 – November 9, 2017 ##
- Fix SSRF vuln in Resource.get
## Version 2.1.15 April 8, 2014
- Added token_id support to BillingInfo
## Version 2.1.14 April 8, 2014
- Added support for downloading invoices as PDF
- Bug fix: set timeout specific to Recurly module
## Version 2.1.13 February 20, 2014
- Bug fix: Adjustment.get(uuid) now supported
## Version 2.1.12 July 25, 2013
- Added vat_number on Account Object
- Added fields for account level addresses
## Version 2.1.11 - July 2, 2013
- Added support for manual invoicing fields
## Version 2.1.10 - June 14, 2013 ##
- Bug fix: recurly.js.fetch should use base_uri function
## Version 2.1.3 – May 3, 2013 ##
- Added support for querying notes on an account
## Version 2.1.3 – July 16, 2012 ##
- Allow verification of HTTPS certificates when CA certificates are provided.
## Version 2.1.2 – June 29, 2012 ##
- Properly handle refunding transactions.
- Provide access to plan codes for Coupon resources.
- Package the library with setuptools and include tests in the distribution.
## Version 2.1.1 – March 26, 2012 ##
- Properly handle unicode strings in resource values.
- Apply requested filters when requesting lists (such as
`account.adjustments(type='credit')`).
## Version 2.1.0 – March 13, 2012 ##
- Updated to use Recurly.js 2.1.
- Raise clearer `PageError` exception when trying to traverse to a pagination
page that doesn't exist.
- Add missing docstring for `Page.page_for_value()` method.
## Version 2.0.5 – November 9, 2017 ##
- Fix SSRF vuln in Resource.get
## Version 2.0.4 – January 6, 2012 ##
- Complete Recurly.js v2 support by adding missing `sign_subscription()` function.
- Fix access to Subscriptions' add-on amounts, which were erroneously `Money`
instances instead of integers.
- Add missing `reopen()` method to `Account` instances.
- Improve the message for the error when the API key is not set or incorrect.
## Version 2.0.3 – December 20, 2011 ##
- Send only fields that have changed when updating resources.
- Subscriptions' plan codes are now available in the `plan_code` attribute.
- Pending updates to a Subscription are accessible in its `pending_subscription` attribute.
## Version 2.0.2 – November 4, 2011 ##
- Fixed recurly.js function to sign requests for transactions without existing accounts.
- Fixed bug importing the recurly.js module in the documented way.
- Added missing function to support push notifications.
## Version 2.0.1 – October 27, 2011 ##
- Additional support for subscription and transaction interfaces.
## Version 2.0.0 – October 25, 2011 ##
- Support for v2 API with a new object-oriented interface.
## Version 1.2 – March 11, 2010 ##
- Added 'subdomain' parameter
- Fix authentication header if the username long
## Version 1.1 – February 23, 2010 ##
- Initial release