activemerchant 1.2.1 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (206) hide show
  1. data.tar.gz.sig +0 -0
  2. data/CHANGELOG +310 -294
  3. data/CONTRIBUTERS +13 -0
  4. data/README +55 -31
  5. data/Rakefile +21 -13
  6. data/lib/active_merchant.rb +7 -0
  7. data/lib/active_merchant/billing/avs_result.rb +95 -0
  8. data/lib/active_merchant/billing/base.rb +8 -3
  9. data/lib/active_merchant/billing/check.rb +61 -0
  10. data/lib/active_merchant/billing/credit_card.rb +104 -80
  11. data/lib/active_merchant/billing/credit_card_formatting.rb +11 -8
  12. data/lib/active_merchant/billing/credit_card_methods.rb +76 -32
  13. data/lib/active_merchant/billing/cvv_result.rb +38 -0
  14. data/lib/active_merchant/billing/expiry_date.rb +28 -0
  15. data/lib/active_merchant/billing/gateway.rb +47 -111
  16. data/lib/active_merchant/billing/gateways/authorize_net.rb +508 -121
  17. data/lib/active_merchant/billing/gateways/bogus.rb +26 -32
  18. data/lib/active_merchant/billing/gateways/brain_tree.rb +82 -70
  19. data/lib/active_merchant/billing/gateways/card_stream.rb +43 -15
  20. data/lib/active_merchant/billing/gateways/cyber_source.rb +9 -29
  21. data/lib/active_merchant/billing/gateways/data_cash.rb +18 -38
  22. data/lib/active_merchant/billing/gateways/efsnet.rb +23 -50
  23. data/lib/active_merchant/billing/gateways/eway.rb +8 -19
  24. data/lib/active_merchant/billing/gateways/exact.rb +17 -25
  25. data/lib/active_merchant/billing/gateways/linkpoint.rb +18 -25
  26. data/lib/active_merchant/billing/gateways/moneris.rb +9 -39
  27. data/lib/active_merchant/billing/gateways/net_registry.rb +113 -182
  28. data/lib/active_merchant/billing/gateways/netbilling.rb +168 -0
  29. data/lib/active_merchant/billing/gateways/pay_junction.rb +52 -73
  30. data/lib/active_merchant/billing/gateways/pay_secure.rb +120 -0
  31. data/lib/active_merchant/billing/gateways/payflow.rb +13 -14
  32. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +55 -37
  33. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +4 -0
  34. data/lib/active_merchant/billing/gateways/payflow_express.rb +2 -4
  35. data/lib/active_merchant/billing/gateways/payment_express.rb +11 -30
  36. data/lib/active_merchant/billing/gateways/paypal.rb +3 -14
  37. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +36 -16
  38. data/lib/active_merchant/billing/gateways/paypal_express.rb +1 -2
  39. data/lib/active_merchant/billing/gateways/plugnpay.rb +7 -15
  40. data/lib/active_merchant/billing/gateways/protx.rb +24 -25
  41. data/lib/active_merchant/billing/gateways/psigate.rb +34 -71
  42. data/lib/active_merchant/billing/gateways/psl_card.rb +24 -19
  43. data/lib/active_merchant/billing/gateways/quickpay.rb +10 -24
  44. data/lib/active_merchant/billing/gateways/realex.rb +7 -19
  45. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +113 -0
  46. data/lib/active_merchant/billing/gateways/skip_jack.rb +437 -0
  47. data/lib/active_merchant/billing/gateways/trans_first.rb +5 -14
  48. data/lib/active_merchant/billing/gateways/trust_commerce.rb +100 -39
  49. data/lib/active_merchant/billing/gateways/usa_epay.rb +60 -55
  50. data/lib/active_merchant/billing/gateways/verifi.rb +32 -39
  51. data/lib/active_merchant/billing/gateways/viaklix.rb +31 -37
  52. data/lib/active_merchant/billing/integrations.rb +2 -0
  53. data/lib/active_merchant/billing/integrations/bogus.rb +5 -0
  54. data/lib/active_merchant/billing/integrations/bogus/return.rb +10 -0
  55. data/lib/active_merchant/billing/integrations/chronopay.rb +5 -0
  56. data/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
  57. data/lib/active_merchant/billing/integrations/gestpay.rb +5 -0
  58. data/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
  59. data/lib/active_merchant/billing/integrations/hi_trust.rb +26 -0
  60. data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +58 -0
  61. data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +57 -0
  62. data/lib/active_merchant/billing/integrations/hi_trust/return.rb +67 -0
  63. data/lib/active_merchant/billing/integrations/nochex.rb +5 -0
  64. data/lib/active_merchant/billing/integrations/nochex/return.rb +10 -0
  65. data/lib/active_merchant/billing/integrations/paypal.rb +5 -0
  66. data/lib/active_merchant/billing/integrations/paypal/return.rb +10 -0
  67. data/lib/active_merchant/billing/integrations/return.rb +35 -0
  68. data/lib/active_merchant/billing/integrations/two_checkout.rb +5 -0
  69. data/lib/active_merchant/billing/integrations/two_checkout/return.rb +17 -0
  70. data/lib/active_merchant/billing/response.rb +12 -8
  71. data/lib/active_merchant/lib/posts_data.rb +39 -7
  72. data/lib/active_merchant/lib/requires_parameters.rb +2 -3
  73. data/lib/active_merchant/lib/utils.rb +18 -0
  74. data/lib/active_merchant/lib/validateable.rb +3 -3
  75. data/lib/support/gateway_support.rb +22 -9
  76. data/script/destroy +14 -0
  77. data/script/generate +7 -7
  78. data/test/fixtures.yml +25 -3
  79. data/test/remote/gateways/remote_authorize_net_test.rb +145 -0
  80. data/test/remote/gateways/remote_brain_tree_test.rb +118 -0
  81. data/test/{remote_tests → remote/gateways}/remote_card_stream_test.rb +56 -68
  82. data/test/{remote_tests → remote/gateways}/remote_cyber_source_test.rb +21 -32
  83. data/test/{remote_tests → remote/gateways}/remote_data_cash_test.rb +2 -2
  84. data/test/{remote_tests → remote/gateways}/remote_efsnet_test.rb +22 -34
  85. data/test/{remote_tests → remote/gateways}/remote_eway_test.rb +18 -15
  86. data/test/{remote_tests → remote/gateways}/remote_exact_test.rb +20 -19
  87. data/test/{remote_tests → remote/gateways}/remote_linkpoint_test.rb +31 -63
  88. data/test/remote/gateways/remote_moneris_test.rb +82 -0
  89. data/test/{remote_tests → remote/gateways}/remote_net_registry_test.rb +19 -54
  90. data/test/remote/gateways/remote_netbilling_test.rb +70 -0
  91. data/test/{remote_tests → remote/gateways}/remote_pay_junction_test.rb +41 -60
  92. data/test/remote/gateways/remote_pay_secure_test.rb +39 -0
  93. data/test/{remote_tests → remote/gateways}/remote_payflow_express_test.rb +2 -2
  94. data/test/{remote_tests → remote/gateways}/remote_payflow_test.rb +34 -38
  95. data/test/{remote_tests → remote/gateways}/remote_payflow_uk_test.rb +13 -12
  96. data/test/{remote_tests → remote/gateways}/remote_payment_express_test.rb +26 -36
  97. data/test/{remote_tests → remote/gateways}/remote_paypal_express_test.rb +3 -3
  98. data/test/{remote_tests → remote/gateways}/remote_paypal_test.rb +25 -21
  99. data/test/{remote_tests → remote/gateways}/remote_plugnpay_test.rb +18 -16
  100. data/test/{remote_tests → remote/gateways}/remote_protx_test.rb +33 -33
  101. data/test/remote/gateways/remote_psigate_test.rb +50 -0
  102. data/test/{remote_tests → remote/gateways}/remote_psl_card_test.rb +27 -26
  103. data/test/{remote_tests → remote/gateways}/remote_quickpay_test.rb +48 -48
  104. data/test/{remote_tests → remote/gateways}/remote_realex_test.rb +30 -33
  105. data/test/remote/gateways/remote_secure_pay_tech_test.rb +37 -0
  106. data/test/remote/gateways/remote_secure_pay_test.rb +28 -0
  107. data/test/remote/gateways/remote_skipjack_test.rb +105 -0
  108. data/test/{remote_tests → remote/gateways}/remote_trans_first_test.rb +7 -10
  109. data/test/remote/gateways/remote_trust_commerce_test.rb +152 -0
  110. data/test/{remote_tests → remote/gateways}/remote_usa_epay_test.rb +11 -22
  111. data/test/{remote_tests → remote/gateways}/remote_verifi_test.rb +27 -27
  112. data/test/{remote_tests → remote/gateways}/remote_viaklix_test.rb +8 -18
  113. data/test/{remote_tests → remote/integrations}/remote_gestpay_integration_test.rb +1 -1
  114. data/test/{remote_tests → remote/integrations}/remote_paypal_integration_test.rb +1 -1
  115. data/test/test_helper.rb +102 -61
  116. data/test/unit/avs_result_test.rb +59 -0
  117. data/test/unit/base_test.rb +33 -39
  118. data/test/unit/check_test.rb +76 -0
  119. data/test/unit/credit_card_formatting_test.rb +10 -15
  120. data/test/unit/credit_card_methods_test.rb +132 -17
  121. data/test/unit/credit_card_test.rb +157 -228
  122. data/test/unit/cvv_result_test.rb +33 -0
  123. data/test/unit/expiry_date_test.rb +21 -0
  124. data/test/unit/gateways/authorize_net_test.rb +180 -40
  125. data/test/unit/gateways/bogus_test.rb +2 -3
  126. data/test/unit/gateways/brain_tree_test.rb +63 -29
  127. data/test/unit/gateways/card_stream_test.rb +59 -6
  128. data/test/unit/gateways/cyber_source_test.rb +59 -40
  129. data/test/unit/gateways/data_cash_test.rb +82 -1
  130. data/test/unit/gateways/efsnet_test.rb +97 -44
  131. data/test/unit/gateways/eway_test.rb +55 -42
  132. data/test/unit/gateways/exact_test.rb +93 -55
  133. data/test/unit/gateways/gateway_test.rb +7 -0
  134. data/test/unit/gateways/linkpoint_test.rb +60 -58
  135. data/test/unit/gateways/moneris_test.rb +67 -76
  136. data/test/unit/gateways/net_registry_test.rb +351 -419
  137. data/test/unit/gateways/netbilling_test.rb +54 -0
  138. data/test/unit/gateways/pay_junction_test.rb +108 -46
  139. data/test/unit/gateways/pay_secure_test.rb +71 -0
  140. data/test/unit/gateways/payflow_express_test.rb +0 -8
  141. data/test/unit/gateways/payflow_test.rb +136 -65
  142. data/test/unit/gateways/payflow_uk_test.rb +0 -38
  143. data/test/unit/gateways/payment_express_test.rb +31 -51
  144. data/test/unit/gateways/paypal_express_test.rb +8 -2
  145. data/test/unit/gateways/paypal_test.rb +213 -54
  146. data/test/unit/gateways/plugnpay_test.rb +39 -32
  147. data/test/unit/gateways/protx_test.rb +45 -33
  148. data/test/unit/gateways/psigate_test.rb +146 -87
  149. data/test/unit/gateways/psl_card_test.rb +37 -24
  150. data/test/unit/gateways/quickpay_test.rb +33 -46
  151. data/test/unit/gateways/realex_test.rb +32 -31
  152. data/test/unit/gateways/secure_pay_tech_test.rb +44 -0
  153. data/test/unit/gateways/secure_pay_test.rb +35 -26
  154. data/test/unit/gateways/skip_jack_test.rb +125 -0
  155. data/test/unit/gateways/trans_first_test.rb +24 -37
  156. data/test/unit/gateways/trust_commerce_test.rb +47 -26
  157. data/test/unit/gateways/usa_epay_test.rb +52 -41
  158. data/test/unit/gateways/verifi_test.rb +41 -35
  159. data/test/unit/gateways/viaklix_test.rb +38 -32
  160. data/test/unit/generators/test_gateway_generator.rb +46 -0
  161. data/test/unit/generators/test_generator_helper.rb +20 -0
  162. data/test/unit/generators/test_integration_generator.rb +53 -0
  163. data/test/unit/integrations/action_view_helper_test.rb +7 -14
  164. data/test/unit/integrations/bogus_module_test.rb +4 -0
  165. data/test/unit/integrations/chronopay_module_test.rb +4 -0
  166. data/test/unit/integrations/gestpay_module_test.rb +4 -0
  167. data/test/unit/integrations/helpers/hi_trust_helper_test.rb +16 -0
  168. data/test/unit/integrations/hi_trust_module_test.rb +13 -0
  169. data/test/unit/integrations/nochex_module_test.rb +4 -0
  170. data/test/unit/integrations/notifications/hi_trust_notification_test.rb +38 -0
  171. data/test/unit/integrations/paypal_module_test.rb +4 -0
  172. data/test/unit/integrations/returns/chronopay_return_test.rb +11 -0
  173. data/test/unit/integrations/returns/gestpay_return_test.rb +10 -0
  174. data/test/unit/integrations/returns/hi_trust_return_test.rb +24 -0
  175. data/test/unit/integrations/returns/nochex_return_test.rb +10 -0
  176. data/test/unit/integrations/returns/paypal_return_test.rb +10 -0
  177. data/test/unit/integrations/returns/return_test.rb +11 -0
  178. data/test/unit/integrations/returns/two_checkout_return_test.rb +24 -0
  179. data/test/unit/integrations/two_checkout_module_test.rb +4 -0
  180. data/test/unit/posts_data_test.rb +86 -0
  181. data/test/unit/response_test.rb +15 -1
  182. data/test/unit/utils_test.rb +7 -0
  183. data/test/unit/validateable_test.rb +10 -6
  184. metadata +180 -142
  185. metadata.gz.sig +0 -0
  186. data/lib/active_merchant/billing/gateways/paypal/api_cert_chain.crt +0 -35
  187. data/script/generator/base.rb +0 -45
  188. data/script/generator/generator.rb +0 -24
  189. data/script/generator/generators/gateway/gateway_generator.rb +0 -14
  190. data/script/generator/generators/gateway/templates/gateway.rb +0 -73
  191. data/script/generator/generators/gateway/templates/gateway_test.rb +0 -41
  192. data/script/generator/generators/gateway/templates/remote_gateway_test.rb +0 -56
  193. data/script/generator/generators/integration/integration_generator.rb +0 -25
  194. data/script/generator/generators/integration/templates/helper.rb +0 -34
  195. data/script/generator/generators/integration/templates/helper_test.rb +0 -54
  196. data/script/generator/generators/integration/templates/integration.rb +0 -18
  197. data/script/generator/generators/integration/templates/module_test.rb +0 -9
  198. data/script/generator/generators/integration/templates/notification.rb +0 -100
  199. data/script/generator/generators/integration/templates/notification_test.rb +0 -41
  200. data/script/generator/manifest.rb +0 -20
  201. data/test/remote_tests/remote_authorize_net_test.rb +0 -113
  202. data/test/remote_tests/remote_brain_tree_test.rb +0 -78
  203. data/test/remote_tests/remote_moneris_test.rb +0 -110
  204. data/test/remote_tests/remote_psigate_test.rb +0 -87
  205. data/test/remote_tests/remote_secure_pay_test.rb +0 -36
  206. data/test/remote_tests/remote_trust_commerce_test.rb +0 -136
