-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCHANGES.txt
More file actions
152 lines (101 loc) · 3.58 KB
/
Copy pathCHANGES.txt
File metadata and controls
152 lines (101 loc) · 3.58 KB
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
0.3.8 - 2014-06-16
==================
- Add keep alive feature from requests to store
the http session (thanks to Stéphane Planquart)
- Improve error logging (thanks to Stéphane Planquart)
0.3.7 - 2014-04-23
==================
- Change the way we handle status codes and errors, reverse orders which only
returns pure objects when status are mostly ok
0.3.6 - 2014-03-12
==================
- Add Contribution.payment_method_type missing property
0.3.5 - 2014-02-18
==================
- Add DetailPaymentCard.expiration_date_converted property which translate
expiration_date format in pure date python object
0.3.4 - 2014-01-30
==================
- Add DetailPaymentCard resource which is a OneToOne from Contribution to
retrieve payment card information
0.3.2 - 2013-12-16
==================
- Fix AmountField when amount is None
0.3.1 - 2013-11-14
==================
- Add json response when accessible in APIError and DecodeError exceptions
0.3 - 2013-09-17
================
- Add immediate and recurrent contribution, thanks to nidusfr
- Add answer_code and answer_message in Contribution, thanks to splanquart
- Port to Python 3.3, thanks to ebewe
0.2.15 - 2013-06-21
===================
- Add beneficiary attribute to Withdrawal resource
0.2.14 - 2013-06-20
===================
- Add Beneficiary resource
0.2.13 - 2013-06-18
===================
- ``handler`` is now not required in save method if the instance has been retrieved
0.2.12 - 2013-06-05
===================
- Fix inherited models representations
- Add related_name for all foreign keys
- Provide a way to override urls when processing api requests.
- Add OneToOneField for StrongAuthentication
- Add request_error signal
- Laps timing is now sent in request_finished signal
0.2.11 - 2013-05-29
===================
- Add support for date < 1900 with safe converter
0.2.10 - 2013-05-05
===================
- Rewrite exceptions handling
0.2.9 - 2013-05-04
==================
- Catch ConnectionError when connection is reset by peer
0.2.8 - 2013-04-30
==================
- Add DateField for User.birthday attribute
- Add choices and default attributes to Field class
0.2.7 - 2013-04-18
==================
- Add model inheritance in ApiObjectBase
0.2.6.1 - 2013-04-18
====================
- Fix typo in WithdrawalContribution for amount_declared
0.2.6 - 2013-04-17
==================
- Added WithdrawalContribution resource
0.2.5 - 2013-04-15
==================
- Signals handling via blinker
- Added **request_finished** signal to add a callback when a request is finished
- Added **request_started** signal to add a callback when a request is starting
- Added **pre_save** signal to add a callback when a new resource will be created
- Added **post_save** signal to add a callback when a new resource is created
0.2.4 - 2012-07-24
==================
- Added **culture** parameter to Contribution to specify the language
used in payment.
0.2.3 - 2012-07-23
==================
- Added time between the beginning and the end of the requests in logger.
0.2.2 - 2012-06-28
==================
- Removed imports in `__init__.py`, use modules instead.
0.2.1 - 2012-06-20
==================
- Added **type** attribute in Contribution resource to set the type of the
transacti n.
0.2 - 2012-02-03
================
- Added better support for handling errors.
- Added new resources: PaymentCard, TransferRefund, Refund.
- Added **host** optional parameter to LeetchiAPI object.
- Fix bugs: reuse the timestamp to generate host and auth signature.
- Added AmountField and its descriptor to convert cts.
0.1 - 2011-11-09
================
- Initial release