data.tar.gz.sig CHANGED
Binary file
data/CHANGELOG CHANGED
@@ -1,294 +1,310 @@
1
- # CHANGELOG
2
- # ---
3
- # * Fix remote PayPal tests [cody]
4
- #
5
- # * Update Linkpoint tests to remove useless pem file [cody]
6
- #
7
- # * Use symbols for CreditCard error messages, since errors have indifferent access [cody]
8
- #
9
- # * Improve CreditCard error messages [George Ogata]
10
- #
11
- # * Change deny to assert_false, and deny_success to assert_failure. Remove Gateway.gateway, as it is available from Base [cody]
12
- #
13
- # * Improve documentation, and test coverage [James Herdman]
14
- #
15
- # * Refactor MonerisGateway, improve test coverage and documentation [James Herdman]
16
- #
17
- # * Add support for crediting to Moneris [James Herdman]
18
- #
19
- # * Send state N/A in Payflow when the state is blank. Fixes UK PayPal Express payments when not providing a state [cody]
20
- #
21
- # * Load remote test credentials from a fixtures file. ActiveMerchant will look for a custom file ~/.active_merchant/fixtures.yml. If the file exists it will be loaded instead of the default fixtures provided by ActiveMerchant. This makes development easier, and removes the risk of committing non-public test account credentials to subversion. [cody]
22
- #
23
- # * Add support for password protected pem files [cody]
24
- #
25
- # * Add support for Concord Efsnet payment gateway [snacktime]
26
- #
27
- # * Fix dependency loading for gateways that are subclasses [cody]
28
- #
29
- # * Add Braintree payment gateway [Michael J. Mangino]
30
- #
31
- # * Add support for PayPal API signatures [Benjamin Curtis, cody]
32
- #
33
- # * Add payment gateway Viaklix [Sal Scotto, cody]
34
- #
35
- # * Add Australian payment gateway NetRegistry [George Ogata]
36
- #
37
- # * Take order email from the options hash instead of the address for CyberSource [cody]
38
- #
39
- # * Use an array for LineItems when calculating tax in CyberSource gateway [cody]
40
- #
41
- # * Add CyberSource gateway [Matt Margolis]
42
- #
43
- # * Sanitize Protx order id [cody]
44
- #
45
- # * Fix support for electron in Protx [cody]
46
- #
47
- # * Add support for Protx [shiftx, cody]
48
- #
49
- # * Use undef_method with a single argument in SecurePay to prevent JRuby from choking on it. [jonathan.l.bartlett]
50
- #
51
- # * Default address_override to 0 for PayPal Website Payments Standard payments. [cody]
52
- #
53
- # * Enhance credit card error messages [manfred]
54
- #
55
- # * Use HashWithIndifferentAccess for CreditCard for compatibility with Rails applications [michael.j.mangino]
56
- #
57
- # * Fix nil exception when no response reason text is found in Authorize.net [cody]
58
- #
59
- # * Add support for PayJunction [Matt Sanders]
60
- #
61
- # * Change billing_address to shipping_address in PayPal Integration helper, as billing_address was incorrect. Addresses passed to billing_address for the PayPal helper will no longer be added to the form. This will break existing code, as the address will not be passed.
62
- #
63
- # * Remove switch patterns from card detection that were eliminated on July 1, 2007 [cody]
64
- #
65
- # * Format the issue number in Payflow requests to always be 2 digits [cody]
66
- #
67
- # * Move application_id to Gateway and Helper class respectively [cody]
68
- #
69
- # * Improve TrustCommerce documentation [cody]
70
- #
71
- # * Add credit to Payflow [cody]
72
- #
73
- # * Add support for the Plug 'N Pay gateway [ryan.norbauer, cody]
74
- #
75
- # * Add support for ItemTotal, Shipping, Handling, and Tax amounts in the PayPal Express and PayPal gateways [baldwindavid, cody]
76
- #
77
- # * Add page customization options to the PaypalExpress, and PayflowExpress gateways [ cpjolicoeur, cody]
78
- #
79
- # * Add Verifi gateway [Paul Hepworth]
80
- #
81
- # * Add a PayflowResponse object with a profile_id accessor method. Return the correct authorization number on recurring actions [cody]
82
- #
83
- # * Add support for an initial transaction with recurring payments [findchris, cody]
84
- #
85
- # * Add support for email receipts to recurring Payflow Payments [Rick Olson]
86
- #
87
- # * Ensure the ButtonSource isn't too long [cody]
88
- #
89
- # * Add ButtonSource to Paypal and PaypalExpress gateways [cody]
90
- #
91
- # * Rename application to application_id and place it on Base, so it can be set once and forgotten about [cody]
92
- #
93
- # * Add ButtonSource field to PayflowExpress gateway [cody]
94
- #
95
- # * Add a field for the bn to the PayPal helper [cody]
96
- #
97
- # * Add remote secure pay test and correctly define test? [cody]
98
- #
99
- # * Undefine unsupported methods from SecurePay [cody]
100
- #
101
- # * Enhance the TransFirst error message for declined transactions [cody]
102
- #
103
- # * Add initial support for TransFirst gateway [cody]
104
- #
105
- # * Deprecate certification_id in Payflow gateways [cody]
106
- #
107
- # * Work around required PayPal state fields for countries that don't require states [cody]
108
- #
109
- # * Add metadata to SecurePay gateway [cody]
110
- #
111
- # * Add initial support for the SecurePay gateway using the Authorize.net translator [cody]
112
- #
113
- # * Add the homepage_url and display_name accessors to each gateway [cody]
114
- #
115
- # * Remove Money dependency from main gateways. Cleanup tests. Add supported_countries class accessor which returns an array of 2 digit iso country codes for which countries the gateway supports accounts in [cody]
116
- #
117
- # * Add American Express card to Psigate [cody]
118
- #
119
- # * Send N/A to PayPal in the PayPal Helper when we don't know the UK county [cody]
120
- #
121
- # * Actually pass the amount of the capture through to Payflow [cody]
122
- #
123
- # * Update ExactGateway test and test mode [cody]
124
- #
125
- # * Remove unused method in PslCardGateway [cody]
126
- #
127
- # * Add updated credit card tests [cody]
128
- #
129
- # * Update and test PslCardGateway [cody]
130
- #
131
- # * Add Laser card type [cody]
132
- #
133
- # * Update Nochex documentation [cody]
134
- #
135
- # * Sanitize the Realex order_id [cody]
136
- #
137
- # * Add support for Irish Realex payment gateway [John Ward, cody]
138
- #
139
- # * Move credit_card helper method to the test_helper [cody]
140
- #
141
- # * Update PayflowExpressResponse to match the interface of the PayflowExpressResponse. Add :no_shipping and :address_override options to PayflowExpress [cody]
142
- #
143
- # * Add a currency option to the Payflow and Paypal gateways [cody]
144
- #
145
- # * PaypalExpress should use the shipping address, not the billing address [cody]
146
- #
147
- # * Allow overriding the user with Payflow so that a vendor and user can be provided when making requests [cody]
148
- #
149
- # * PayPal DirectPayment API requires a UK County to be sent as the state or province. Return N/A as the state when one isn't provided to ensure that PayPal doesn't reject the payment [cody]
150
- #
151
- # * Add ability to perform reference transactions with Payflow [Al Evans, cody]
152
- #
153
- # * Enhance recurring Payflow tests and recurring_inquiry [Al Evans]
154
- #
155
- # * Add recurring payments to Payflow [Rick Olson]
156
- #
157
- # * Improve the error message generated by requires! [cody]
158
- #
159
- # * Update credit card regular expressions and update Quickpay gateway with tests for new cards [cody]
160
- #
161
- # * Add support for token based payments to PaymentExpress [Nik Wakelin]
162
- #
163
- # * Refactor default_currency to the base gateway class [cody]
164
- #
165
- # * Clean unsupported characters from the Quickpay ordernum [cody]
166
- #
167
- # * Call the :sale and :authorization in QuickpayGateway [cody]
168
- #
169
- # * Add Danish gateway Quickpay [cody]
170
- #
171
- # * Remove redundant hash brackets from generator template [cody]
172
- #
173
- # * Add additional options to the PayPal Website Payments Standard Helper [Rick Olson]
174
- #
175
- # * Move generate_unique_id method to Gateway class so other gateways can also use it [cody]
176
- #
177
- # * Allow notification name / value pairs to have a . in the name like checkout.x = 400 [cody]
178
- #
179
- # * Fix PaypalExpressGateway#purchase to have the same method signature as other gateways [cody]
180
- #
181
- # * Cargo cult off the rails unique id generator instead of UUID library [cody]
182
- #
183
- # * Add uuid-1.0.3 for generating random request UUIDs [cody]
184
- #
185
- # * Remove mock_methods and http mock from the library [cody]
186
- #
187
- # * PaypalExpress cannot setup a payment for 0 dollars. If the amount is zero then setup a payment for $1. [cody]
188
- #
189
- # * Small changes to PslCard gateway [cody]
190
- #
191
- # * Fix Money dependency with PslCard gateway [cody]
192
- #
193
- # * Add PslCard payment gateway [MoneySpyder http://moneyspyder.co.uk]
194
- #
195
- # * Scrub the card number, expiry, and CVV code from the response [cody]
196
- #
197
- # * Use test? query for checking test mode [cody]
198
- #
199
- # * Add support for the E-xact Payment Gateway [James Edward Gray II, cody]
200
- #
201
- # * Fix partially broken method of dealing with phone numbers in the PayPal Helper [cody]
202
- #
203
- # * Update remote tests for PaymentExpress [cody]
204
- #
205
- # * Add Content-Type header to PaymentExpress post [cody]
206
- #
207
- # * Use DECLINED as the message for declined transactions in the PaymentExpress remote tests [cody]
208
- #
209
- # * Add JCB as a supported card type for the PaymentExpressGateway [cody]
210
- #
211
- # * Rename DpsGateway to PaymentExpressGateway [cody]
212
- #
213
- # * Add DPS Payment Express gateway (NZ) [dgjones, cody]
214
- #
215
- # * Remove duplicate and incorrect expdate method from Authorize.net [cody]
216
- #
217
- # * Allow authorization and purchase using a billing_id retrieved from TrustCommerce citadel [jesse.c.scott]
218
- #
219
- # * Don't return a frozen string from CreditCard.type? [cody]
220
- #
221
- # * Update remote Psigate test to ensure using a verification value doesn't break anything [cody]
222
- #
223
- # * Update remote Moneris test to ensure using a verification value doesn't break anything [cody]
224
- #
225
- # * Fix Solo issue number with CardStream gateway and improve test coverage [cody]
226
- #
227
- # * Add CardStream gateway [Jonah Fox, Thomas Nichols, cody]
228
- #
229
- # * Verify Peer in PayPal notifications and add account method [cody]
230
- #
231
- # * Mark 1.1.0 release
232
- #
233
- # * Add unique_id option to PayPal mass payments [Haig]
234
- #
235
- # * Fix expiry date in USA ePay [cody]
236
- #
237
- # * Fix PayPal Payments Pro UK with Switch & Solo cards [cody]
238
- #
239
- # * Add reauthorization to PaypalGateway and PaypalExpressGateway [dorrenchen]
240
- #
241
- # * Update DataCash tests and format merchant reference number to meet DataCash's requirements [MoneySpyder, cody]
242
- #
243
- # * Add Datacash gateway [MoneySpyder, cody]
244
- #
245
- # * VERIFY_PEER on all SSL requests [cody]
246
- #
247
- # * Add support for 2Checkout [cody]
248
- #
249
- # * Add support for PayPal mass payments to the PaypalGateway and the PaypalExpressGateway [Brandon Keepers]
250
- #
251
- # * Add a credit method to Authorize.net [cody]
252
- #
253
- # * Add support for OrderDescription, Payer, and InvoiceID fields in PaypalGateway [cody]
254
- #
255
- # * Add support for crediting to PayPal [cody, Haig]
256
- #
257
- # * Add discover to list of supported card types for Authorize.net
258
- #
259
- # * Fix Psigate crediting [sean.alien8@gmail.com]
260
- #
261
- # * Fix dependency loading of tests
262
- #
263
- # * Add methods for storing credit cards to the Bogus gateway [Jim Kane]
264
- #
265
- # * Fix bugs in expiration dates. [Jim Kane]
266
- #
267
- # * Fixed bugs related to authorized.net [Rick Olson]
268
- #
269
- # * Linkpoint is now a full featured backend for active merchant [Ryan Heneise]
270
- #
271
- # * Added linkpoint support [Ryan Heneise]
272
- #
273
- # * Added trust commerce gateway [Hans Friedrich]
274
- #
275
- # * Removed shipping stuff until there is time to implement it properly
276
- #
277
- # * The library now rejects money amounts which are not either cents as integer or a Money object
278
- #
279
- # * Moneris now uses the same layout as the authorized.net plugin
280
- #
281
- # * Added authorized.net
282
- #
283
- # * Changed default to :test mode. Set to production with ActiveMerchant::Billing::Base.gateway_mode = :production
284
- #
285
- # * More refactoring
286
- #
287
- # * Refactored a bit so that there is space for billing and shipping area. None of the shipping aids are fleshed out yet. Needs more work.
288
- #
289
- # * Added Moneris support
290
- #
291
- # * Credit card in memory object resembling a AR object
292
- #
293
- # * Credit card validation methods as static methods of the credit card object
294
- #
1
+ = ActiveMerchant CHANGELOG
2
+
3
+ == Version 1.3.0 (January 28, 2008)
4
+
5
+ * Remove attr_readers for url and response from Gateway [cody]
6
+ * Remove @url from EfsnetGateway [cody]
7
+ * Remove @response instance variable in QuickpayGateway. [cody]
8
+ * Remove @response instance variable in PsigateGateway. Don't use billing address for shipping [cody]
9
+ * Remove @response instance variable in PaypalGateway. Don't use billing address for shipping. [cody]
10
+ * Remove @response instance variable in PayflowGateway [cody]
11
+ * Remove @response instance variable in MonerisGateway [cody]
12
+ * Remove @response instance variable and don't use billing address for shipping address in LinkpointGateway [cody]
13
+ * Remove @response instance variable from ExactGateway [cody]
14
+ * Remove @response instance variable from EwayGateway [cody]
15
+ * Remove @response instance variable from EfsnetGateway [cody]
16
+ * Remove @response instance variable from DataCashGateway [cody]
17
+ * Don't use billing_address for shipping_address in CyberSourceGateway [cody]
18
+ * Remove @response instance variable from CardStreamGateway [cody]
19
+ * Remove @response instance variable from BrainTreeGateway [cody]
20
+ * Remove unused deal_with_cc method from BogusGateway [cody]
21
+ * Remove test_result_from_cc_number completely from ActiveMerchant [cody]
22
+ * Don't use billing_address for shipping_address in Realex [cody]
23
+ * Update Realex to add support for cvv data. remove test_result_from_cc_number. [cody]
24
+ * Update Protx to add support for avs and cvv data. remove test_result_from_cc_number. [cody]
25
+ * Include ActiveMerchant::Utils module in test_helper and use generate_unique_id from the module instead of generate_order_id. [cody]
26
+ * Update SecurePay tests to check for avs and cvv data. [cody]
27
+ * Update SkipJack to add support for avs and cvv data. remove test_result_from_cc_number. [cody]
28
+ * Move generate_unique_id to its own module [cody]
29
+ * Update Viaklix to add support for avs and cvv data. remove test_result_from_cc_number. Truncate fields to avoid failure [cody]
30
+ * Update PSL Card Gateway to add support for avs and cvv data. remove test_result_from_cc_number. [cody]
31
+ * Update PlugNPayGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
32
+ * Update PaymentExpressGateway to remove test_result_from_cc_number. [cody]
33
+ * Update PaySecure to remove test_result_from_cc_number. [cody]
34
+ * Update NetbillingGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
35
+ * Replace all usage of :address with :billing_address in test cases [cody]
36
+ * Remove sensitive data from NetRegistryGateway responses. Refactor gateway and tests. Remove test_result_from_cc_number. [cody]
37
+ * Update VerifiGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
38
+ * Small refactoring of UsaEpayGateway [cody]
39
+ * Update UsaEpayGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
40
+ * Update TrustCommerce docs now that the gateway falls back to SSL post when tclink isn't available [cody]
41
+ * Change ARB to use correct :address1 key for addresses [cody]
42
+ * No need for specialized recurring response for Authorize.net recurring billing [cody]
43
+ * Update TransFirst to support avs and cvv data. Remove test_result_from_cc_number. [cody]
44
+ * Maintain backwards compatibility with :address option for now in the Payflow gateways [cody]
45
+ * Remove test_result_from_cc_number from SecurePayTech. Improve unit test coverage [cody]
46
+ * Fix email option in PayflowGateway. Remove support for :address option. :billing_address and :shipping_address must now be passed in separately. [cody]
47
+ * Make Bogus gateway's credit() method behave like capture [cody]
48
+ * Add update and delete methods to update and delete records stored in the vault. [benjamin.curtis]
49
+ * Add support for recurring_inquiry() to the PayflowGateway [dave.my...@contentfree.com]
50
+ * Add support for Authorize.net Automated Recurring Billing (ARB) [vkurnavenkov, forestcarlisle, ianlotin...@hotmail.com, patrick.t.joyce]
51
+ * Fix laser card regex [ladislav.martincik]
52
+ * Cleanup whitepace in README [patrick.t.joyce]
53
+ * Update ExactGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
54
+ * Remove test_result_from_cc_number from eWay gateway. [cody]
55
+ * Remove duplicate attr_reader definitions from all gateways [cody]
56
+ * Remove useless tests raising Error [cody]
57
+ * Update gateway templates [cody]
58
+ * Fix Authorize.net test where authorize() was being called instead of purchase(). Perform some cleanup of the tests [ianlotin...@hotmail.com, cody]
59
+ * Improve Authorize.net documentation based on the DataCashGateway docs [patrick.t.joyce]
60
+ * Update EfsnetGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
61
+ * Remove test_result_from_cc_number from DataCash. Improve unit test coverage [cody]
62
+ * Update CyberSourceGateway to support avs and cvv results. Remove test_result_from_cc_number. [cody]
63
+ * Remove match information from CVVResult [cody]
64
+ * Remove Response#card_data. The application has access to the information anyway [cody]
65
+ * Return the last 4 digits of the card number from the Response instead of the masked number [cody]
66
+ * Actually use the shipping address in TrustCommerce [cody]
67
+ * Update TrustCommerceGateway to support avs and cvv results. Remove test_result_from_cc_number. Automatically fallback to SSL POST if the TCLink library is not available. Add additional customer information to the requests. [cody]
68
+ * Fix remote CardStreamGateway tests [cody]
69
+ * Map merchant AVS codes to street and postal match codes [cody]
70
+ * Update CardStreamGateway to support avs and cvv data [cody]
71
+ * Remove merchant_data hash. Add additional CVV codes [cody]
72
+ * Update QuickpayGateway to support merchant_data hash. Remove test_result_from_cc_number. [cody]
73
+ * Update LinkpointGateway to support merchant_data hash. Remove test_result_from_cc_number. [cody]
74
+ * Update PsigateGateway to support merchant_data hash. Remove test_result_from_cc_number. [cody]
75
+ * Update MonerisGateway to support merchant_data hash. Remove test_result_from_cc_number. [cody]
76
+ * Remove AVS Message and CVV2 Message from params hash in Authorize.net [cody]
77
+ * Update BrainTreeGateway to support merchant_data hash [cody]
78
+ * Update PaypalGateway to support merchant_data hash [cody]
79
+ * Update Payflow to support merchant_data hash [cody]
80
+ * Add card data to PayJunction response. PayJunction does not return the CVV or AVS result codes. Remote test_result_from_cc_number from PayJunction. [cody]
81
+ * Rename CCVResult to CVVResult to be more aligned with ActiveMerchant's usage of the term verification value [cody]
82
+ * Remove test_result_from_cc_number from Authorize.net in favour of mocking [cody]
83
+ * Add merchant_data hash, which contains all of the card_data, avs_result, and ccv_result. [cody]
84
+ * Add CCVResult for the Card Code Verification Result. Update Authorize.net to use the new class [cody]
85
+ * Rename AVSResult#match_type AVSResult#match [cody]
86
+ * Rename AVS::Result class to AVSResult [cody]
87
+ * Convert Authorize.net gateway to use the new AVS module [cody]
88
+ * Add AVS data to the Response object [cody]
89
+ * Fix credentials for remote Authorize.net TEST MODE test [cody]
90
+ * Add AVS module and AVS::Result class [cody]
91
+ * Update base gateway class RDOC [cody]
92
+ * Update the README with the latest list of supported gateways. Update the example in the README to include the verification value, which is now required by the credit card object by default. [cody]
93
+ * Handle the return from 2Checkout [cody]
94
+ * Automatically determine the credit card type when a type is not provided [cody]
95
+ * Revert to initial implementation of LUHN algorithm because it all fits in one simple method [cody]
96
+ * Remove unused api_cert_chain.crt file [cody]
97
+ * Update PaypalGateway, and PaypalExpressGateway to send requests to the correct endpoints when using API signatures [cody]
98
+ * Successful return code for HiTRUST is actually 00 [cody]
99
+ * Make ActiveMerchant::Billing::Error a subclass of ActiveMerchant::ActiveMerchantError [cody]
100
+ * Handle the return from the offsite payment gateways [cody]
101
+ * Default HiTRUST order description to "Store purchase" [cody]
102
+ * Fix HiTRUST field names [cody]
103
+ * Add support for passing in the locale code [georg.fr...@meandevel.com]
104
+ * Add support for the Offsite payment gateway HiTRUST [cody]
105
+ * Accept SuccessWithWarning as success [cody]
106
+ * Add a link to the LinkPoint staging server docs in remote_linkpoint_test.rb [cody]
107
+ * Update Discover regex [cody]
108
+ * Match full pan range of Maestro cards from 12 - 19 digits in length [cody]
109
+ * Fix errors on base of CreditCard [josh.bassett]
110
+ * Update product to use Rubigen instead of stolen Rails generator [cody]
111
+ * Mimic directory structure of unit tests in remote tests [cody]
112
+ * Restructure the location of the remote tests [cody]
113
+ * Ensure DataCash order_id is limited to 30 characters [cody]
114
+ * Return the pretty messages from PayJunction based on the return code [cody]
115
+ * make CreditCard.require_verification_value = true the default [cody]
116
+ * Use existing credit_card helper in credit card tests [cody]
117
+ * Return the authrorization number of the original transaction in the SkipJack gateway [cody]
118
+ * Update format of line items given to the gateway. Cleanup and uncomment unit tests [cody]
119
+ * Add support for the SkipJack gateway [Bill Bereza, cody]
120
+ * Make the bogus gateway easier to test by moving messages into constants [cody]
121
+ * Add retry logic when connection has been refused for all gateways. Enable safe retries of all connection failures with the PayflowGateway, as it has a unique request header. [cody]
122
+ * Catch Timeout::Error when posting data [cody]
123
+ * Change order of loading ActionPack for tests since assert_success defined in ActionController::Assertions::DeprecatedAssertions inteferes with ActiveMerchant's definition [cody]
124
+ * Catch Errno::ETIMEDOUT and extend open and read timeouts to 60 seconds [cody]
125
+ * Add address2 to the billing address of Viaklix transactions [cody]
126
+ * Improve Psigate generic error message [cody]
127
+ * Fix small errors in Psigate documentation [cody]
128
+ * Add Response#fraud_review? query method to the response. Allows gateways to indicate that a payment is pending review by the fraud service [cody]
129
+ * Handle Errno::ECONNRESET when posting data [cody]
130
+ * Fix broken USA ePay URL [cody]
131
+ * Update RequiresParameters to support HashWithIndifferentAccess [cody]
132
+ * Add support for SecurePayTech payment gateway [Jasper Bryant-Greene]
133
+ * Detect when test credentials are being used with PayJunction [cody]
134
+ * Update documentation about TrustCommerce void [cody]
135
+ * Add void to TrustCommerce [jesse.c.scott]
136
+ * Add support for echecks to the BrainTree gateway [Jeremy Voorhis]
137
+ * Fix before_validate and validate methods in CreditCard [rick.denatale]
138
+ * Add support for Netbilling payment gateway [cody]
139
+ * Pass in N/A for unknown states when a country is present in PaypalGateway [cody]
140
+ * Strip non alpha chars from order_id in Payflow gateway, as Paymentech Tampa can't handle them [cody]
141
+ * Add support for the PaySecure payment gateway [cody]
142
+ * Add support for descriptions in Authorize.net credits [shiva.kaul]
143
+ * Great cleanup and improvement of CreditCard code, tests, and docs [James Herdman]
144
+
145
+ == Version 1.2.1
146
+
147
+ * Fix remote PayPal tests [cody]
148
+
149
+ == Version 1.2.0
150
+
151
+ * Update Linkpoint tests to remove useless pem file [cody]
152
+ * Use symbols for CreditCard error messages, since errors have indifferent access [cody]
153
+ * Improve CreditCard error messages [George Ogata]
154
+ * Change deny to assert_false, and deny_success to assert_failure. Remove Gateway.gateway, as it is available from Base [cody]
155
+ * Improve documentation, and test coverage [James Herdman]
156
+ * Refactor MonerisGateway, improve test coverage and documentation [James Herdman]
157
+ * Add support for crediting to Moneris [James Herdman]
158
+ * Send state N/A in Payflow when the state is blank. Fixes UK PayPal Express payments when not providing a state [cody]
159
+ * Load remote test credentials from a fixtures file. ActiveMerchant will look for a custom file ~/.active_merchant/fixtures.yml. If the file exists it will be loaded instead of the default fixtures provided by ActiveMerchant. This makes development easier, and removes the risk of committing non-public test account credentials to subversion. [cody]
160
+ * Add support for password protected pem files [cody]
161
+ * Add support for Concord Efsnet payment gateway [snacktime]
162
+ * Fix dependency loading for gateways that are subclasses [cody]
163
+ * Add Braintree payment gateway [Michael J. Mangino]
164
+ * Add support for PayPal API signatures [Benjamin Curtis, cody]
165
+ * Add payment gateway Viaklix [Sal Scotto, cody]
166
+ * Add Australian payment gateway NetRegistry [George Ogata]
167
+ * Take order email from the options hash instead of the address for CyberSource [cody]
168
+ * Use an array for LineItems when calculating tax in CyberSource gateway [cody]
169
+ * Add CyberSource gateway [Matt Margolis]
170
+ * Sanitize Protx order id [cody]
171
+ * Fix support for electron in Protx [cody]
172
+ * Add support for Protx [shiftx, cody]
173
+ * Use undef_method with a single argument in SecurePay to prevent JRuby from choking on it. [jonathan.l.bartlett]
174
+ * Default address_override to 0 for PayPal Website Payments Standard payments. [cody]
175
+ * Enhance credit card error messages [manfred]
176
+ * Use HashWithIndifferentAccess for CreditCard for compatibility with Rails applications [michael.j.mangino]
177
+ * Fix nil exception when no response reason text is found in Authorize.net [cody]
178
+ * Add support for PayJunction [Matt Sanders]
179
+ * Change billing_address to shipping_address in PayPal Integration helper, as billing_address was incorrect. Addresses passed to billing_address for the PayPal helper will no longer be added to the form. This will break existing code, as the address will not be passed.
180
+ * Remove switch patterns from card detection that were eliminated on July 1, 2007 [cody]
181
+ * Format the issue number in Payflow requests to always be 2 digits [cody]
182
+ * Move application_id to Gateway and Helper class respectively [cody]
183
+ * Improve TrustCommerce documentation [cody]
184
+ * Add credit to Payflow [cody]
185
+ * Add support for the Plug 'N Pay gateway [ryan.norbauer, cody]
186
+ * Add support for ItemTotal, Shipping, Handling, and Tax amounts in the PayPal Express and PayPal gateways [baldwindavid, cody]
187
+ * Add page customization options to the PaypalExpress, and PayflowExpress gateways [ cpjolicoeur, cody]
188
+ * Add Verifi gateway [Paul Hepworth]
189
+ * Add a PayflowResponse object with a profile_id accessor method. Return the correct authorization number on recurring actions [cody]
190
+ * Add support for an initial transaction with recurring payments [findchris, cody]
191
+ * Add support for email receipts to recurring Payflow Payments [Rick Olson]
192
+ * Ensure the ButtonSource isn't too long [cody]
193
+ * Add ButtonSource to Paypal and PaypalExpress gateways [cody]
194
+ * Rename application to application_id and place it on Base, so it can be set once and forgotten about [cody]
195
+ * Add ButtonSource field to PayflowExpress gateway [cody]
196
+ * Add a field for the bn to the PayPal helper [cody]
197
+ * Add remote secure pay test and correctly define test? [cody]
198
+ * Undefine unsupported methods from SecurePay [cody]
199
+ * Enhance the TransFirst error message for declined transactions [cody]
200
+ * Add initial support for TransFirst gateway [cody]
201
+ * Deprecate certification_id in Payflow gateways [cody]
202
+ * Work around required PayPal state fields for countries that don't require states [cody]
203
+ * Add metadata to SecurePay gateway [cody]
204
+ * Add initial support for the SecurePay gateway using the Authorize.net translator [cody]
205
+ * Add the homepage_url and display_name accessors to each gateway [cody]
206
+ * Remove Money dependency from main gateways. Cleanup tests. Add supported_countries class accessor which returns an array of 2 digit iso country codes for which countries the gateway supports accounts in [cody]
207
+ * Add American Express card to Psigate [cody]
208
+ * Send N/A to PayPal in the PayPal Helper when we don't know the UK county [cody]
209
+ * Actually pass the amount of the capture through to Payflow [cody]
210
+ * Update ExactGateway test and test mode [cody]
211
+ * Remove unused method in PslCardGateway [cody]
212
+ * Add updated credit card tests [cody]
213
+ * Update and test PslCardGateway [cody]
214
+ * Add Laser card type [cody]
215
+ * Update Nochex documentation [cody]
216
+ * Sanitize the Realex order_id [cody]
217
+ * Add support for Irish Realex payment gateway [John Ward, cody]
218
+ * Move credit_card helper method to the test_helper [cody]
219
+ * Update PayflowExpressResponse to match the interface of the PayflowExpressResponse. Add :no_shipping and :address_override options to PayflowExpress [cody]
220
+ * Add a currency option to the Payflow and Paypal gateways [cody]
221
+ * PaypalExpress should use the shipping address, not the billing address [cody]
222
+ * Allow overriding the user with Payflow so that a vendor and user can be provided when making requests [cody]
223
+ * PayPal DirectPayment API requires a UK County to be sent as the state or province. Return N/A as the state when one isn't provided to ensure that PayPal doesn't reject the payment [cody]
224
+ * Add ability to perform reference transactions with Payflow [Al Evans, cody]
225
+ * Enhance recurring Payflow tests and recurring_inquiry [Al Evans]
226
+ * Add recurring payments to Payflow [Rick Olson]
227
+ * Improve the error message generated by requires! [cody]
228
+ * Update credit card regular expressions and update Quickpay gateway with tests for new cards [cody]
229
+ * Add support for token based payments to PaymentExpress [Nik Wakelin]
230
+ * Refactor default_currency to the base gateway class [cody]
231
+ * Clean unsupported characters from the Quickpay ordernum [cody]
232
+ * Call the :sale and :authorization in QuickpayGateway [cody]
233
+ * Add Danish gateway Quickpay [cody]
234
+ * Remove redundant hash brackets from generator template [cody]
235
+ * Add additional options to the PayPal Website Payments Standard Helper [Rick Olson]
236
+ * Move generate_unique_id method to Gateway class so other gateways can also use it [cody]
237
+ * Allow notification name / value pairs to have a . in the name like checkout.x = 400 [cody]
238
+ * Fix PaypalExpressGateway#purchase to have the same method signature as other gateways [cody]
239
+ * Cargo cult off the rails unique id generator instead of UUID library [cody]
240
+ * Add uuid-1.0.3 for generating random request UUIDs [cody]
241
+ * Remove mock_methods and http mock from the library [cody]
242
+ * PaypalExpress cannot setup a payment for 0 dollars. If the amount is zero then setup a payment for $1. [cody]
243
+ * Small changes to PslCard gateway [cody]
244
+ * Fix Money dependency with PslCard gateway [cody]
245
+ * Add PslCard payment gateway [MoneySpyder http://moneyspyder.co.uk]
246
+ * Scrub the card number, expiry, and CVV code from the response [cody]
247
+ * Use test? query for checking test mode [cody]
248
+ * Add support for the E-xact Payment Gateway [James Edward Gray II, cody]
249
+ * Fix partially broken method of dealing with phone numbers in the PayPal Helper [cody]
250
+ * Update remote tests for PaymentExpress [cody]
251
+ * Add Content-Type header to PaymentExpress post [cody]
252
+ * Use DECLINED as the message for declined transactions in the PaymentExpress remote tests [cody]
253
+ * Add JCB as a supported card type for the PaymentExpressGateway [cody]
254
+ * Rename DpsGateway to PaymentExpressGateway [cody]
255
+ * Add DPS Payment Express gateway (NZ) [dgjones, cody]
256
+ * Remove duplicate and incorrect expdate method from Authorize.net [cody]
257
+ * Allow authorization and purchase using a billing_id retrieved from TrustCommerce citadel [jesse.c.scott]
258
+ * Don't return a frozen string from CreditCard.type? [cody]
259
+ * Update remote Psigate test to ensure using a verification value doesn't break anything [cody]
260
+ * Update remote Moneris test to ensure using a verification value doesn't break anything [cody]
261
+ * Fix Solo issue number with CardStream gateway and improve test coverage [cody]
262
+ * Add CardStream gateway [Jonah Fox, Thomas Nichols, cody]
263
+ * Verify Peer in PayPal notifications and add account method [cody]
264
+
265
+ == Version 1.1.0
266
+
267
+ * Add unique_id option to PayPal mass payments [Haig]
268
+ * Fix expiry date in USA ePay [cody]
269
+ * Fix PayPal Payments Pro UK with Switch & Solo cards [cody]
270
+ * Add reauthorization to PaypalGateway and PaypalExpressGateway [dorrenchen]
271
+ * Update DataCash tests and format merchant reference number to meet DataCash's requirements [MoneySpyder, cody]
272
+ * Add Datacash gateway [MoneySpyder, cody]
273
+ * VERIFY_PEER on all SSL requests [cody]
274
+ * Add support for 2Checkout [cody]
275
+
276
+ == Version 1.0.3
277
+
278
+ * Add support for PayPal mass payments to the PaypalGateway and the PaypalExpressGateway [Brandon Keepers]
279
+ * Add a credit method to Authorize.net [cody]
280
+
281
+ == Version 1.0.2
282
+
283
+ * Add support for OrderDescription, Payer, and InvoiceID fields in PaypalGateway [cody]
284
+
285
+ == Version 1.0.1
286
+
287
+ * Add support for crediting to PayPal [cody, Haig]
288
+
289
+ == Version 1.0.0
290
+
291
+ * Add discover to list of supported card types for Authorize.net
292
+ * Fix Psigate crediting [sean.alien8@gmail.com]
293
+ * Fix dependency loading of tests
294
+ * Add methods for storing credit cards to the Bogus gateway [Jim Kane]
295
+ * Fix bugs in expiration dates. [Jim Kane]
296
+ * Fixed bugs related to authorized.net [Rick Olson]
297
+ * Linkpoint is now a full featured backend for active merchant [Ryan Heneise]
298
+ * Added linkpoint support [Ryan Heneise]
299
+ * Added trust commerce gateway [Hans Friedrich]
300
+ * Removed shipping stuff until there is time to implement it properly
301
+ * The library now rejects money amounts which are not either cents as integer or a Money object
302
+ * Moneris now uses the same layout as the authorized.net plugin
303
+ * Added authorized.net
304
+ * Changed default to :test mode. Set to production with ActiveMerchant::Billing::Base.gateway_mode = :production
305
+ * More refactoring
306
+ * Refactored a bit so that there is space for billing and shipping area. None of the shipping aids are fleshed out yet. Needs more work.
307
+ * Added Moneris support
308
+ * Credit card in memory object resembling a AR object
309
+ * Credit card validation methods as static methods of the credit card object
310
+