active_accountability_merchant 1.97.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (259) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG +2948 -0
  3. data/CONTRIBUTORS +568 -0
  4. data/MIT-LICENSE +20 -0
  5. data/README.md +246 -0
  6. data/lib/active_merchant.rb +63 -0
  7. data/lib/active_merchant/billing.rb +15 -0
  8. data/lib/active_merchant/billing/apple_pay_payment_token.rb +22 -0
  9. data/lib/active_merchant/billing/avs_result.rb +96 -0
  10. data/lib/active_merchant/billing/base.rb +61 -0
  11. data/lib/active_merchant/billing/check.rb +80 -0
  12. data/lib/active_merchant/billing/compatibility.rb +117 -0
  13. data/lib/active_merchant/billing/credit_card.rb +406 -0
  14. data/lib/active_merchant/billing/credit_card_formatting.rb +23 -0
  15. data/lib/active_merchant/billing/credit_card_methods.rb +343 -0
  16. data/lib/active_merchant/billing/cvv_result.rb +38 -0
  17. data/lib/active_merchant/billing/gateway.rb +330 -0
  18. data/lib/active_merchant/billing/gateways.rb +14 -0
  19. data/lib/active_merchant/billing/gateways/adyen.rb +503 -0
  20. data/lib/active_merchant/billing/gateways/allied_wallet.rb +205 -0
  21. data/lib/active_merchant/billing/gateways/authorize_net.rb +1055 -0
  22. data/lib/active_merchant/billing/gateways/authorize_net_arb.rb +417 -0
  23. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +980 -0
  24. data/lib/active_merchant/billing/gateways/axcessms.rb +181 -0
  25. data/lib/active_merchant/billing/gateways/balanced.rb +256 -0
  26. data/lib/active_merchant/billing/gateways/bambora_apac.rb +226 -0
  27. data/lib/active_merchant/billing/gateways/bank_frick.rb +225 -0
  28. data/lib/active_merchant/billing/gateways/banwire.rb +116 -0
  29. data/lib/active_merchant/billing/gateways/barclaycard_smartpay.rb +384 -0
  30. data/lib/active_merchant/billing/gateways/barclays_epdq_extra_plus.rb +15 -0
  31. data/lib/active_merchant/billing/gateways/be2bill.rb +131 -0
  32. data/lib/active_merchant/billing/gateways/beanstream.rb +217 -0
  33. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +473 -0
  34. data/lib/active_merchant/billing/gateways/beanstream_interac.rb +57 -0
  35. data/lib/active_merchant/billing/gateways/blue_pay.rb +522 -0
  36. data/lib/active_merchant/billing/gateways/blue_snap.rb +522 -0
  37. data/lib/active_merchant/billing/gateways/bogus.rb +186 -0
  38. data/lib/active_merchant/billing/gateways/borgun.rb +220 -0
  39. data/lib/active_merchant/billing/gateways/bpoint.rb +277 -0
  40. data/lib/active_merchant/billing/gateways/braintree.rb +19 -0
  41. data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +22 -0
  42. data/lib/active_merchant/billing/gateways/braintree_blue.rb +740 -0
  43. data/lib/active_merchant/billing/gateways/braintree_orange.rb +19 -0
  44. data/lib/active_merchant/billing/gateways/bridge_pay.rb +244 -0
  45. data/lib/active_merchant/billing/gateways/cams.rb +230 -0
  46. data/lib/active_merchant/billing/gateways/card_connect.rb +316 -0
  47. data/lib/active_merchant/billing/gateways/card_save.rb +22 -0
  48. data/lib/active_merchant/billing/gateways/card_stream.rb +367 -0
  49. data/lib/active_merchant/billing/gateways/cardknox.rb +327 -0
  50. data/lib/active_merchant/billing/gateways/cardprocess.rb +254 -0
  51. data/lib/active_merchant/billing/gateways/cashnet.rb +219 -0
  52. data/lib/active_merchant/billing/gateways/cc5.rb +198 -0
  53. data/lib/active_merchant/billing/gateways/cecabank.rb +249 -0
  54. data/lib/active_merchant/billing/gateways/cenpos.rb +327 -0
  55. data/lib/active_merchant/billing/gateways/checkout.rb +214 -0
  56. data/lib/active_merchant/billing/gateways/checkout_v2.rb +270 -0
  57. data/lib/active_merchant/billing/gateways/citrus_pay.rb +22 -0
  58. data/lib/active_merchant/billing/gateways/clearhaus.rb +220 -0
  59. data/lib/active_merchant/billing/gateways/commercegate.rb +142 -0
  60. data/lib/active_merchant/billing/gateways/conekta.rb +228 -0
  61. data/lib/active_merchant/billing/gateways/creditcall.rb +271 -0
  62. data/lib/active_merchant/billing/gateways/credorax.rb +382 -0
  63. data/lib/active_merchant/billing/gateways/ct_payment.rb +268 -0
  64. data/lib/active_merchant/billing/gateways/culqi.rb +277 -0
  65. data/lib/active_merchant/billing/gateways/cyber_source.rb +828 -0
  66. data/lib/active_merchant/billing/gateways/d_local.rb +226 -0
  67. data/lib/active_merchant/billing/gateways/data_cash.rb +305 -0
  68. data/lib/active_merchant/billing/gateways/decidir.rb +233 -0
  69. data/lib/active_merchant/billing/gateways/dibs.rb +199 -0
  70. data/lib/active_merchant/billing/gateways/digitzs.rb +292 -0
  71. data/lib/active_merchant/billing/gateways/ebanx.rb +296 -0
  72. data/lib/active_merchant/billing/gateways/efsnet.rb +215 -0
  73. data/lib/active_merchant/billing/gateways/elavon.rb +320 -0
  74. data/lib/active_merchant/billing/gateways/element.rb +356 -0
  75. data/lib/active_merchant/billing/gateways/epay.rb +285 -0
  76. data/lib/active_merchant/billing/gateways/evo_ca.rb +308 -0
  77. data/lib/active_merchant/billing/gateways/eway.rb +226 -0
  78. data/lib/active_merchant/billing/gateways/eway_managed.rb +290 -0
  79. data/lib/active_merchant/billing/gateways/eway_rapid.rb +563 -0
  80. data/lib/active_merchant/billing/gateways/exact.rb +224 -0
  81. data/lib/active_merchant/billing/gateways/ezic.rb +195 -0
  82. data/lib/active_merchant/billing/gateways/fat_zebra.rb +218 -0
  83. data/lib/active_merchant/billing/gateways/federated_canada.rb +159 -0
  84. data/lib/active_merchant/billing/gateways/finansbank.rb +22 -0
  85. data/lib/active_merchant/billing/gateways/first_giving.rb +142 -0
  86. data/lib/active_merchant/billing/gateways/first_pay.rb +182 -0
  87. data/lib/active_merchant/billing/gateways/firstdata_e4.rb +451 -0
  88. data/lib/active_merchant/billing/gateways/firstdata_e4_v27.rb +485 -0
  89. data/lib/active_merchant/billing/gateways/flo2cash.rb +215 -0
  90. data/lib/active_merchant/billing/gateways/flo2cash_simple.rb +20 -0
  91. data/lib/active_merchant/billing/gateways/forte.rb +270 -0
  92. data/lib/active_merchant/billing/gateways/garanti.rb +259 -0
  93. data/lib/active_merchant/billing/gateways/global_collect.rb +336 -0
  94. data/lib/active_merchant/billing/gateways/global_transport.rb +194 -0
  95. data/lib/active_merchant/billing/gateways/hdfc.rb +206 -0
  96. data/lib/active_merchant/billing/gateways/hps.rb +350 -0
  97. data/lib/active_merchant/billing/gateways/iats_payments.rb +290 -0
  98. data/lib/active_merchant/billing/gateways/in_context_paypal_express.rb +15 -0
  99. data/lib/active_merchant/billing/gateways/inspire.rb +218 -0
  100. data/lib/active_merchant/billing/gateways/instapay.rb +162 -0
  101. data/lib/active_merchant/billing/gateways/ipp.rb +176 -0
  102. data/lib/active_merchant/billing/gateways/iridium.rb +468 -0
  103. data/lib/active_merchant/billing/gateways/itransact.rb +447 -0
  104. data/lib/active_merchant/billing/gateways/iveri.rb +251 -0
  105. data/lib/active_merchant/billing/gateways/jetpay.rb +402 -0
  106. data/lib/active_merchant/billing/gateways/jetpay_v2.rb +437 -0
  107. data/lib/active_merchant/billing/gateways/komoju.rb +115 -0
  108. data/lib/active_merchant/billing/gateways/kushki.rb +219 -0
  109. data/lib/active_merchant/billing/gateways/latitude19.rb +411 -0
  110. data/lib/active_merchant/billing/gateways/linkpoint.rb +449 -0
  111. data/lib/active_merchant/billing/gateways/litle.rb +507 -0
  112. data/lib/active_merchant/billing/gateways/mastercard.rb +267 -0
  113. data/lib/active_merchant/billing/gateways/maxipago.rb +220 -0
  114. data/lib/active_merchant/billing/gateways/mercado_pago.rb +277 -0
  115. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +194 -0
  116. data/lib/active_merchant/billing/gateways/merchant_one.rb +113 -0
  117. data/lib/active_merchant/billing/gateways/merchant_partners.rb +245 -0
  118. data/lib/active_merchant/billing/gateways/merchant_ware.rb +319 -0
  119. data/lib/active_merchant/billing/gateways/merchant_ware_version_four.rb +286 -0
  120. data/lib/active_merchant/billing/gateways/merchant_warrior.rb +210 -0
  121. data/lib/active_merchant/billing/gateways/mercury.rb +356 -0
  122. data/lib/active_merchant/billing/gateways/metrics_global.rb +303 -0
  123. data/lib/active_merchant/billing/gateways/micropayment.rb +183 -0
  124. data/lib/active_merchant/billing/gateways/migs.rb +332 -0
  125. data/lib/active_merchant/billing/gateways/migs/migs_codes.rb +100 -0
  126. data/lib/active_merchant/billing/gateways/modern_payments.rb +37 -0
  127. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +217 -0
  128. data/lib/active_merchant/billing/gateways/monei.rb +338 -0
  129. data/lib/active_merchant/billing/gateways/moneris.rb +377 -0
  130. data/lib/active_merchant/billing/gateways/moneris_us.rb +352 -0
  131. data/lib/active_merchant/billing/gateways/money_movers.rb +151 -0
  132. data/lib/active_merchant/billing/gateways/mundipagg.rb +293 -0
  133. data/lib/active_merchant/billing/gateways/nab_transact.rb +301 -0
  134. data/lib/active_merchant/billing/gateways/ncr_secure_pay.rb +165 -0
  135. data/lib/active_merchant/billing/gateways/net_registry.rb +199 -0
  136. data/lib/active_merchant/billing/gateways/netaxept.rb +180 -0
  137. data/lib/active_merchant/billing/gateways/netbanx.rb +294 -0
  138. data/lib/active_merchant/billing/gateways/netbilling.rb +232 -0
  139. data/lib/active_merchant/billing/gateways/netpay.rb +222 -0
  140. data/lib/active_merchant/billing/gateways/network_merchants.rb +241 -0
  141. data/lib/active_merchant/billing/gateways/nmi.rb +324 -0
  142. data/lib/active_merchant/billing/gateways/ogone.rb +478 -0
  143. data/lib/active_merchant/billing/gateways/omise.rb +324 -0
  144. data/lib/active_merchant/billing/gateways/openpay.rb +228 -0
  145. data/lib/active_merchant/billing/gateways/opp.rb +388 -0
  146. data/lib/active_merchant/billing/gateways/optimal_payment.rb +332 -0
  147. data/lib/active_merchant/billing/gateways/orbital.rb +1006 -0
  148. data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +47 -0
  149. data/lib/active_merchant/billing/gateways/pac_net_raven.rb +206 -0
  150. data/lib/active_merchant/billing/gateways/pagarme.rb +246 -0
  151. data/lib/active_merchant/billing/gateways/pago_facil.rb +122 -0
  152. data/lib/active_merchant/billing/gateways/pay_conex.rb +245 -0
  153. data/lib/active_merchant/billing/gateways/pay_gate_xml.rb +280 -0
  154. data/lib/active_merchant/billing/gateways/pay_hub.rb +213 -0
  155. data/lib/active_merchant/billing/gateways/pay_junction.rb +390 -0
  156. data/lib/active_merchant/billing/gateways/pay_junction_v2.rb +188 -0
  157. data/lib/active_merchant/billing/gateways/pay_secure.rb +111 -0
  158. data/lib/active_merchant/billing/gateways/paybox_direct.rb +200 -0
  159. data/lib/active_merchant/billing/gateways/payeezy.rb +410 -0
  160. data/lib/active_merchant/billing/gateways/payex.rb +410 -0
  161. data/lib/active_merchant/billing/gateways/payflow.rb +383 -0
  162. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +235 -0
  163. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +43 -0
  164. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
  165. data/lib/active_merchant/billing/gateways/payflow_express.rb +220 -0
  166. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +14 -0
  167. data/lib/active_merchant/billing/gateways/payflow_uk.rb +20 -0
  168. data/lib/active_merchant/billing/gateways/payment_express.rb +369 -0
  169. data/lib/active_merchant/billing/gateways/paymentez.rb +300 -0
  170. data/lib/active_merchant/billing/gateways/paymill.rb +371 -0
  171. data/lib/active_merchant/billing/gateways/paypal.rb +128 -0
  172. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +717 -0
  173. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +65 -0
  174. data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +262 -0
  175. data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
  176. data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +44 -0
  177. data/lib/active_merchant/billing/gateways/paypal_express.rb +269 -0
  178. data/lib/active_merchant/billing/gateways/paypal_express_common.rb +30 -0
  179. data/lib/active_merchant/billing/gateways/payscout.rb +160 -0
  180. data/lib/active_merchant/billing/gateways/paystation.rb +207 -0
  181. data/lib/active_merchant/billing/gateways/payu_in.rb +248 -0
  182. data/lib/active_merchant/billing/gateways/payu_latam.rb +449 -0
  183. data/lib/active_merchant/billing/gateways/payway.rb +207 -0
  184. data/lib/active_merchant/billing/gateways/pin.rb +234 -0
  185. data/lib/active_merchant/billing/gateways/plugnpay.rb +284 -0
  186. data/lib/active_merchant/billing/gateways/pro_pay.rb +326 -0
  187. data/lib/active_merchant/billing/gateways/psigate.rb +227 -0
  188. data/lib/active_merchant/billing/gateways/psl_card.rb +296 -0
  189. data/lib/active_merchant/billing/gateways/qbms.rb +303 -0
  190. data/lib/active_merchant/billing/gateways/quantum.rb +276 -0
  191. data/lib/active_merchant/billing/gateways/quickbooks.rb +290 -0
  192. data/lib/active_merchant/billing/gateways/quickpay.rb +25 -0
  193. data/lib/active_merchant/billing/gateways/quickpay/quickpay_common.rb +184 -0
  194. data/lib/active_merchant/billing/gateways/quickpay/quickpay_v10.rb +301 -0
  195. data/lib/active_merchant/billing/gateways/quickpay/quickpay_v4to7.rb +226 -0
  196. data/lib/active_merchant/billing/gateways/qvalent.rb +289 -0
  197. data/lib/active_merchant/billing/gateways/realex.rb +374 -0
  198. data/lib/active_merchant/billing/gateways/redsys.rb +534 -0
  199. data/lib/active_merchant/billing/gateways/s5.rb +246 -0
  200. data/lib/active_merchant/billing/gateways/safe_charge.rb +262 -0
  201. data/lib/active_merchant/billing/gateways/sage.rb +448 -0
  202. data/lib/active_merchant/billing/gateways/sage_pay.rb +434 -0
  203. data/lib/active_merchant/billing/gateways/sallie_mae.rb +142 -0
  204. data/lib/active_merchant/billing/gateways/secure_net.rb +267 -0
  205. data/lib/active_merchant/billing/gateways/secure_pay.rb +200 -0
  206. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +292 -0
  207. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +104 -0
  208. data/lib/active_merchant/billing/gateways/securion_pay.rb +264 -0
  209. data/lib/active_merchant/billing/gateways/skip_jack.rb +450 -0
  210. data/lib/active_merchant/billing/gateways/smart_ps.rb +280 -0
  211. data/lib/active_merchant/billing/gateways/so_easy_pay.rb +194 -0
  212. data/lib/active_merchant/billing/gateways/spreedly_core.rb +306 -0
  213. data/lib/active_merchant/billing/gateways/stripe.rb +790 -0
  214. data/lib/active_merchant/billing/gateways/stripe_payment_intents.rb +267 -0
  215. data/lib/active_merchant/billing/gateways/swipe_checkout.rb +152 -0
  216. data/lib/active_merchant/billing/gateways/telr.rb +274 -0
  217. data/lib/active_merchant/billing/gateways/tns.rb +22 -0
  218. data/lib/active_merchant/billing/gateways/trans_first.rb +239 -0
  219. data/lib/active_merchant/billing/gateways/trans_first_transaction_express.rb +608 -0
  220. data/lib/active_merchant/billing/gateways/transact_pro.rb +224 -0
  221. data/lib/active_merchant/billing/gateways/transax.rb +22 -0
  222. data/lib/active_merchant/billing/gateways/transnational.rb +9 -0
  223. data/lib/active_merchant/billing/gateways/trexle.rb +218 -0
  224. data/lib/active_merchant/billing/gateways/trust_commerce.rb +490 -0
  225. data/lib/active_merchant/billing/gateways/usa_epay.rb +25 -0
  226. data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +1620 -0
  227. data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +355 -0
  228. data/lib/active_merchant/billing/gateways/vanco.rb +294 -0
  229. data/lib/active_merchant/billing/gateways/verifi.rb +225 -0
  230. data/lib/active_merchant/billing/gateways/viaklix.rb +176 -0
  231. data/lib/active_merchant/billing/gateways/visanet_peru.rb +245 -0
  232. data/lib/active_merchant/billing/gateways/webpay.rb +97 -0
  233. data/lib/active_merchant/billing/gateways/wepay.rb +237 -0
  234. data/lib/active_merchant/billing/gateways/wirecard.rb +432 -0
  235. data/lib/active_merchant/billing/gateways/world_net.rb +344 -0
  236. data/lib/active_merchant/billing/gateways/worldpay.rb +634 -0
  237. data/lib/active_merchant/billing/gateways/worldpay_online_payments.rb +215 -0
  238. data/lib/active_merchant/billing/gateways/worldpay_us.rb +221 -0
  239. data/lib/active_merchant/billing/model.rb +30 -0
  240. data/lib/active_merchant/billing/network_tokenization_credit_card.rb +39 -0
  241. data/lib/active_merchant/billing/payment_token.rb +21 -0
  242. data/lib/active_merchant/billing/rails.rb +3 -0
  243. data/lib/active_merchant/billing/response.rb +92 -0
  244. data/lib/active_merchant/connection.rb +195 -0
  245. data/lib/active_merchant/country.rb +336 -0
  246. data/lib/active_merchant/empty.rb +20 -0
  247. data/lib/active_merchant/errors.rb +35 -0
  248. data/lib/active_merchant/net_http_ssl_connection.rb +10 -0
  249. data/lib/active_merchant/network_connection_retries.rb +80 -0
  250. data/lib/active_merchant/post_data.rb +25 -0
  251. data/lib/active_merchant/posts_data.rb +92 -0
  252. data/lib/active_merchant/version.rb +3 -0
  253. data/lib/activemerchant.rb +1 -0
  254. data/lib/certs/cacert.pem +3988 -0
  255. data/lib/support/gateway_support.rb +69 -0
  256. data/lib/support/outbound_hosts.rb +28 -0
  257. data/lib/support/ssl_verify.rb +92 -0
  258. data/lib/support/ssl_version.rb +87 -0
  259. metadata +435 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f0a41cb9b02b604ed85baecb422af1a079059684398988554b28b0f8687e2b9c
4
+ data.tar.gz: d7cd83338b420f9daffd795366640b90df3d1bc6958b4fca57e5c7a56305d3b1
5
+ SHA512:
6
+ metadata.gz: f246e21f51270b1e131e9213da1580ae8a191d6e8750f5947a1cba9ec230d61ba231b2dad809a239c86806fc5390be41a0bfec883b648e3cdb2012aa8d648c46
7
+ data.tar.gz: 3144306d408e55b1b07a7d71bd2de726e32d03ddc4db7d0bf78d6da267636d02d46952890fbaecb9c9cb55319f6336895541af0aafaffa4f193b84cfe71618a9
@@ -0,0 +1,2948 @@
1
+ = ActiveMerchant CHANGELOG
2
+
3
+ == HEAD
4
+ * Stripe Payment Intents: Add new gateway [britth] #3290
5
+ * Stripe: Send cardholder name and address when creating sources for 3DS 1.0 [jknipp] #3300
6
+ * Checkout_v2: Support for native 3DS2.0 [nfarve] #3303
7
+ * eWAY Rapid: If no address is available, default to the name associated with the payment method when setting the Customer fields [jasonxp] #3306
8
+ * eWAY Rapid: Fix a bug in which the email was not set in Customer fields if no address was provided [jasonxp] #3306
9
+ * eWAY Rapid: Support both `phone` and `phone_number` fields under the `shipping_address` option [jasonxp] #3306
10
+ * PayU Latam: Add support for the `merchant_buyer_id` field in the `options` and `buyer` hashes [jasonxp] #3308
11
+ * Fat Zebra: Send metadata for purchase and authorize [montdidier] #3101
12
+ * TrustCommerce: Add support for custom fields [jasonxp] #3313
13
+ * Stripe Payment Intents: Support option fields `transfer_destination` and `transfer_amount` and remove `transfer_data` hash [britth] #3317
14
+ * Barclaycard Smartpay: Add support for `shopperStatement` gateway-specific field [jasonxp] #3319
15
+ * Stripe Payment Intents: Add support for billing_details on payment methods [britth] #3320
16
+ * BlueSnap: add standardized 3DS 2 auth fields [bayprogrammer] #3318
17
+ * Barclaycard Smartpay: Add app based 3DS requests for auth and purchase [britth] #3327
18
+ * Stripe Payment Intents, Checkout V2: Add support for `MOTO` flagging [britth] #3323
19
+ * Braintree Blue: Adding 3DS2 passthru support [molbrown] #3328
20
+ * Global Collect: Add Cabal card [leila-alderman] #3310
21
+ * WorldPay: Add Cabal card [leila-alderman] #3316
22
+ * Decidir: Add Cabal card [leila-alderman] #3322
23
+ * PayU Latam: Add Cabal card [leila-alderman] #3324
24
+ * dLocal: Add Cabal card [leila-alderman] #3325
25
+ * BlueSnap: Add Cabal card [leila-alderman] #3326
26
+
27
+ == Version 1.97.0 (Aug 15, 2019)
28
+ * CyberSource: Add issuer `additionalData` gateway-specific field [jasonxp] #3296
29
+ * PayU Latam: Add Naranja card type [hdeters] #3299
30
+ * Adyen: Add app based 3DS requests for auth and purchase [jeremywrowe] #3298
31
+ * MercadoPago: Add Cabal card type [leila-alderman] #3295
32
+ * MONEI: Add external MPI 3DS 1 support [jimmyn] #3292
33
+ * Bambora formerly Beanstream: Pass card owner when storing tokenized cards [alexdunae] #3006
34
+ * Realex: Prevent error calculating `refund_hash` or `credit_hash` when the secret is nil [jasonxp] #3291
35
+ * Orbital: Add external MPI support for 3DS1 [pi3r] #3261
36
+ * Paymill: Add currency and amount to store requests [jasonxp] #3289
37
+ * Realex: Re-implement credit as general credit [leila-alderman] #3280
38
+ * Braintree Blue: Support for stored credentials [hdeters] #3286
39
+ * CardConnect: Move domain from gateway specific to gateway field [hdeters] #3283
40
+ * Adds new Maestro BINs [tanyajajodia] #3305
41
+
42
+ == Version 1.96.0 (Jul 26, 2019)
43
+ * Bluesnap: Omit state codes for unsupported countries [therufs] #3229
44
+ * Adyen: Pass updateShopperStatement, industryUsage [curiousepic] #3233
45
+ * TransFirst Transaction Express: Fix blank address2 values [britth] #3231
46
+ * WorldPay: Add support for store method [bayprogrammer] #3232
47
+ * Adyen: Support for additional AVS code mapping [jknipp] #3236
48
+ * Adyen: Update message for AVS result code 'A' to generically cover postal code mismatches [jknipp] #3237
49
+ * CyberSource: Update CyberSource SOAP documentation link [vince-smith] #3204
50
+ * USAePay: Handle additional error codes and add default error code [estelendur] #3167
51
+ * Braintree: Add `skip_avs` and `skip_cvv` gateway specific fields [leila-alderman] #3241
52
+ * NAB Transact: Update periodic test url [mengqing] #3177
53
+ * NMI: Add level 3 gateway-specific fields tax, shipping, and ponumber [jasonxp] #3239
54
+ * Checkout V2: Update stored card flag [curiousepic] #3247
55
+ * NMI: Add support for stored credentials [bayprogrammer] #3243
56
+ * Spreedly: Consolidate API requests and support bank accounts [lancecarlson] #3105
57
+ * BPoint: Hook up merchant_reference and CRN fields [curiousepic] #3249
58
+ * Checkout V2: Stop sending phone number to Checkout V2 integration [filipebarcos] #3248
59
+ * Barclaycard Smartpay: Add support for 3DS2 [britth] #3251
60
+ * Adyen: Add support for non-fractional currencies [molbrown] #3257
61
+ * Decidir: Add new gateway [jknipp] #3254
62
+ * Checkout V2: Reapply Update stored card flag [curiousepic]
63
+ * CyberSource: Update supported countries [molbrown] #3260
64
+ * Credorax: Update supported countries [molbrown] #3260
65
+ * Kushki: Update supported countries [molbrown] #3260
66
+ * Paypal: Update supported countries [molbrown] #3260
67
+ * BlueSnap: Send amount in capture requests [jknipp] #3262
68
+ * Mundipagg: Add Alelo card support [jasonxp] #3255
69
+ * Adyen: Remove temporary amount modification for non-fractional currencies [molbrown] #3263
70
+ * Adyen: Set blank state to N/A [therufs] #3252
71
+ * MiGS: Add tx_source gateway specific field [leila-alderman] #3264
72
+ * NMI: Correct password scrubber to scrub symbols [hdeters] #3267
73
+ * Global Collect: Only add name if present [curiousepic] #3268
74
+ * HPS: Add Apple Pay raw cryptogram support [slogsdon] #3209
75
+ * CardConnect: Fix parsing of level 3 fields [hdeters] #3273
76
+ * TrustCommerce: Support void after purchase [jknipp] #3265
77
+ * Payflow: Support arbitrary level 2 + level 3 fields [therufs] #3272
78
+ * BlueSnap: Default to not send amount on capture [molbrown] #3270
79
+ * Spreedly: extra fields, remove extraneous check [montdidier] #3102 #3281
80
+ * Cecabank: Update encryption to SHA2 [leila-alderman] #3278
81
+ * Checkout V2: Fix 3DS 1&2 integration [nicolas-maalouf-cko] #3240
82
+ * Credorax: add 3DS2 MPI auth data support [bayprogrammer] #3274
83
+ * Add Kosovo to the list of countries [AnotherJoSmith] #3226
84
+ * Realex: Adds 3DS 1&2 support through external MPI [filipebarcos] #3284
85
+ * PayPal: Adds 3DS 1 support through external MPI [nebdil] #3279
86
+
87
+ == Version 1.95.0 (May 23, 2019)
88
+ * Adyen: Constantize version to fix subdomains [curiousepic] #3228
89
+ * Qvalent: Adds support for standard stored credential framework [molbrown] #3227
90
+ * Cybersource: Send tokenization data when card is :master [pi3r] #3230
91
+
92
+ == Version 1.94.0 (May 21, 2019)
93
+ * Mundipagg: Fix number lengths for both VR and Sodexo [dtykocki] #3195
94
+ * Stripe: Support show and list webhook endpoints [jknipp] #3196
95
+ * CardConnect: Add frontendid parameter to requests [gcatlin] #3198
96
+ * Adyen: Correct formatting of Billing Address [nfarve] #3200
97
+ * Stripe: Stripe: Show payment source [jknipp] #3202
98
+ * Checkout V2: Checkout V2: Correct success criteria [curiousepic] #3205
99
+ * Adyen: Add normalized hash of 3DS 2.0 data fields from web browsers [davidsantoso] #3207
100
+ * Stripe: Do not attempt application fee refund if refund was not successful [jasonwebster] #3206
101
+ * Elavon: Send transaction_currency if currency is provided [gcatlin] #3201
102
+ * Elavon: Multi-currency support [jknipp] #3210
103
+ * Adyen: Support preAuths and Synchronous Adjusts [curiousepic] #3212
104
+ * WorldPay: Support Unknown Card Type [tanyajajodia] #3213
105
+ * Mundipagg: Make gateway_affiliation_id an option [curiousepic] #3219
106
+ * CyberSource: Adds Elo Card Type [tanyajajodia] #3220
107
+ * CyberSource: Support standalone credit for cards [curiousepic] #3225
108
+
109
+ == Version 1.93.0 (April 18, 2019)
110
+ * Stripe: Do not consider a refund unsuccessful if only refunding the fee failed [jasonwebster] #3188
111
+ * Stripe: Fix webhook creation for connected account [jknipp] #3193
112
+ * Adyen: Upgrade to v40 API version [davidsantoso] #3192
113
+
114
+ == Version 1.92.0 (April 8, 2019)
115
+ * BluePay: Send customer IP address when provided [jknipp] #3149
116
+ * PaymentExpress: Use ip field for client_info field [jknipp] #3150
117
+ * Bambora Asia-Pacific: Adds Store [molbrown] #3147
118
+ * Orbital: Pass normalized stored credential fields [curiousepic] #3148
119
+ * Adds Elo card type in general and specifically to Adyen [deedeelavinder] #3153
120
+ * Mercado Pago: Adds Elo card type [deedeelavinder] #3156
121
+ * Litle: Add support for stored credentials [bayprogrammer] #3155
122
+ * Adyen: Correctly process risk_data option [bayprogrammer] #3161
123
+ * Paymentez: Adds Elo card type [deedeelavinder] #3162
124
+ * WorldPay: Adds Elo card type [deedeelavinder] #3163
125
+ * Adyen: Idempotency for non-purchase requests [molbrown] #3164
126
+ * FirstData e4 v27: Support v28 url and stored creds [curiousepic] #3165
127
+ * WorldPay: Fix element order for 3DS + stored cred [bayprogrammer] #3172
128
+ * Braintree: Add risk data to returned response [jknipp] #3169
129
+ * Adyen: Support idempotency on purchase [molbrown] #3168
130
+ * Adyen: Pass phone, statement, device_fingerprint [curiousepic] #3178
131
+ * Adyen: Fix adding phone from billing address [curiousepic] #3179
132
+ * Fix partial or missing address exceptions [molbrown] #3180
133
+ * Adyen: Update to support normalized stored credential fields [molbrown] #3182
134
+ * VisaNet Peru: Always include DSC_COD_ACCION [bayprogrammer] #3174
135
+ * Adyen: Support adjust action [curiousepic] #3190
136
+ * CyberSource: Add support for stored credentials [therufs] #3185
137
+
138
+ == Version 1.91.0 (February 22, 2019)
139
+ * WorldPay: Pull CVC and AVS Result from Response [nfarve] #3106
140
+ * Worldpay: Add AVS and CVC Mapping [nfarve] #3107
141
+ * Paymentez: Fixes extra_params field [molbrown] #3108
142
+ * Improved support for account_type using Check class's account_type instead [lancecarlson] #3097
143
+ * USA Epay: Allow quantity to be passed and check custom fields [lancecarlson] #3090
144
+ * Fix usaepay transaction invoice [lancecarlson] #3093
145
+ * Adyen: Handles blank state address field [molbrown] #3113
146
+ * Braintree: Send all country fields [curiousepic] #3112
147
+ * Braintree: Account for empty string countries [curiousepic] #3115
148
+ * Orbital: Support for stored credentials framework [jknipp] #3117
149
+ * Openpay: Fix for marking successful transaction(s) as failed [jknipp] #3121
150
+ * Braintree: Adds support for transaction_source [molbrown] #3120
151
+ * Moneris: Remove redundant card on file guard clause [davidsantoso] #3123
152
+ * Switch order of Romania country codes [molbrown] #3125
153
+ * Blue Snap: Supports Level 2/3 data [molbrown] #3126
154
+ * Blue Snap: Support personal_identification_number [jknipp] #3128
155
+ * ProPay: Send 9 digit zip code without dash [molbrown] #3129
156
+ * Adyen: Extend AVS code mappings [therufs] #3119
157
+ * NMI: Add customer id to authorization on store [curiousepic] #3130
158
+ * Trans First Express: Don't pass blank name field [curiousepic] #3133
159
+ * TrustCommerce: Send full name on ACH transactions [jknipp] #3132
160
+ * Qvalent: Map CVV Result to responses [curiousepic] #3135
161
+ * Card Connect: Handle 401s as responses [curiousepic] #3137
162
+ * Worldpay: Introduce normalized stored credential options [davidsantoso] #3134
163
+ * Worldpay: Adjust use of normalized stored credentials hash [davidsantoso] #3139
164
+ * Adyen: Enable Dynamic 3DS [molbrown] #3138
165
+ * Fat Zebra: Support voids [curiousepic] #3142
166
+ * Blue Snap: Support ACH/ECP payments [jknipp] #3143
167
+ * Blue Snap: Fix Card-on-File field typo [jknipp] #3143
168
+ * Add Bambora gateway [InfraRuby] #3145
169
+ * Bambora Asia-Pacific: Updates Gateway [molbrown] #3145
170
+ * PaymentExpress: Support ClientInfo field [jknipp] #3131
171
+ * Pin Payments: Concatenate card and customer tokens when storing card [therufs] #3144
172
+ * Update Discover regex to allow card numbers longer than 16 digits [prashcr] #3146
173
+ * Merrco partial refunds fix [payfirma1] #3141
174
+
175
+ == Version 1.90.0 (January 8, 2019)
176
+ * Mercado Pago: Support "gateway" processing mode [curiousepic] #3087
177
+ * Braintree: Update gem to latest version [curiousepic] #3091
178
+ * Adyen: Pass arbitrary riskData fields [curiousepic] #3089
179
+ * Worldpay: Fix cookie header name [curiousepic] #3099
180
+ * Paymentez: Adds support for extra_params optional field [molbrown] #3095
181
+ * Braintree Blue: Support Level 2 and 3 data fields [curiousepic] #3094
182
+ * Braintree Blue: Refactor line_items field [curiousepic] #3100
183
+ * TrustCommerce: Use `application_id` [nfarve] #3103
184
+ * Stripe: Add 3DS Support [nfarve] #3086
185
+ * Cecabank: Append error text to message [therufs] #3127
186
+
187
+ == Version 1.89.0 (December 17, 2018)
188
+ * Worldpay: handle Visa and MasterCard payouts differently [bpollack] #3068
189
+ * QuickPay: update supported countries [ta] #3049
190
+ * WorldPay: set cardholder name to "3D" for 3DS transactions [bpollack] #3071
191
+ * Authorize.Net: Support refunds for bank accounts [nfarve] #3063
192
+ * Stripe: support specifying a reason for refunds [yosukehasumi] #3056
193
+ * Paybox Direct: add support for XPF currency [adam-stead] #2938
194
+ * TrustCommerce: Add ACH Ability [nfarve] #3073
195
+ * Payeezy: Support $0 for verify transactions [molbrown] #3074
196
+ * USA ePay: add support for recurring transactions, custom fields, and line items [lancecarlson] #3069
197
+ * Add dLocal gateway [curiousepic] #3709
198
+ * dLocal: Require secret_key [curiousepic] #3080
199
+ * Adyen: Implement 3DS [nfarve] #3076
200
+ * Adyen: Add 3DS Fix [nfarve] #3081
201
+ * Payeezy: Add `stored_credentials` [nfarve] #3083
202
+ * Fix CVC validation for 0 length CVC [filipebarcos] #3082
203
+ * NMI: Supports vendor_id and processor_id fields [molbrown] #3085
204
+ * Update Braintree Gem [curiousepic] #3311
205
+
206
+ == Version 1.88.0 (November 30, 2018)
207
+ * Added ActiveSupport/Rails master support [Edouard-chin] #3065
208
+
209
+ == Version 1.87.0 (November 29, 2018)
210
+ * Barclaycard Smartpay: Improves Error Handling [deedeelavinder] #3026
211
+ * Braintree: Fix passing phone-only billing address [curiousepic] #3025
212
+ * Litle: Capitalize check account type [curiousepic] #3028
213
+ * Braintree: Account for nil billing address fields [curiousepic] #3029
214
+ * Realex: Add verify [kheang] #3030
215
+ * Braintree: Actually account for nil address fields [curiousepic] #3032
216
+ * Mercado Pago: do not infer card type [bpollack] #3038
217
+ * Credorax: allow sending submerchant ID (h3 parameter) [bpollack] #3040
218
+ * Worldpay: Pass stored credential option fields [curiousepic] #3041
219
+ * Make behavior of nil CC numbers more consistent [guaguasi] #3010
220
+ * Moneris: Adds Credential on File logic [deedeelavinder] #3042
221
+ * Adyen: Return AVS and CVC Result [nfarve] #3044
222
+ * Paymentez: Supports phone field, does not send if empty [molbrown] #3043
223
+ * Braintree: Account for nil address with existing customer [curiousepic] #3047
224
+ * Optimal Payment: Add verify capabilities #3052
225
+ * Moneris: Allows cof_enabled gateway to process non-cof transactions [deedeelavinder] #3051
226
+ * Cenpos: update supported countries [bpollack] #3055
227
+ * CyberSource: update supported countries [bpollack] #3055
228
+ * MiGS: update supported countries [bpollack] #3055
229
+ * Clearhaus: update submission data format [bpollack] #3053
230
+ * Forte: Allow void on capture [nfarve] #3059
231
+
232
+ == Version 1.86.0 (October 26, 2018)
233
+ * UsaEpayTransaction: Support UMcheckformat option for echecks [dtykocki] #3002
234
+ * Global Collect: handle internal server errors [molbrown] #3005
235
+ * Barclaycard Smartpay: allow third-party payouts for credits [bpollack] #3009
236
+ * RuboCop: AlignHash [nfarve] #3004
237
+ * Beanstream: Switch `recurringPayment` flag from boolean to integer [dtykocki] #3011
238
+ * Update Swipe HQ endpoint [bdewater] #3013
239
+ * Braintree: Adds device_data [deedeelavinder] #3012
240
+ * Payflow Express: Add phone to returned Response [filipebarcos] #3003
241
+ * Authorize.Net: Pass some level 3 fields [curiousepic] #3022
242
+ * Add state to the netbanx payload [Girardvjonathan] #3024
243
+
244
+ == Version 1.85.0 (September 28, 2018)
245
+ * Authorize.Net: Support custom delimiter for cim [curiousepic] #3001
246
+
247
+ == Version 1.84.0 (September 27, 2018)
248
+ * PayU Latam: support partial captures [bpollack] #2974
249
+ * Braintree: Reflect correct test mode in Braintree responses [elfassy] #2980
250
+ * FirstPay: Expose error code [curiousepic] #2979
251
+ * Barclaycard Smartpay: Pass device_fingerprint when specified [dtykocki] #2981
252
+ * Komoju: remove no-longer-relevant sandbox URL [miyazawadegica] #2987
253
+ * [POSSIBLE BREAKAGE] Determine credit cards via functions [bpollack] #2983
254
+ * Drop support for Laser cards [bpollack] #2983
255
+ * Improve Maestro card detection [bpollack] #2983
256
+ * Add ROU alpha3 code for Romania [dtykocki] #2989
257
+ * [POSSIBLE BREAKAGE] Drop support for Solo and Switch cards [bpollack] #2991
258
+ * Add support for Carnet cards [bpollack] #2992
259
+ * Stripe: support a reason for voiding a transaction [whitby3001] #2378
260
+ * Payeezy: Add reversal_id in support of timeout reversals [dtykocki] #2997
261
+ * Stripe: support Level 3 transaction fields [bpollack] #2996
262
+ * Conekta: support Carnet cards [bpollack] #2999
263
+ * Openpay: support Carnet cards [bpollack] #2999
264
+ * Adyen: Add support for GooglePay [dtykocki] #2971
265
+
266
+ == Version 1.83.0 (August 30, 2018)
267
+ * CT Payment: Update How Address is Passed [nfarve] #2960
268
+ * Adyen: Add RecurringProcessingModel [nfarve] #2951
269
+ * Optimal Payments: update country list [bpollack] #2961
270
+ * Ebanx: update sandbox and production URLs [vnbrs] #2949
271
+ * Ebanx: support additional countries [vnbrs] #2950
272
+ * Gateway generator: fix a typo that would cause the script to crash [bpollack] #2962
273
+ * Clearhaus: use $0 for verify transactions [bpollack] #2964
274
+ * Global Collect: properly handle partial captures [bpollack] #2967
275
+ * Braintree: Add support for GooglePay [dtykocki] #2966
276
+ * Adyen: allow overriding card brands [bpollack] #2968
277
+ * Adyen: allow custom routing [bpollack] #2969
278
+ * First Pay: Adds scrubbing [deedeelavinder] #2972
279
+
280
+ == Version 1.82.0 (August 13, 2018)
281
+ * FirstData: add support for WalletProviderID in v27 gateway [bpollack] #2946
282
+ * BlueSnap: Handle 403 responses [curiousepic] #2948
283
+ * BlueSnap: Add StoreCard Field [nfarve] #2953
284
+ * Worldpay: support installments [bpollack] #2957
285
+ * Paymentez: support partial refunds [bpollack] #2959
286
+ * Payflow: allow support for partial captures [pi3r] #2952
287
+
288
+ == Version 1.81.0 (July 30, 2018)
289
+ * GlobalCollect: Don't overwrite contactDetails [curiousepic] #2915
290
+ * Pin Payments: Pass reference for statement desc [curiousepic] #2919
291
+ * FirstData: introduce v27 gateway [shasum] #2912
292
+ * Stripe: Fix contactless magstripe support [abhiin1947] #2917
293
+ * ANET: Expose full response code [curiousepic] #2924
294
+ * Global Collect: Fix customer data field structure [curiousepic] #2929
295
+ * Adyen: Set Default Name for Apple Pay Transactions [nfarve] #2930
296
+ * Beanstream: Update to use api key with login credentials [nfarve] #2934
297
+ * CT Payments: Fix a typo in the live URL scheme [bpollack] #2936
298
+ * CyberSource: Don't throw exceptions on HTML responses [bpollack] #2937
299
+ * CyberSource: Remove extraneous parameter blocking echecks [chriscz] #2861
300
+ * FirstPay: Update Fields For Recurring Payments [nfarve] #2940
301
+ * Remove unused handle_response method [bl] #2309
302
+ * Barclaycard Smartpay: bump API version to v30 [bpollack] #2941
303
+ * Safecharge: Remove duplicate supported country [curiousepic]
304
+ * Payflow Express: Use SHIPTONAME instead of `full_name` for shipping address [filipebarcos] #2945
305
+
306
+ == Version 1.80.0 (July 4, 2018)
307
+ * Default SSL min_version to TLS 1.1 to comply with June 30 PCI DSS deadline [bdewater] #2909
308
+ * Paymentez: return a Result object even when the upstream server 500s [bpollack] #2871
309
+ * Drop support for Ruby versions older than 2.3 [bpollack] #2863
310
+ * Bridge Pay: don't throw an exception when bank account type is omitted [bpollack] #2873
311
+ * Avoid making actual connections in Blue Snap and Mundipagg unit tests [bpollack] #2875
312
+ * Avoid making actual connections in the connection unit tests [bpollack] #2876
313
+ * Openpay: support payment installments [bpollack] #2865
314
+ * First Pay: support recurring charges [bpollack] #2877
315
+ * Bridge Pay: pass full name of account type for echeck transactions [bpollack] #2878
316
+ * Kushki: do not send 0 for tax values if tax values are not provided [bpollack] #2886
317
+ * Payflow: Update ACH tests [curiousepic] #2887
318
+ * Credorax: support passing billing description [bpollack] #2889
319
+ * MiGS: scrub 3DS fields [abarrak] #2771
320
+ * Forte: avoid crashing when location_id or account_id have spaces [bpollack] #2890
321
+ * Adyen: Support Network Tokenization Cards via mpiData fields [curiousepic] #2891
322
+ * Moneris US: Add ACH [nfarve] #2888
323
+ * Realex: Pass amount for captures [curiousepic] #2895
324
+ * Card Connect: support storing cards [bpollack] #2896
325
+ * Avoid mutating headers passed in for Active Merchant connections [grantbdev] #2892
326
+ * Forte: add support for refunds [bpollack] #2898
327
+ * Forte: fix a bug in logic for selecting billing names [whitby3001] #2381
328
+ * Paymentez: allow capture amount to exceed authorization amount [bpollack] #2900
329
+ * JetPay: fix typo in error messages [reynhout] #2749
330
+ * Braintree: add support for Maestro cards [matthewheath] #2571
331
+ * Visanet Peru: Refund on unsettled transactions [nfarve] #2772
332
+ * Remove iDeal offsite gateway references [bdewater] #2807
333
+ * Conekta: Allow customer application in headers [curiousepic] #2908
334
+ * Payment Express: use testing URLs when testing [oklas] #2231
335
+ * Redsys: Fix payments with cc token [Leonardo Diez] #2586
336
+ * Redsys: Missing cardnumber params in xml_signed_fields [nerburish] #2628
337
+ * Bogus: allow authorizing with a tokenized card [Azdaroth] #2703
338
+ * CT Payment: Add new gateway [nfarve] #2911
339
+
340
+ == Version 1.79.2 (June 2, 2018)
341
+ * Fix Gateway#max_version= overwriting min_version [bdewater]
342
+
343
+ == Version 1.79.1 (May 31, 2018)
344
+ * Fix Net::HTTP connections defaulting to connection: keep-alive instead of close since #2862 [bpollack] #2868
345
+ * Mundipagg: allow passing holder_document for credit card purchases [bpollack] #2864
346
+ * Conekta: support monthly_installments [bpollack] #2866
347
+ * Authorize.net: allow sending email_customer set to false [bpollack] #2867
348
+
349
+ == Version 1.79.0 (May 30, 2018)
350
+ * Allow setting min/max SSL version for a connection on Ruby 2.5 [bdewater] #2775
351
+ * Add `gateways:ssl:min_version` rake task to test upcoming TLS 1.0 deprecation deadline [bdewater] #2775
352
+ * Log negotiated SSL version and cipher [bdewater + methodmissing] #2862
353
+ * Remove support for Rails < 4.2, add support for Rails 5.2 and Ruby 2.5 [bdewater]
354
+ * Spreedly: Support verify and find transactions [abarrak] #2798
355
+ * Adyen: Support merchant-specific subdomains [curiousepic] #2799
356
+ * Fix ENV based configuration of Net::Http for proxies [bbergstrom] #2800
357
+ * ANET: Withhold cryptogram for credit [curiousepic] #2804
358
+ * Borgun: Remove batch from request parameters [deedeelavinder] #2805
359
+ * WorldPay: Remove Inquiry requests in verify transactions [nfarve] #2802
360
+ * Credorax: Update tests [curiousepic] #2809
361
+ * Braintree: Remove decimal for non-fractional currencies [nfarve] #2806
362
+ * Realex: Add documented country support for US and CA [a-salty-strudel] #2810
363
+ * Paymentez: Add `tax_percentage` optional parameter [deedeelavinder] #2814
364
+ * Braintree: Add `skip_advanced_fraud_checking` optional parameter [deedeelavinder] #2811
365
+ * SafeCharge: Additional gateway options [dtykocki] #2816
366
+ * FirstPay: Handle missing billing addresses [dtykocki] #2822
367
+ * Realex: Add ApplePay Support [nfarve] #2820
368
+ * Checkout V2: Additional gateway options [dtykocki] #2821
369
+ * CyberSource: Support 3ds validate request [curiousepic] #2823
370
+ * Paymentez: Remove card tokenization step from authorize [dtykocki] #2825
371
+ * WorldPay: Add 3DS [nfarve] #2819
372
+ * EBANX: Interpolate authorization string [curiousepic] #2830
373
+ * CyberSource: Support 3DS validation for authorize [curiousepic] #2832
374
+ * Redsys: Fix ISO code for PLN [chopenhauer] #2831
375
+ * Merchant E Solutions: Support transcript scrubbing [curiousepic] #2836
376
+ * Paystation: Support transcript scrubbing [curiousepic] #2837
377
+ * Psigate: Support transcript scrubbing [curiousepic] #2835
378
+ * Braintree: Adding 3D Secure pass thru capabilities [filipebarcos] #2843
379
+ * Authorize.net: Add flexibility for 3D Secure Parameters [filipebarcos] #2844
380
+ * Elavon: Update Country List [nfarve] #2840
381
+ * WorldPay: Update Country List [nfarve] #2841
382
+ * Merchant Warrior: Support transcript scrubbing [curiousepic] #2845
383
+ * NAB Transact: Pass nonfractional amounts correctly [curiousepic] #2843
384
+ * Realex: Update Country List [nfarve] #2842
385
+ * QBMS: Support transcript scrubbing [curiousepic] #2849
386
+ * Adyen: Add support for installments [nfarve] #2839
387
+ * Paymentez: Read messages on Failure with no error [nfarve] #2850
388
+ * Paymentez: Fix response message conditional [curiousepic] #2851
389
+ * Add ability to send email receipt [nfarve] #2852
390
+ * Barclaycard Smartpay: Pass shopper_interaction [curiousepic] #2853
391
+ * Stripe: Treat UGX as a zero-decimal currency [bpollack] #2857
392
+ * Mundipagg: Remove Billing Address if no Address Sent [nfarve] #2855
393
+ * Paypal: Support more robust scrubbing [curiousepic] #2858
394
+ * Stripe: Report internal Stripe errors as failures [bpollack] #2859
395
+ * Authorize.net: Add ability to pass `customer_payment_profile_id` [nfarve] #2854
396
+
397
+ == Version 1.78.0 (March 29, 2018)
398
+ * Litle: Add store for echecks [nfarve] #2779
399
+ * Litle: Add Support for Echeck [nfarve] #2776
400
+ * Orbital: Correct level 2 tax handling [deedeelavinder] #2729
401
+ * Payeezy: Change determination method of endpoint for store request [deedeelavinder] #2731
402
+ * Adyen: Return refusal_reason_raw when present [curiousepic] #2728
403
+ * Payeezy: Update Store method [nfarve] #2733
404
+ * CenPOS: Remove gzip encoding header [curiousepic] #2735
405
+ * Mercado Pago: Allow binary_mode to be changed [nfarve] #2736
406
+ * Stripe: Accept strings for refund_fee_amount [curiousepic] #2738
407
+ * Orbital: Complete scrub test coverage [curiousepic] #2739
408
+ * MIGS: Scrub sensitive data [curiousepic] #2740
409
+ * Worldpay US: Scrub sensitive data [curiousepic] #2742
410
+ * WorldPay: Remove Israel from supported country list [dtykocki] #2746
411
+ * Optimal Payments: Scrub sensitive data [curiousepic] #2743
412
+ * USA Epay Transaction: Scrub sensitive data [curiousepic] #2745
413
+ * MIGS: Add unit test for scrub [curiousepic] #2747
414
+ * Worldpay US: Fix bank account scrub [curiousepic] #2748
415
+ * Litle: Add support for merchantData elements [dtykocki] #2751
416
+ * Paymentez: Add support for purchasing and authorizatin with tokens [bpollack] #2753
417
+ * Ingenico: Remove Trinidad and Tobego from supported country list [bpollack] #2754
418
+ * Barclaycard Smartpay: Remove Georgia from supported country list [bpollack] #2755
419
+ * Merchant Warrior: Remove requirement for state field [joshnuss] #2638
420
+ * Wirecard: Adding missing DigiCert Global Root G2 Cert [filipebarcos] #2759
421
+ * Redsys: Add support for CNY, IDR, INR, KRW and TWD [chopenhauer] #2761
422
+ * Optimal Payments: Fix scrub for double escaping [curiousepic] #2763
423
+ * Orbital: Scrub profile transactions [curiousepic] #2762
424
+ * BlueSnap: Fix currency passing [curiousepic] #2765
425
+ * Stripe: Support pickup_card decline code [dtykocki] #2764
426
+ * Improve scrub testing for five gateways [curiousepic] #2767
427
+ * Payflow: Support scrub [curiousepic] #2768
428
+ * SecureNet: Support scrub [curiousepic] #2769
429
+ * Payeezy: Update transaction method when using stored cards [dtykocki] #2770
430
+ * Citrus Pay, DIBS, 1stPayGateway, Global Transport, NETbilling, Ogone, TNS: remove TLS 1.0 requirement [bdewater] #2774
431
+ * CardStream: Default IP and customer country [dtykocki] #2773
432
+ * Stripe: Support destination amount [dtykocki] #2777
433
+ * GlobalCollect: Update supported country list [dtykocki] #2783
434
+ * Adyen: Support store action [curiousepic] #2784
435
+ * Psigate: Update Test URL and Card [nfarve] #2785
436
+ * USA ePay Transaction: Support ACH/eChecks [curiousepic] #2786
437
+ * PayU Latam: Support language parameter [dtykocki] #2787
438
+ * Payflow: Pass OrderDesc field [curiousepic] #2789
439
+ * Global Collect: Add arbitrary fraudField params [curiousepic] #2790
440
+ * Paystation: Support verify action [curiousepic] #2793
441
+ * Checkout V2: Return error codes in response [curiousepic] #2791
442
+ * CardStream: Change refund to use REFUND_SALE [dtykocki] #2795
443
+ * Spreedly: Scrub sensitive transaction data [abarrak] #2781
444
+ * Stripe: Add `exchange_rate` parameter [WilsonChiang] #2796
445
+ * Mundipagg: New Gateway Implementation [nfarve] #2791
446
+
447
+ == Version 1.77.0 (January 31, 2018)
448
+ * Authorize.net: Allow Transaction Id to be passed for refuds [nfarve] #2698
449
+ * Forte: ensure unit tests are local-only [bpollack] #2696
450
+ * Moneris US: ensure unit tests are local-only [bpollack] #2696
451
+ * Payflow: Change Verify Method for Amex Cards [nfarve] #2693
452
+ * Safe Charge: fix an issue with variable shadowing in the adapter [bpollack] #2697
453
+ * Crashnet: add scrubbing support [bpollack] #2695
454
+ * Barclays EPDQ: add scrubbing support [bpollack] #2695
455
+ * Fat Zebra: add remote scrubbing test [bpollack] #2695
456
+ * Clearhaus: add remote scrubbing test [bpollack] #2695
457
+ * Borgun: add remote scrubbing test [bpollack] #2695
458
+ * Stripe: Added support for the quickchip entry mode option [rbalsdon]
459
+ * Ogone: Add tests for scrubbing [bpollack] #2700
460
+ * Global Transport: Add scrubbing support [bpollack] #2700
461
+ * HPS: Add scrubbing support [bpollack] #2700
462
+ * FirstData E4: Improve scrubbing and add remote scrubbing test [bpollack] #2700
463
+ * Elavon: Add scrubbing support [bpollack] #2700
464
+ * Data Cash: Add scrubbing support [bpollack] #2700
465
+ * Litle: Fix testing URL [wsmoak] #2673
466
+ * Barclays ePDQ Extra Plus: Add missing Entrust root certificates [pacso] #2614
467
+ * Moneris US: Add scrubbing support [bpollack] #2702
468
+ * Mercury: Add scrubbing support [bpollack] #2702
469
+ * Fat Zebra: Tweak remote scrubbing test [bpollack] #2704
470
+ * Card Connect: Add new gateway [nfarve] #2706
471
+ * Payeezy: Ensure store calls are properly scrubbed [dtykocki] #2709
472
+ * Payeezy: Add unit test for scrubbing store call [dtykocki] #2710
473
+ * Element: Correct URL used by store transactions [dtykocki] #2711
474
+ * Borgun: Add support for specifying TerminalID [bpollack] #2712
475
+ * Barclaycard Smartpay: 3DS Implementation [nfarve] #2714
476
+ * Payeezy: Surface gateway_message on failure [curiousepic] #2717
477
+ * Payment Express: Scrub merchant password [curiousepic] #2723
478
+ * Stripe: Fix Partial Application Fee Refunds [curiousepic] #2713
479
+ * GooglePay: Support network tokenized cards [joshnuss] #2725
480
+
481
+ == Version 1.76.0 (January 3, 2018)
482
+ * PayU Latam: Change default text for description [nfarve] #2669
483
+ * Checkout V2: Allows AVS and CVV result details to come through on authorizations [deedeelavinder] #2650
484
+ * Global Collect: Adds boolean option for pre_authorization [deeedeelavinder] #2651
485
+ * Credorax: Pass Transaction Type field [curiousepic] #2653
486
+ * Add CardProcess Gateway [bpollack] #2659
487
+ * Safe Charge: Provision 3DS option for approved merchants [deedeelavinder] #2661
488
+ * PayU Latam: Require payment_country on initialize [curiousepic] #2663
489
+ * Adyen: Remove CVV as Required Field and Determines shopperInteraction [nfarve] #2665
490
+ * SafeCharge: add support for VendorID, WebsiteID, and IP logging [bpollack] #2667
491
+ * Safe Charge: Adds 3DS flag [deedeelavinder] #2668
492
+ * CardProcess: Fix success? to always return true or false [bpollack] #2674
493
+ * SagePay: Correct CVV, AVS codes for Sagepay [singhai0] #2670
494
+ * PayU Latam: Count pending Voids as successful [curiousepic] #2677
495
+ * Mercado Pago: Ensure acess tokens are URL escaped [bpollack] #2675
496
+ * MiGS: Update hash format to SHA256 and restore remote tests [bpollack] #2676
497
+ * MiGS: Support verify calls [bpollack] #2664
498
+ * iATS: Fix Messages with Failure on iATS Server [nfarve] #2680
499
+ * Barclaycard Smartpay: Correct repsonse for fraud rejects #2683
500
+ * Adyen: Allow incomplete addresses in some situations [bpollack] #2684
501
+ * Paymentez: Add new gateway [bpollack] #2685
502
+ * PayU Latam: Provide a mechanism to override the amount in verify [dtykocki] #2688
503
+ * Mercado Pago: Support X-Device-Session-ID Header [bpollack] #2689
504
+ * Mercado Pago: Support arbitrary additional_info JSON [bpollack] #2691
505
+ * FirstData E4: Override ECI value for Apple Pay transactions with Discover [jasonwebster] #2671
506
+ * Quickbooks: Add payment context to Quickbooks charges and refunds [bdewater] #2694
507
+
508
+ == Version 1.75.0 (November 9, 2017)
509
+ * Barclaycard Smartpay: Clean up test options hashes [bpollack] #2632
510
+ * Barclaycard Smartpay: Extra data fields for credits [bpollack] #2631
511
+ * Cyber Source: Correctly passes subscriptionID for store [deedeelavinder] #2633
512
+ * Ebanx: Pass fields for business person responsible [curiousepic] #2635
513
+ * Ebanx: Support Colombian transactions [bpollack] #2636
514
+ * FirstData E4 (Payeezy): Ensure numeric ECI values are zero padded [jasonwebster] #2630
515
+ * Netbanx: Only send currency and billing_details for auths and sales [anotherjosmith] #2643
516
+ * Netbanx: Revert "Fixes basic auth for netbanx by sending the account_number and api_key" [anotherjosmith] #2644
517
+ * PayU Latam: Adds `partnerID`, adjusts phone preferences, allows empty `ip_address`, and adjusts for no `cvv` [deedeelavinder] #2634
518
+ * Sage Payment Solutions: Scrub check info [curiousepic] #2639
519
+ * Worldbank US: Allow using the backup URL [bpollack] #2641
520
+ * Worldbank US: Allow using the backup URL per-request [bpollack] #2645
521
+
522
+ == Version 1.74.0 (October 24, 2017)
523
+ * Adyen: Update list of supported countries [dtykocki] #2600
524
+ * Authorize.net CIM: Handle multiple error messages [amandapuff] #2537
525
+ * Barclaycard Smartpay: Pass street and house_number fields, in addition to standard address [deedeelavinder] #2603
526
+ * Barclaycard Smartpay: Use authorization pspReference for refunds [davidsantoso] #2599
527
+ * Beanstream: Pass email fields without address [curiousepic] #2615
528
+ * Beanstream: Support recurringPayment for auth, capture, and purchase transactions [dtykocki] #2617
529
+ * Borgun: Add support for USD transactions [dtykocki] #2602
530
+ * Borgun: Include currency code from split authorization for voids [dtykocki] #2605
531
+ * Checkout V2: Expose AVS and CVV results for purchases [dtykocki] #2619
532
+ * Credorax: Update response codes [curiousepic] #2595
533
+ * CyberSource: Support 3DSecure requests [curiousepic] #2624
534
+ * Ebanx: Pass person_type and name for stored cards [curiousepic] #2621
535
+ * Ebanx: Support Store and person_type option [curiousepic] #2604
536
+ * Elavon: Update endpoint URLs [curiousepic] #2608
537
+ * Netbanx: Fix basic auth by sending the account_number and api_key [anotherjosmith] #2616
538
+ * Payeezy: Adds support for store [deedeelavinder] #2591
539
+ * PayU Latam: Set payment_country gateway attribute [curiousepic] #2611
540
+ * Redsys: Support the DKK currency type [bpollack] #2618
541
+ * WePay: Only send ip and device for non-recurring transactions [dtykocki] #2597
542
+
543
+ == Version 1.73.0 (September 28, 2017)
544
+ * Adyen: Use original authorization pspReference on Refunds [lyverovski] #2589
545
+ * Braintree Blue: Explicitly require braintree-ruby version 2.78 [anotherjosmith]
546
+ * FirstData E4: Scrub 3DS cryptogram [jasonwebster] #2596
547
+ * PayHub: Replace single quotes with double quotes in error message [matthewheath] #2572
548
+ * Wirecard: Format non-fractional currency amounts correctly [bdewater] #2594
549
+
550
+ == Version 1.72.0 (September 20, 2017)
551
+ * Adyen: Fix failing remote tests [dtykocki] #2584
552
+ * Authorize.net: Remove numeric restriction on customer ID [dtykocki] #2579
553
+ * Authorize.net: Restore default state value for non-US addresses [jasonwebster] #2563
554
+ * Beanstream: Do not default state and zip with empty country [dtykocki] #2582
555
+ * Braintree Blue: Add eci_indicator field for Apple Pay [davidsantoso] #2565
556
+ * Conekta: Add guard clause for details fallbacks [curiousepic] #2573
557
+ * Conekta: Pull required details from billing address [nfarve] #2568
558
+ * DataCash: Enable refunding recurring transactions [davidsantoso] #2560
559
+ * Ebanx: Adds Brazil Specific Parameters [nfarve] #2559
560
+ * Kushki: Add support for refunds [dtykocki] #2575
561
+ * MercadoPago: Additional tweaks for transaction requests [davidsantoso]
562
+ * MercadoPago: Default to alphanumeric order_id [davidsantoso]
563
+ * MercadoPago: Send diners_club cards as diners [davidsantoso] #2585
564
+ * PayU Latam: Correctly condition buyer element fields [curiousepic] #2578
565
+ * PayU Latam: Pass unique buyer fields and country requirements [curiousepic] #2570
566
+ * Qvalent: Support general credit [curiousepic] #2558
567
+ * SafeCharge: Update to Version 4.1.0 [nfarve] #2556
568
+ * WePay: Don't default API version header [curiousepic] #2567
569
+ * WePay: Don't require email for Store [curiousepic] #2588
570
+
571
+ == Version 1.71.0 (August 22, 2017)
572
+ * Bambora formerly Beanstream: Change casing on customerIp variable [aengusbates] #2551
573
+ * Checkout V2: Add localized_amount support to add_invoice function [nicolas-maalouf-cko] #2452
574
+ * Checkout V2: Add UAE to country list [shasum] #2548
575
+ * Checkout V2: Fix success response code validation [nicolas-maalouf-cko] #2452
576
+ * CreditCall: Only allow AVS when specified [curiousepic] #2549
577
+ * CreditCall: Parse additional params from responses [nfarve] #2552
578
+ * CreditCall: Parse more response params [nfavre] #2543
579
+ * MercadoPago: Small tweaks to building requests [davidsantoso] #2555
580
+ * Orbital: Support Network Tokenization Credit Cards [curiousepic] #2553
581
+ * Orbital: Updgrade schema version to 7.1 [curiousepic] #2546
582
+ * Remove HUF from default non-fractional currencies [curiousepic] #2538
583
+ * Stripe: Add support for statement_address parameters for EMV transactions [malcolm-mergulhao] #2524
584
+ * TransFirst Express: Don't send address2 without value [nfarve] #2545
585
+ * TransFirst Express: Fix Optional Fields Being Passed Blank [nfarve] #2550
586
+ * TransFirst: Fix partial refund [nfarve] #2541
587
+ * Vantiv (Litle): Pass 3DS fields [curiousepic] #2536
588
+ * Braintree Blue: Add phone to options [deedeelavinder] #2564
589
+
590
+ == Version 1.70.0 (August 4, 2017)
591
+ * Barclaycard Smartpay: Provider a default billing address house number [nfarve] #2520
592
+ * FirstData E4: Fix duplicate XID and CAVV values in tokenized transactions [jasonwebster] #2529
593
+ * FirstData E4: Loose XSD validation for Payeezy (FirstData E4) [jasonwebster] #2529
594
+ * GlobalTransport: Support partial authorizations [dtykocki] #2511
595
+ * Litle: Update schema and certification tests to v9.12 [curiousepic] #2522
596
+ * Litle: Update urls and name to Vantiv [curiousepic] #2531
597
+ * Mercado Pago: Add gateway support [davidsantoso] #2518
598
+ * Orbital: Add support for level 2 data [dtykocki] #2515
599
+ * PayU Latam: Pass DNI Number [curiousepic] #2517
600
+ * Qvalent: Pass 3dSecure fields [curiousepic] #2508
601
+ * SafeCharge: Correct UserID field name [curiousepic]
602
+ * SafeCharge: Pass UserID field [curiousepic] #2507
603
+ * AuthorizeNet: Allow Response Code 4 to be returned as successful [nfarve] #2530
604
+ * Forte: Remove order number from captures in Forte Gateway [nfarve] #2532
605
+ * PayU Latam: Add additional mandatory fields [deedeelavinder] #2528
606
+
607
+ == Version 1.69.0 (July 12, 2017)
608
+ * WePay: Add payer_rbits and transaction_rbits optional fields [davidsantoso]
609
+ * Adyen: Use Active Merchant standard order_id option for reference [jasonwebster] #2483
610
+ * Correct calculation for three-exponent currencies [curiousepic] #2486
611
+ * SagePay: Use VPSTxId from authorization for refunds [dtykocki] #2489
612
+ * Payflow: Move PAYPAL-NVP header option to a class attribute on the payment gateway [deuxpi] #2492
613
+ * Optimal Payments: Pass CVD indicator accurately [curiousepic] #2491
614
+ * SagePay: Make Repeat purchase if payment is a past authorization [curiousepic] #2495
615
+ * Netbanx: map response errorCodes onto standard error code [iirving] #2456
616
+ * Netbanx: Update supported countries and cardtypes [iirving] #2456
617
+ * Barclaycard Smartpay: Support 0- and 3-exponent currencies [curiousepic] #2498
618
+ * CyberSource: Fix XSD schema validation issues [jasonwebster] #2497
619
+ * WorldPay: Support three-decimal currencies [curiousepic] #2501
620
+ * NMI: Add first and lastname to echeck transactions [dtykocki] #2499
621
+ * PayFlow: Add optional email field [davidsantoso] #2505
622
+ * Worldpay: Support Credit on CFT-enabled merchant IDs [curiousepic] #2503
623
+ * FirstPay: Add processor_id field [davidsantoso] #2506
624
+ * Authorize.Net: Use two character default for billing state [dtykocki] #2496
625
+
626
+ == Version 1.68.0 (June 27, 2017)
627
+ * Authorize.Net: Return failed response if forced refund settlement fails [bizla] #2476
628
+ * Authorize.net: Concatenate address1 and address2 [dtykocki] #2479
629
+ * Braintree Blue: Braintree Blue: Add ECI indicator to Android Pay transactions [davidsantoso] #2474
630
+ * Credorax: Support 0- and 3-exponent currencies [curiousepic]
631
+ * Cybersource: update supported card types [bdewater] #2477
632
+ * FirstData: Add a default network tokenization strategy for FirstData E4 [krystosterone] #2473
633
+ * FirstPay: FirstPay: Update hostname and force TLSv1 minimum [davidsantoso] #2478
634
+ * JetPay V2: Support store transactions and token based payments [shasum] #2475
635
+ * Moneris: Add 3DS fields for decrypted Apple and Android Pay data [davidsantoso] #2457
636
+ * Openpay: Send customer name and email in authorize and purchase [dtykocki] #2468
637
+ * Payflow: Moved to name value pair (NVP) with payflow [jusleg] #2462
638
+ * Payflow: Set PAYPAL_NVP header as optional [davidsantoso] #2480
639
+ * QuickPay V10: Return last response for purchase and authorize [curiousepic] #2461
640
+ * SafeCharge: Map billing address fields [davidsantoso] #2464
641
+ * SafeCharge: Track currency from original transaction [davidsantoso] #2470
642
+ * Support three-decimal currencies [curiousepic] #2466
643
+ * Trexle: Add gateway support [hossamhossny] #2351
644
+
645
+ == Version 1.67.0 (June 8, 2017)
646
+ * Acapture: Pass 3D Secure fields [davidsantoso] #2451
647
+ * Authorize.net: Pass Level 2 Data Fields [curiousepic] #2444
648
+ * Credorax: Add 3D Secure authentication fields [davidsantoso] #2446
649
+ * Ebanx: Add gateway support [davidsantoso] #2447
650
+ * Ebanx: Reduce supported countries to Brazil and Mexico [davidsantoso]
651
+ * FirstData Payeezy: Set default ECI value for auth/purchase transactions [jasonwebster] #2448
652
+ * JetPay V2: Add new gateway [shasum] #2442
653
+ * JetPay V2: Add optional tax data to capture calls [shasum] #2445
654
+ * NMI: Add Network Tokenization support [shasum] #2431
655
+ * Orbital: Pass soft descriptors from options hash [curiousepic]
656
+ * Orbital: Update test and production urls [jcowhigjr] #2436
657
+ * Payeezy: Add client_email field for telecheck [davidsantoso] #2455
658
+ * Payeezy: Add customer_id_type and customer_id_number fields [davidsantoso] #2454
659
+ * Quickpay V10: Fix store and token use for recurring payments [wsmoak] #2180
660
+ * Elavon: Support custom fields [curiousepic] #2416
661
+ * WePay: Support risk headers [shasum] #2419
662
+ * WePay: Add Canada as supported country [shasum] #2419
663
+ * Fat Zebra: Fix xid 3D Secure field [curiousepic]
664
+ * SafeCharge: Mark support for European countries [curiousepic]
665
+ * Checkout V2: Pass customer ip option [curiousepic]
666
+ * Realex: Map AVS and CVV response codes [davidsantoso] #2424
667
+ * Opp: Send disable3DSecure custom parameter if present [davidsantoso] #2432
668
+ * SafeCharge: Map standard Active Merchant order_id field [davidsantoso] #2434
669
+ * Payeezy: Default check number to 001 if not present [davidsantoso] #2439
670
+ * Opp: Fix incorrect customParameter key to disable 3DS [davidsantoso]
671
+
672
+ == Version 1.66.0 (May 4, 2017)
673
+ * Support Rails 5.1 [jhawthorn] #2407
674
+ * ProPay: Add Canada as supported country [davidsantoso]
675
+ * ProPay: Add gateway support [davidsantoso] #2405
676
+ * SafeCharge: Support credit transactions [shasum] #2404
677
+ * WePay: Add scrub method [shasum] #2406
678
+ * iVeri: Add gateway support [curiousepic] #2400
679
+ * iVeri: Support 3DSecure data fields [davidsantoso] #2412
680
+ * Opp: Fix transaction success criteria and clean up options [shasum] #2414
681
+
682
+ == Version 1.65.0 (April 26, 2017)
683
+ * Adyen: Add Adyen v18 gateway [adyenpayments] #2272
684
+ * Authorize.Net: Force refund of unsettled payments via void [bizla] #2399
685
+ * Barclays ePDQ: removed because it has been replaced by a new API [bdewater] #2331
686
+ * Beanstream: Map ISO province codes for US and CA [shasum] #2396
687
+ * Braintree Blue: Change :full_refund option to :force_full_refund_if_unsettled [bizla] #2403
688
+ * Braintree Blue: Force refund of unsettled payments via void [bizla] #2398
689
+ * Checkout V2: Fix sandbox URL [nicolas-maalouf-cko] #2391
690
+ * Checkout V2: Fix success_from not properly checking two possible success codes [davidsantoso]
691
+ * Cybersource: Rescue XML parse exception [shasum] #2380
692
+ * GlobalCollect: Make message and error reporting more robust [curiousepic] #2370
693
+ * GlobalCollect: Set REJECTED refunds as unsuccessful transactions [davidsantoso] #2365
694
+ * GlobalCollect: Truncate firstName field to 15 characters [davidsantoso]
695
+ * JetPay: Pass down authorization payment method token to refund a capture [davidsantoso]
696
+ * Openpay: Support card points [shasum] #2401
697
+ * Orbital: Don't send CVV indicator if CVV is not present [curiousepic] #2368
698
+ * PayU LATAM: Fix incorrect capture method definition [davidsantoso]
699
+ * Payeezy: Support dynamic soft descriptors [shasum] #2384
700
+ * Pin: Add metadata optional field [shasum] #2363
701
+ * Qvalent: Add soft descriptor fields. Add authorize, capture, and void [davidsantoso]
702
+ * SafeCharge: Add gateway [davidsantoso]
703
+ * SagePay: Support Repeat transactions [curiousepic] #2395
704
+ * Stripe: Support custom application in X-Stripe-Client-User-Agent header [davidsantoso]
705
+ * TransFirst Transaction Express: Support ACH [curiousepic] #2389
706
+ * WePay: Support unique_id for idempotent transactions [shasum] #2367
707
+ * Worldpay: Force refund of unsettled payments via void [bizla] #2402
708
+
709
+ == Version 1.64.0 (March 6, 2017)
710
+ * Authorize.net: Allow settings to be passed for CIM purchases [fwilkins] #2300
711
+ * Authorize.net: Use new `unsupported_feature` standard error code [jasonwebster] #2322
712
+ * Base Gateway: Add new `unsupported_feature` standard error code [jasonwebster] #2322
713
+ * Braintree Blue: Pass cardholder_name with card [curiousepic] #2324
714
+ * Braintree: Add Android Pay meta data fields [jknipp] #2347
715
+ * CardStream: Add additional of currencies [shasum] #2337
716
+ * Credorax: Return failure response reason [shasum] #2341
717
+ * Digitzs: Add gateway [davidsantoso]
718
+ * Digitzs: Remove merchant_id from gateway credentials [davidsantoso]
719
+ * GlobalCollect: Pass options to Refund [curiousepic] #2330
720
+ * Kushki: Add new gateway [shasum] #2326
721
+ * Kushki: Remove body from void call [shasum] #2348
722
+ * Linkpoint: Raise ArgumentError when trying to instantiate without `:pem` [jasonwebster] #2329
723
+ * Omise: Enable Japan, JPY and JCB support [zdk] #2284
724
+ * PayU LATAM: Count pending refunds as succeeded [curiousepic] #2336
725
+ * PayU LATAM: Let Refund take amount value [curiousepic] #2334
726
+ * Paymill: Send new required fields on tokenization requests [tschelabaumann] #2279
727
+ * Revert "Authorize.net: Allow settings to be passed for CIM purchases" [curiousepic] #2339
728
+ * Sage: Default billing state when outside US [shasum] #2340
729
+ * Stripe: Remove idempotency key from verify [shasum] #2335
730
+ * TransFirst Transaction Express: Don't send order_id with refunds [curiousepic] #2350
731
+ * TransFirst Transaction Express: Fix improper AVS and CVV response code mapping [shasum] #2342
732
+ * WePay: Update API version [shasum] #2349
733
+ * USA ePay Advanced: Add quick_update_customer action [joshreeves] #2229
734
+
735
+ == Version 1.63.0 (February 2, 2017)
736
+ * Authorize.net: Add #unstore support [jimryan] #2293
737
+ * AuthorizeNet: Fix line items quirk [shasum]
738
+ * CardStream: Add dynamic descriptor option fields [curiousepic]
739
+ * CardStream: Support PEN currency [shasum]
740
+ * Culqi: Add new gateway [shasum]
741
+ * CyberSource: Add Lebanon to supported countries [shasum]
742
+ * Element: Add AVS and CVV codes to response [shasum]
743
+ * Firstdata E4 (Payeezy): Set correct ECI value for card present swipes [jasonwebster] #2318
744
+ * GlobalCollect: On purchase skip capture if not required [davidsantoso]
745
+ * PaymentExpress: Update supported countries [shasum]
746
+ * Remove leading or trailing whitespace from credit card name [davidsantoso]
747
+ * Remove support for Ruby 2.0 [jasonwebster]
748
+ * Secure Pay AU: Add scrubbing support to Secure Pay AU [bruno] #2253
749
+ * Stripe: Fix error in handling of track-only contactless EMV data [jasonwebster]
750
+ * Vanco: Update test URL [davidsantoso]
751
+ * WePay: Build fee structure correctly [curiousepic]
752
+ * WePay: Remove null address fields from request [davidsantoso]
753
+ * WePay: Update WePay to API version 2016-12-07 [davidsantoso]
754
+ * Wirecard: Send customer data in requests [davidsantoso]
755
+ * Worldpay: Add session id attribute [shasum]
756
+ * Worldpay: Do not default address when not provided [shasum]
757
+
758
+ == Version 1.62.0 (December 5, 2016)
759
+ * AuthorizeNet: Map to standard AVSResult codes [shasum]
760
+ * CitrusPay: Add 3DSecureId field [davidsantoso]
761
+ * CyberSource: Only get alpha2 country code when it's a known country [bruno] #2238
762
+ * Fat Zebra: Add scrubbing to Fat Zebra gateway [bruno] #2037
763
+ * Monei: Add US and CA as new supported countries [davidgf] #2209
764
+ * NAB Transact: Add scrubbing to NAB Transact [bruno] #2038
765
+ * iATS: Add scrubbing support to iATS [bruno] #2228
766
+ * Stripe: Ensure ECI values for tokenized cards are padded [jasonwebster] #2250
767
+ * Forte: Fix incorrect authorization_code response mapping [davidsantoso]
768
+ * maxiPago: Send currency with request [curiousepic]
769
+ * Credorax: Map order_id to field H9 [curiousepic]
770
+ * Authorize.net: Remove duplicate country GB [shasum]
771
+ * PayU Latam: Add processWithoutCvv2 field [shasum]
772
+ * Fat Zebra: De-nest soft descriptor fields [curiousepic]
773
+ * Credorax: Only pass c5 field for billing address1 [davidsantoso]
774
+ * Orbital: Add support for CLP currency [curiousepic]
775
+ * Authorize.net: Add line item fields and additional transaction settings [shasum]
776
+ * Authorize.net: Pass through `header_email_receipt` [shasum]
777
+ * Stripe: Scrub additional network tokenization related sensitive data [jasonwebster] #2251
778
+ * Applying: Worldpay: Format non-fractional currency amounts correctly [jasonwebster] #2267
779
+
780
+ == Version 1.61.0 (November 7, 2016)
781
+ * Add codes AQ, BQ, SX, and SS to list of countries and update SD numeric code [zxlin]
782
+ * AuthorizeNet: Update supported countries list [shasum]
783
+ * Barclay SmartPay: Add support for credit [shasum]
784
+ * Barclaycard SmartPay: Update supported countries [shasum]
785
+ * BluePay: Add Canada to supported countries list [shasum]
786
+ * BlueSnap: Update countries list [shasum]
787
+ * Braintree Blue: Add Android Pay support [mrezentes]
788
+ * Braintree Blue: Add remote test to verify card token [shasum]
789
+ * Braintree Blue: Get Android Pay tx id from payment method, not options [mrezentes]
790
+ * CardStream: Add MXN currency code [curiousepic]
791
+ * CardStream: Set captureDelay to zero on purchase [davidsantoso]
792
+ * CitrusPay: Add gateway [duff]
793
+ * CitrusPay: Update URL to current API version [davidsantoso]
794
+ * Clearhaus: Fix refund of captures [duff]
795
+ * Clearhaus: Update list of non fractal currencies [curiousepic]
796
+ * Clearhaus: Use localized amount [curiouspic]
797
+ * Conekta: Add void action [MauricioMurga]
798
+ * Credorax: Add gateway support [davidsantoso]
799
+ * CyberSource, Paymill, Payflow: Add verify_credentials [duff]
800
+ * CyberSource: Combine auth_reversal with Void [curiousepic]
801
+ * CyberSource: Increase merchant defined data fields [davidsantoso]
802
+ * CyberSource: Look up alpha2 country code [curiousepic]
803
+ * CyberSource: Use localized_amount [curiousepic]
804
+ * Element: Pass order_id and shipping address [curiousepic]
805
+ * Fat Zebra: Add cavv, xid, and sli fields [curiousepic]
806
+ * Fat Zebra: Fix improper descriptor nesting [curiousepic]
807
+ * Find countries if they are differently cased [curiousepic]
808
+ * GlobalCollect: Update credit card brand list [curiousepic]
809
+ * Jetpay: Support endpoint for Canada [shasum]
810
+ * Linkpoint: Clean whitespace from PEM [curiousepic]
811
+ * Litle: Retain amount to send in auth reversals [curiousepic]
812
+ * Litle: add scrubbing support [bruno]
813
+ * MONEI: Update supported countries list [davidgf]
814
+ * MiGS: Handle IDR currency [curiousepic]
815
+ * Migs: Add support for void [mohsenottello]
816
+ * Migs: Support some additional fields [duff]
817
+ * Moneris: Fix unit test stubs [shasum]
818
+ * Moneris: add scrubbing support [bruno]
819
+ * NMI, FirstData: Support verify_credentials [curiousepic]
820
+ * Openpay: Add support for verify [duff]
821
+ * PayJunctionV2: Add gateway support [shasum]
822
+ * PayU Latam: Add new gateway [shasum]
823
+ * PayU Latam: Update supported countries list [shasum]
824
+ * Payflow: Update supported countries list [shasum]
825
+ * PaypalExpress: Add SoftDescriptor field [talyssonoc]
826
+ * Redsys: Added DOP and CRC currency [davidsantoso]
827
+ * Sage: Add support for scrubbing [bruno]
828
+ * SagePay: Fix truncation [duff]
829
+ * SecurionPay: Update supported countries list [shasum]
830
+ * Stripe: Increase authorize amount during verify [davidsantoso]
831
+ * Stripe: Set minimum authorize amount depending on currency [davidsantoso]
832
+ * Stripe: Support new network tokenization API params [methodmissing]
833
+ * Stripe: Update supported countries list [shasum]
834
+ * TNS and CitrusPay: Support scrub and verify_credentials [duff]
835
+ * TNS and CitrusPay: Update to version 36 of the API [duff]
836
+ * TNS: Try TLS v1 [duff]
837
+ * Telr: Add gateway support [curiousepic]
838
+ * TransFirsTransactionExpress: Remove blank cvv element [davidsantoso]
839
+ * TransFirsTransactionExpress: Take into account blank string CVV [davidsantoso]
840
+ * Vanco: Improve handling of success determination [duff]
841
+ * Worldpay: Add hcgAdditionalData element [davidsantoso]
842
+ * Worldpay: Report error code [curiousepic]
843
+
844
+ == Version 1.60.0 (July 4, 2016)
845
+ * Orbital: Fix CC num leak on profile calls [drewblas]
846
+ * VisaNetPeru: Add ability to refund [duff]
847
+ * AuthorizeNet: Fix store using new profile [duff]
848
+ * Clearhaus: Support private key for signature [curiousepic]
849
+ * Clearhaus: Copy private_key when stripping [curiousepic]
850
+ * CertoDirect: Remove gateway [shiroginne]
851
+ * Braintree: Extra error messaging [jordan-brough]
852
+ * AuthorizeNetCim: Set error code for AuthorizeNetCimGateway response [ka8725]
853
+ * Quickpay v10: Remove amount requirement for store [curiousepic]
854
+ * PSLCards: correct namespace in doc for Response object from ActiveRecord::Billing to ActiveMerchant::Billing [CJ Keeney]
855
+ * Pagar.me: Add pagar.me [chrisenytc]
856
+ * Stripe: Update Readme to show stripe support [rhlrjv]
857
+ * Orbital: Add support for the BRL currency [duff]
858
+ * GlobalTransport: Require TLSv1 [duff]
859
+ * Openpay: Allow currency to be specified [darkaz]
860
+ * DataCash: Use API version 2 [curiousepic]
861
+ * Stripe: Support verify_credentials [duff]
862
+ * AuthorizeNet: Support verify_credentials [duff]
863
+ * BraintreeBlue: Support verify_credentials [duff]
864
+ * Redsys: Added SAR currency [agseco]
865
+ * QuickPay: Adding customer_ip for authorize action in quickpay [dinesh]
866
+ * MaxiPago: add void and refund [shasum]
867
+ * MaxiPago: Allow processor_id override [duff]
868
+ * Stripe: Interpret string input to store method as token identifier [bizla]
869
+ * MaxiPago: Add verify and scrub [shasum]
870
+ * Stripe: Remove metadata restriction from EMV transactions [bizla]
871
+ * SagePay: Add optional fields to SagePay requests [cristianstanescu]
872
+ * CyberSource: Assign default with override for billing address and email [shasum]
873
+ * CyberSource: Assign default order_id [duff]
874
+ * TNS: Support asia_pacific endpoint [curiousepic]
875
+ * TransFirsTransactionExpress: Fix exception [duff]
876
+ * CyberSource: Add decision manager optional fields [shasum]
877
+ * CyberSource: Add decision manager optional fields [shasum]
878
+ * TNS: Add support for TLS v1.2 [curiousepic]
879
+ * QuickpayV7: Default description field for store operation [duff]
880
+ * Elavon: Support customer_number field [duff]
881
+ * Map test_mode_live_card code to new standard error code [berkcaputcu]
882
+ * Elavon: Pass customer_number correctly [duff]
883
+ * Stripe: add SG to supported_countries attribute [timbeiko]
884
+
885
+ == Version 1.59.0 (May 18, 2016)
886
+ * Orbital: Allow AVS parts to be sent sans country [duff]
887
+ * SecureNet: Return the right error message for declines [duff]
888
+ * Moneris: Add verify [anellis]
889
+ * Moneris: Add verify [anellis]
890
+ * Jetpay: Add support for origin field[anellis]
891
+ * Jetpay: Don't default origin field [duff]
892
+ * GlobalCollect: New gateway support [curiousepic]
893
+ * Openpay: Use strict_encode64 [duff]
894
+ * Sage: Always pass along the billing state [duff]
895
+ * VisaNet Peru: New gateway support [shasum]
896
+ * Worldpay: Allow installationId to be specified at transaction time [duff]
897
+ * SecurionPay: Support store [shasum]
898
+ * Barclaycard Smartpay: Proper AVS return codes [curiousepic]
899
+ * VisaNetPeru: Pass through CVV [duff]
900
+ * Barclaycard Smartpay: Use strict_encode64 [duff]
901
+ * VisaNetPeru: Fix error when billing address empty [shasum]
902
+ * Vanco: Update live_url [duff]
903
+ * Cardstream: Reference purchase [curiousepic]
904
+ * Paymill: Fix error handling [methodmissing]
905
+ * Latitude19: New gateway support [shasum]
906
+ * BraintreeBlue: remove invalid test assertions [prburke]
907
+ * Merchant e-Solutions: Pass order_id with capture [curiousepic]
908
+ * CyberSource: Add rescue for ResponseErrors [curiousepic]
909
+ * AuthorizeNet: Always pass recurringBilling flag if present [curiousepic]
910
+ * S5: Pass order_id to TransactionID [curiousepic]
911
+ * NMI: Set ACH sec_code from options if present [curiousepic]
912
+ * VisaNet Peru: Refactor merchant_id and purchase_number handling [shasum]
913
+ * Braintree Blue: Pass descriptor_url field [curiousepic]
914
+ * VisaNet Peru: Add merchant_define_data option [duff]
915
+ * Merchant e-Solutions: pass optional 3Dsecure params [curiousepic]
916
+ * NMI: Fix refunds and voids of echecks [duff]
917
+ * VisaNet Peru: Pass dummy email when not present [curiousepic]
918
+ * PayU India: Add Maestro as supported card [curiousepic]
919
+ * Cashnet: Don't retry [duff]
920
+ * CardStream: Make Void call Cancel instead of Refund [curiousepic]
921
+ * Remove AN and KV country codes as they're not recognized by ISO-3166-1 [apdunston]
922
+ * Worldpay: Pass unchanged amount with correct currency exponent [curiousepic]
923
+ * Improve our handling of currencies sans fractions [duff]
924
+ * Stripe: Added support for the contactless magstripe entry mode option [rbalsdon]
925
+ * VisaNet Peru: Change money format to dollars [shasum]
926
+ * BlueSnap: Add gateway [duff]
927
+ * VisaNet Peru: Select the most meaningful gateway error message [shasum]
928
+ * SecurionPay: Update country list [duff]
929
+ * Support for BIN 2 MasterCard brand detection [rbalsdon]
930
+ * CardStream: Fix signature calculation [duff]
931
+ * CyberSource: Update test and live URL [marquisong]
932
+ * AuthorizeNet: Truncate nameOnAccount field [duff]
933
+ * Tns: Fix ipAddress field [duff]
934
+ * WorldNet: New gateway support [varyonic]
935
+ * BraintreeBlue: Allow channel override [duff]
936
+ * MerchantWarrior: Use Truncated Order Id [ThereExistsX]
937
+
938
+
939
+ == Version 1.58.0 (March 1, 2016)
940
+ * Move Electron check out of CreditCard into CreditCardMethods [ThereExistsX]
941
+ * CardStream: Add AED and NZD currencies [sdball]
942
+ * App55: Remove Gateway [ThereExistsX]
943
+ * Mercury: Stripping the start and end sentinels on card-present track data for max-length track1 requests [ryanbalsdon]
944
+ * SagePay: Update VISA Electron ranges [sdball]
945
+ * Clearhaus: Make request signing more transparent & robust [sdball]
946
+ * NCRSecurePay: Fix production URL [rwdaigle]
947
+ * Add ACH support to Stripe [sdball]
948
+ * PayPal Express: Fixing list of currencies without fractions [Krystosterone]
949
+ * Cashnet: Default custcode option and proper redirect handling [rwdaigle]
950
+ * TransFirst: Fix missing address and remove CC only fields for ACH [davidsantoso]
951
+ * More prominent links to contribution docs [rwdaigle]
952
+
953
+
954
+ == Version 1.57.0 (February 1, 2016)
955
+ * AuthorizeNetCim: Add unmaskExpirationDate option [RamilGilmanov]
956
+ * Element: Add gateway support [davidsantoso]
957
+ * Cardstream: 3D-secure capture fix [duff]
958
+ * Auth.net: Update store to create payment profiles [davidsantoso]
959
+ * CyberSource: Add support for mdd_fields [duff]
960
+ * Worldpay: Add support for verify [davidsantoso]
961
+ * Element: Add guard clause to handle undocumented errors [davidsantoso]
962
+ * Clearhaus: Add tests for signed requests [anellis]
963
+ * Stripe: Support adding cards to account [anellis]
964
+ * Clearhaus: Add text_on_statement option [anellis]
965
+ * Payeezy: Void and verify support [davidsantoso]
966
+ * Creditcall: Use ecommerce rather than cnp [duff]
967
+ * Payeezy: Add support for echecks [davidsantoso]
968
+ * Bridgepay: Add ability to store cards and pay with token [anellis]
969
+ * Initial support for Android Pay network tokenization cards [mrezentes]
970
+ * Transfirst: Fix exception when not all eCheck information is present [davidsantoso]
971
+ * Auth.net: Add tests for echeck refunds [davidsantoso]
972
+ * Transfirst: use default values for some eCheck data [davidsantoso]
973
+ * Element: Update the live URL endpoint [davidsantoso]
974
+ * Element: Parse responses from unexpected API errors [davidsantoso]
975
+ * Transfirst: Remove unused fields for echeck [davidsantoso]
976
+ * Sage: Internal refactoring into a single gateway class w/ common http conn [anellis]
977
+ * Cardstream: Adjust authorize and capture transactions [anellis]
978
+ * NCRSecurePay: New gateway support (Monetra white-label) [rwdaigle]
979
+ * Element: Map ReferenceNumber to order_id [duff]
980
+ * Element: Use a better MotoECICode default [duff]
981
+ * BraintreeBlue: Return transaction id for failed transactions when available [prburke]
982
+ * PayPal: Add InContextPaypalExpressGateway [xuorig]
983
+ * TransFirst: CVV is a required tag [duff]
984
+ * Checkout V2: Add Descriptor Name and City Options [anellis]
985
+ * Forte: Pass order_id [anellis]
986
+ * Merchant ESolutioins: Truncate order_id [anellis]
987
+ * Transfirst Transaction Express: New gateway support [sdball]
988
+ * Stripe: Add `stripe_account` header option [anellis]
989
+ * Cardstream: Add AVS code and message [anellis]
990
+ * Barclaycard Smartpay: New gateway support [curiousepic]
991
+ * Transfirst: Fix missing address and remove CC only fields for ACH [davidsantoso]
992
+ * Stripe: Support ACH payments [sdball]
993
+ * NCRSecurePay: Fix production URL [rwdaigle]
994
+ * Clearhaus: Make request signing more transparent & robust [sdball]
995
+ * SagePay: Properly detect Electron brand [sdball]
996
+ * Mercury: Fix for max-length track 1 [ryanbalsdon]
997
+
998
+
999
+ == Version 1.56.0 (December 1, 2015)
1000
+ * Add Cardknox gateway [dlehren]
1001
+ * Mercury: Add support for card present track 2 [ryanbalsdon]
1002
+ * Cardstream: Improve default currency handling [duff]
1003
+ * Mercury: Strip start and end sentinels on track 2 [ryanbalsdon]
1004
+ * Redsys: Support new SHA256 authentication method [davidsantoso]
1005
+ * Cashnet: Allow custcode override [duff]
1006
+ * Add Rails 5 support [rafaelfranca]
1007
+ * Set required Ruby version for install to 2 or greater [rafaelfranca]
1008
+ * JetPay: Pass ud_fields in capture too [duff]
1009
+ * Stripe: Correctly detect test mode refunds [aprofeit]
1010
+ * Fix variables in remote gateways test template [sdball]
1011
+ * Micropayment: Update fieldnames for new API [duff]
1012
+ * Fix CreditCard#valid_number? erroring on non-digit characters [PatrickTulskie]
1013
+ * Stripe: Correctly detect test mode voids [methodmissing]
1014
+ * Garanti: Add test mode URL and update remote test credentials [cbilgili]
1015
+ * Cashnet: Allow custcode override on refund [duff]
1016
+ * Omise: Add a new optional api_version config [zdk]
1017
+ * Elavon: Include IP address in purchase and authorize requests [aprofeit]
1018
+ * TransFirst: Add support for ACH and more operations [davidsantoso]
1019
+ * FirstData_e4: Fix void for even dollar transactions [duff]
1020
+
1021
+ == Version 1.55.0 (November 9, 2015)
1022
+ * CyberSource: send customer IP address when provided [fastjames]
1023
+ * Braintree: Simplify Braintree scrubbing when no transcript [duff]
1024
+ * AuthorizeNet: Allow market_type override [duff]
1025
+ * FirstData_e4: Support level_2 data [duff]
1026
+ * FirstData_e4: Fix level_2 and level_3 [duff]
1027
+ * MerchantWareFour: Use Void not PreAuthorizationVoid [duff]
1028
+ * JetPay: Allow partial captures [duff]
1029
+ * Creditcall: Fix production url [duff]
1030
+ * FirstData_e4: Fix float error in Void [duff]
1031
+ * Micropayment: Upgrade to new API [mrezentes]
1032
+ * Netbilling: Add order_id to user_info [mrezentes]
1033
+ * Stripe: scrub swipe/track, EMV data out of gateway transcripts [girasquid]
1034
+ * Remove integration_mode [mattfawcett]
1035
+ * Allow setting CVV requirement at instance level [fabiokr]
1036
+ * Add SecurionPay gateway [szajbus]
1037
+ * AuthorizeNet: Don't send currency to void [duff]
1038
+ * Add Komoju gateway [k2nr]
1039
+ * Replace Connection magic numbers with constant references [larrylv]
1040
+ * Add CAMS gateway [trevorgrayson]
1041
+ * PayPal Express: Fix AllowedPaymentMethod [edclements]
1042
+ * Litle: Store credit card from PayPage [dontmatta]
1043
+ * Orbital: Deprecate profile management API [ntalbott]
1044
+ * FirstData e4: Honor currency when supplied [tchill]
1045
+ * Authorize.net: Add config_error standard error code [andrewpaliga]
1046
+ * PayPal Express: Add support for TotalType in SetExpressCheckout [gingerhendrix]
1047
+ * eWay Rapid: Add :invoice option [DylanFM]
1048
+ * Braintree: Add nonce payment method [eric1234,cwoodcox]
1049
+ * Payflow: Allow passing of 3D Secure details via options [marquisong]
1050
+ * Elavon: Support capture via CCCOMPLETE without credit card [marquisong]
1051
+ * Securenet: Allow setting test_mode independently [wedstar]
1052
+ * Replace Base.integration_mode and Base.gateway_mode with just Base.mode [aprofeit]
1053
+ * Micropayment: Allow specification of a project [duff]
1054
+ * QuickpayV10: Truncate order_id [duff]
1055
+ * FirstData_e4: Fix Level 2 data [duff]
1056
+ * Remove some duplication around name handling [duff]
1057
+ * FirstData_e4: Support Tax1Number [duff]
1058
+ * Add Transact Pro gateway [varyonic]
1059
+ * Add Payeezy gateway [huoxito]
1060
+ * USAePay: Add test mode setting via options [marquisong]
1061
+ * Add Clearhaus gateway [dinesh]
1062
+ * WorldpayOnlinePayments: Fix logic to determine success [ao]
1063
+ * Paymill: store order_id in description field [nikoloff]
1064
+ * TWD isn't a zero decimal currency [duff]
1065
+ * PaypalExpress: Use custom zero decimal currencies [duff]
1066
+ * Stripe: Migrate from /refund to /refunds [matthelm]
1067
+ * Bogus: Adding basic EMV support [ryanbalsdon]
1068
+ * PayBox Direct: Refunds and working test credentials [ivanfer]
1069
+ * Vanco: Handle case of no billing_address [duff]
1070
+ * BluePay: Add support for CUSTOM_ID2 field [ajporterfield]
1071
+ * Creditcall: Handle no verification_value [duff]
1072
+
1073
+ == Version 1.54.0 (October 2, 2015)
1074
+ * Beanstream: Add Network Tokenization support [girasquid]
1075
+ * CenPOS: Allow order_id on void [duff]
1076
+ * Provide better insight to CVV usage in requests [davidsantoso]
1077
+ * Ogone: Add verify [duff]
1078
+ * Beanstream: Add verify [mrezentes]
1079
+ * PayPal: Map standard error codes [JakeCataford]
1080
+ * Checkout.com: Fix an issue with empty phone numbers. [anotherjosmith]
1081
+ * Quickpay: Edit store and add ability to purchase with stored card [anellis]
1082
+ * Stripe: Set `receipt_email` to Stripe request if receipt delivery is requested [miccheng]
1083
+ * Worldpay US: Add eCheck support [mrezentes]
1084
+ * FirstData_e4: add level_3 data [mrezentes]
1085
+ * Vanco: Support passing ip address [duff]
1086
+ * Paybox Direct: Currency parsing fix [ivanfer]
1087
+ * QuickpayV10: Remove currency requirement from store. [anellis]
1088
+ * Raven: Use TLS 1.2 endpoint [bslobodin]
1089
+
1090
+ == Version 1.53.0 (September 1, 2015)
1091
+
1092
+ * Redsys: Add a number of currencies [agseco]
1093
+ * Raven: update description, test url, and routing; fix tests [bslobodin]
1094
+ * Raven: do not pass default (incorrect) PaymentType to #void [bslobodin]
1095
+ * Add scrubbing to a number of gateways [anellis]
1096
+ * BluePay: Add scrubbing [anellis]
1097
+ * BraintreeBlue: Allow custom logger [duff]
1098
+ * MerchantWareFour: Truncate invoiceNumber [duff]
1099
+ * S5: Pass recurrence_mode in store [duff]
1100
+ * QuickPay: Support 2-letter country codes in V10 API [girasquid]
1101
+ * Stripe: Support validate:false field on store [anellis]
1102
+ * CheckoutV2: Use correct live_url [duff]
1103
+ * QuickPay: strip # from Order IDs before submission [girasquid]
1104
+ * Litle: Use schema version 9.4 rather than 8.18 [anellis]
1105
+ * Litle: Add decrypted apple_pay [anellis]
1106
+ * QuickPay: fix method signature on #void [girasquid]
1107
+ * Forte: Add gateway [davidsantoso]
1108
+ * Stripe: return refund id for refund authorization [anellis]
1109
+ * Paypal: Update api version [anellis]
1110
+ * TNS: Translate countries to alpha3 codes [anellis]
1111
+ * TNS: Handle non existent country [duff]
1112
+ * TNS: Rescue Errors [anellis]
1113
+ * CenPOS: Support avs_result and cvv_result [tjstankus]
1114
+ * Stripe: Add application fee only on non-EMV transactions [bizla]
1115
+ * Stripe: don't send blank, non-nil values [girasquid]
1116
+ * Ogone: Send different auth type for mastercard [anellis]
1117
+ * Cardstream: Add "type" field support [rwdaigle]
1118
+ * Cardstream: 3dsecure transaction option [rwdaigle]
1119
+ * Paystation: Map order_id to non-unique merchant reference field [anellis]
1120
+ * Cardstream: Check for nil street address [anellis]
1121
+ * Checkout.com and CheckoutV2.com: Update country list [duff]
1122
+ * Cardstream: Handle nil addresses [rwdaigle]
1123
+ * MiGS: Allow passing in currency [alovak]
1124
+ * [POSSIBLE BREAKAGE] NMI: No longer use auth.net emulator [rwdaigle]
1125
+ * SecureNet: Add DEVELOPERID if supplied [wedy]
1126
+ * Braintree: Update country list [duff]
1127
+ * NMI: Don't include dup_seconds if nil [rwdaigle]
1128
+ * QuickPay: Make all operations to v10 platform synchronous [ta]
1129
+ * QuickPay: Handle issue where no operations exists on payment [ta]
1130
+ * NMI: Support merchant_defined_fields [duff]
1131
+ * QuickpayV10: Add verify [anellis]
1132
+ * BraintreeBlue: Use wiredump_device for logging only if present [braintreeps]
1133
+ * QuickpayV10: Add scrubbing [anellis]
1134
+ * QuickPayV10: Change tests to point to proper gateway [anellis]
1135
+ * Monei: Add default options argument [davidgf]
1136
+ * Ogone: Add additional 3d-secure parameters [ntalbott]
1137
+ * Ogone: Refactor signature calculation [ntalbott]
1138
+ * Add Creditcall gateway [davidsantoso]
1139
+ * Redsys: Fix scrubbing for failed transactions [davidsantoso]
1140
+ * Micropayment: Support Micropayment gateway [rwdaigle]
1141
+ * USAePay: Use names from the given billing and shipping address [marquisong]
1142
+ * Stripe: Add application fee on EMV authorize calls [bizla]
1143
+
1144
+ == Version 1.52.0 (July 20, 2015)
1145
+
1146
+ * Authorize.Net: Add device type to authorize.net retail requests [abecevello]
1147
+ * Vanco: Change transaction type to WEB for echecks [duff]
1148
+ * PayPal: Allow soft descriptor to be specified [davidsantoso]
1149
+ * Authorize.net: Add disable_partial_auth field [anellis]
1150
+ * SagePay: Add apply_avscv2 field [anellis]
1151
+ * S5: Add Store [anellis]
1152
+ * Merchant Ware v4: Add support for verify [davidsantoso]
1153
+ * Mercury: No longer default to allow partial auth [duff]
1154
+ * PayPal: Fix soft_descriptor and support soft_descriptor_city [duff]
1155
+ * Merchant Ware: Add scrubbing [davidsantoso]
1156
+ * Stripe: Make purchase via vaulted card consistent [duff]
1157
+ * Moneris: Add network tokenization support [andrewpaliga]
1158
+ * Ogone: Allow specifying a timeout value for requests [tomhipkin]
1159
+ * PayU India: Increase allowed txnid to 30 characters [ntalbott]
1160
+ * Authorize.Net: Allow passing device type through options, make wireless POS the default [abecevello]
1161
+ * Authorize.Net: Update to new Akamai URL [taf2]
1162
+ * Braintree: Add hold_in_escrow [anellis]
1163
+ * Stripe: Allow purchases with tokens without customer specification [bizla]
1164
+
1165
+ == Version 1.51.0 (July 2, 2015)
1166
+
1167
+ * Garanti: Illegal character '&' parsing response [masaruhoshi]
1168
+ * Stripe: Revert force USD for verify [duff]
1169
+ * Litle: Surface XML validation errors in the response [jasonbosco]
1170
+ * Litle: Pass the credit card verification value for tokenization (#store) requests, if one is set. [jasonbosco]
1171
+ * S5: Make scrubbing regex less greedy [duff]
1172
+ * CardStream: Add support for verify [anellis]
1173
+ * Authorize.net: UTF-8 encode requests [duff]
1174
+ * Banwire: Add default email [anellis]
1175
+ * PayU India: Handle bad JSON [ntalbott]
1176
+ * Dibs: Pass CVC param only if there's a value [bruno]
1177
+ * Sage: Credit really is credit not refund [duff]
1178
+ * Sage: Add ability to refund [duff]
1179
+ * Cardstream: Add scrubbing [anellis]
1180
+ * Litle: Add debt_repayment_flag [duff]
1181
+ * iATS: Support ACH [rwdaigle]
1182
+ * CheckoutV2: Add Gateway [anellis]
1183
+ * CenPOS: Fix refund amount issue [duff]
1184
+ * Add error_code mapping and error_code_from to gateway generator [jnormore]
1185
+ * Stripe: Parse EMV ARC from error response [bizla]
1186
+ * Redsys: Add MYR currency [agseco]
1187
+ * Add "contactless" flag to credit card model [davidseal]
1188
+ * Stripe: Add "contactless" flag support to gateway [davidseal]
1189
+ * Add encrypted_pin data to credit card model [ryanbalsdon]
1190
+ * Stripe: Add encrypted_pin support to gateway [ryanbalsdon]
1191
+ * Stripe: Support mapping advanced decline codes to standard codes [abecevello]
1192
+ * Epay: filter out invalid characters in returned URLs [dwradcliffe]
1193
+ * Redsys: Strip leading zeroes from currency codes [agseco]
1194
+ * Authorize.net: Add invoice information to refund [marquisong]
1195
+ * Authorize.net: Add store ability [duff]
1196
+ * Paystation: Add refund [mrezentes]
1197
+ * Paystation: No longer require order_id everywhere [duff]
1198
+ * Checkout: Support descriptor_name and descriptor_city [duff]
1199
+ * Add supports_network_tokenization? to gateways [jnormore]
1200
+ * Bpoint: Handle message for invalid login [anellis]
1201
+ * TransFirst: Add scrubbing [davidsantoso]
1202
+ * TransFirst: Add back a few request fields [davidsantoso]
1203
+
1204
+
1205
+ == Version 1.50.0 (June 1, 2015)
1206
+
1207
+ * Vanco: Add gateway [duff]
1208
+ * Conekta: Move device fingerprint to root [MauricioMurga]
1209
+ * Conekta: Change default language to Spanish [MauricioMurga]
1210
+ * Vanco: Improve authentication handling [duff]
1211
+ * Vanco: Allow specification of fund_id [duff]
1212
+ * S5: Add gateway [davidsantoso]
1213
+ * SecureNet: Truncate order_id [duff]
1214
+ * [POSSIBLE BREAKAGE] Stripe: Be explicit about API version [duff]
1215
+ * Dibs: Add gateway [mrezentes]
1216
+ * Dibs: Rubyize merchant_id and secret_key [mrezentes]
1217
+ * Stripe: Add support for reverse_transfer [duff]
1218
+ * USA ePay: Add support for manual entry indicator [AnotherJoSmith]
1219
+ * Authorize.Net: Add support for manual entry indicator [AnotherJoSmith]
1220
+ * CenPOS: Change description to invoice_detail [mrezentes]
1221
+ * BPoint: Add gateway [tjstankus]
1222
+ * S5: Remove address requirement for purchase and authorize [davidsantoso]
1223
+ * Vanco: Add support for eChecks [duff]
1224
+ * Remove Adyen support [ntalbott]
1225
+ * CenPOS: Use ProcessCreditCard action [duff]
1226
+ * CASHnet: uri encode the merchant gateway name [mrezentes]
1227
+ * S5: Include card brand in request body [davidsantoso]
1228
+ * Vanco: Handle multiple error responses [duff]
1229
+ * Merchant Partners gateway support [rwdaigle]
1230
+ * BPoint: Update params to contain all response data [tjstankus]
1231
+ * BPoint: Support biller_code in options [tjstankus]
1232
+ * Sagepay: Add Verify [anellis]
1233
+ * S5: Build XML with UTF-8 encoding [tjstankus]
1234
+ * Cashnet: Handle unparsable response body [duff]
1235
+ * CenPOS: Allow specification of customer_code [duff]
1236
+ * Allied Wallet: Add gateway [anellis]
1237
+ * S5: set Regex closure on scrubbing method [davidsantoso]
1238
+ * Dibs: Require TLSv1 [duff]
1239
+ * Optimal: Handle case of no billing address [duff]
1240
+ * Omise: Add gateway [zdk]
1241
+ * CenPOS: Simplify currency handling [duff]
1242
+ * Beanstream: Don't treat redirect as success [aprofeit]
1243
+ * Add PayU India gateway [ntalbott]
1244
+ * NetBilling: Require TLSv1 [duff]
1245
+ * S5: Handle recurring transactions without CVV [davidsantoso]
1246
+ * Stripe: Force USD for verify [duff]
1247
+ * PayU India: Prevent shadowing in response parsing [ntalbott]
1248
+ * QuickPay: Add support for v10 API [ta]
1249
+ * Fat Zebra: Fix refund and store signatures [duff]
1250
+ * Fat Zebra: Allow transactions without a CVV [duff]
1251
+
1252
+ == Version 1.49.0 (May 1, 2015)
1253
+
1254
+ * Braintree: Add support for AVS error codes [ivanvfer]
1255
+ * MerchantWarrior: Truncate description field [duff]
1256
+ * Braintree: Add service_fee_amount option [duff]
1257
+ * SecureNet: Allow shipping_address[:name] [duff]
1258
+ * MonerisUS: Add verify [mrezentes]
1259
+ * Ezic: Add gateway [duff]
1260
+ * Stripe: Add destination field [cwise]
1261
+ * SecureNet: Fix ordering of shipping field names [duff]
1262
+ * SecurePayAu: Update API URL [girasquid]
1263
+ * Stripe: Add EMV "chip & sign", "chip & offline PIN" and Maestro support [bizla]
1264
+ * Add Errno::EHOSTUNREACH to NetworkConnectionRetries::DEFAULT_CONNECTION_ERRORS [randito78]
1265
+ * Stripe: Add support for idempotency keys [michaelherold]
1266
+ * WePay: Handle JSON::ParserError exceptions [duff]
1267
+ * Borgun: Update country list and homepage url [mrezentes]
1268
+ * AuthorizeNet: Add cvv to request only if it's valid [tjstankus]
1269
+ * Stripe: Bug fix: add amounts only on non-EMV transactions, temporarily omit EMV testcases [bizla]
1270
+ * Ezic: Add support for void [duff]
1271
+ * iATS: Update supported countries [mrezentes]
1272
+ * Ezic: Update supported countries [duff]
1273
+ * AuthorizeNet: Truncate card number [tjstankus]
1274
+
1275
+ == Version 1.48.0 (April 8, 2015)
1276
+
1277
+ * Clean up `rake gateways:hosts` output [ntalbott]
1278
+ * Add Axcess MS gateway [timtait]
1279
+ * Add PayHub gateway [grepruby]
1280
+ * Orbital: Improve data formatting [boone]
1281
+ * [POSSIBLE BREAKAGE] USAePay Transaction: Make "void release" the default [dppcode]
1282
+ * Redsys: Add rudimentary vaulting [varyonic]
1283
+ * Exact: Handle 401 failures better [jefflaporte]
1284
+ * SagePay: make `VPSProtocol` user-configurable [boxofrad]
1285
+ * Netbilling: Add store support [cshepherd]
1286
+ * Add Qvalent gateway [markabe]
1287
+ * Expose proxy address and port to gateways [arkes]
1288
+ * Remove Ruby 1.9 [j-mutter]
1289
+ * Qvalent: Do not sent order.ipAddress when storing [markabe]
1290
+ * Qvalent: Fix argument name [bruno]
1291
+ * Qvalent: map card storage reference to authorization [markabe]
1292
+ * Qvalent: Fix scrub replacement, it was too greedy [markabe]
1293
+ * PayConex: Add gateway [duff]
1294
+ * AuthorizeNet: Add credit support [duff]
1295
+ * CenPOS: Add gateway [markabe]
1296
+ * Stripe: Update country list [markabe]
1297
+ * Add Monei.net gateway [leolara]
1298
+ * MerchantWarrior: Fix refund and capture signatures [duff]
1299
+ * CenPOS: Add support for capture and refund [markabe]
1300
+ * Authorize.net: Add support for network tokenization credit cards [jnormore]
1301
+ * Stripe: Add support for passing in metadata for auths and purchases [kitt]
1302
+ * Pin: Pass amount param for captures [ab9]
1303
+ * NAB Transact: Improve store functionality [duff]
1304
+ * Add Worldpay Online Payments [ao]
1305
+ * Fat Zebra: Add multi-currency support [nagash]
1306
+ * Fat Zebra: Add auth/capture capability [nagash]
1307
+ * Fat Zebra: Add soft descriptor support [nagash]
1308
+
1309
+ == Version 1.47.0 (February 25, 2015)
1310
+
1311
+ * Authorize.Net: Properly send name in shipping address line, when shipping address is provided [girasquid]
1312
+ * Payflow: Add verify support [ntalbott]
1313
+ * Capture ConnectionError#triggering_exception [ntalbott]
1314
+ * Flo2Cash: Map Reference->:order_id (not :invoice) [ntalbott]
1315
+ * Flo2Cash: Fix card brand handling [ntalbott]
1316
+ * Flo2Cash: Improve error handling & simplify "Simple" gateway [ntalbott]
1317
+ * Remove Vindicia gateway [mutemule]
1318
+ * Firstdata E4: Support other mastercard string [jcbantuelle]
1319
+ * Checkout: Disallow altering endpoint via options [markabe]
1320
+
1321
+ == Version 1.46.0 (January 20, 2015)
1322
+
1323
+ * CHANGE: drop `offsite_payments` and `active_utils` as dependencies. [wvanbergen]
1324
+ * CHANGE: remove `OffsitePaymentShim`. You will have to add offsite_payments as a dependency,
1325
+ and update any mentions of `ActiveSupport::Billing::Integration` to
1326
+ `OffsitePayments::Integrations`. [wvanbergen]
1327
+ * QuickBooks Payments: Add adapter [ivanfer, bizla]
1328
+ * Quickbooks: Remove requirement of oauth gem.
1329
+ * PayGate: Add support for refunds [StephanAtG2]
1330
+ * PayPal: Add #scrub for scrubbing PCI information out of HTTP transcripts [girasquid]
1331
+ * Stripe: Add #scrub for scrubbing PCI information out of HTTP transcripts [girasquid]
1332
+ * Cybersource: Add ability to verify a card [duff]
1333
+ * BraintreeBlue: Expose the error code in the response params [duff]
1334
+ * eWay Rapid: Update supported countries and card types [incarnate]
1335
+ * PayPal: Allow specifying ButtonSource at init [ntalbott]
1336
+ * Payflow: Add fraud_review support [ntalbott]
1337
+ * Add IPP gateway [InfraRuby]
1338
+ * Redsys: Fix order_id truncation [duff]
1339
+ * AuthorizeNet: Improve duplicate_window handling [duff]
1340
+ * PayPal: Fix ButtonSource bug [ntalbott]
1341
+ * Checkout: Prevent multiple trackids from being passed [markabe]
1342
+ * Pin: Handle JSON parsing exception in response [duff]
1343
+ * Improve test suite to test against multiple ActiveSupport versions [wvanbergen]
1344
+ * Misc. code cleanup [wvanbergen]
1345
+ * Add Flo2Cash gateway [markabe]
1346
+ * Litle: Allow order_source override [duff]
1347
+ * Quickpay: Add ability to finalize a capture [askehansen]
1348
+ * AuthorizeNet: Prevent test mode using live gateway [duff]
1349
+ * Add Flo2Cash Simple gateway [markabe]
1350
+
1351
+ == Version 1.45.0 (December 1, 2014)
1352
+
1353
+ * HPS: Always pass CardHolderData element [SecureSubmit, ntalbott]
1354
+ * PayJunction: Include 'track' parameter if provided [hron]
1355
+ * WebPay: Fix API calls [tomykaira]
1356
+ * Moneris US: Add store, unstore, and update [AntoineInsa]
1357
+ * Moneris US: Add CVV and AVS [AntoineInsa]
1358
+ * Stripe: Add support for statement_description [markabe]
1359
+ * CASHNet: Add support for fname and lname [markabe]
1360
+ * Orbital: Fix customer profile auth/purchase [denis]
1361
+ * Payex: Fix expiry month to allow 4 digit year [duff]
1362
+ * Cashnet: Allow overriding custcode [hoenth]
1363
+ * Cashnet: Fix overridding item_code per transaction [ntalbott]
1364
+ * Add Checkout.com gateway [ravish-ramrakha-cko]
1365
+ * HPS: Add verify support [SecureSubmit]
1366
+ * Add Bank Frick gateway [varyonic]
1367
+ * Add Global Transport gateway [duff]
1368
+ * iATS: Add #store and #unstore [duff]
1369
+ * Authorize.Net: Fix amount formatting [ntalbott]
1370
+ * Authorize.Net: Truncate order_id to 20 characters [ntalbott]
1371
+ * Authorize.Net: Truncate more fields [duff]
1372
+ * Authorize.Net: Truncate invoiceNumber [ntalbott]
1373
+ * Adyen: Add support for verify operation [duff]
1374
+ * USAePay: Add track_data support [louiskearns]
1375
+ * Payex: Use the right url for the purchase call [duff]
1376
+ * Braintree: Allow dynamic descriptors [duff]
1377
+ * Openpay: Add support for device session id [guillermo-delucio, ismaelem]
1378
+ * Redsys: Add support for verify [duff]
1379
+ * Redsys: Handle unknown currencies [duff]
1380
+ * Stripe: Make #unstore signature consistent [duff]
1381
+ * Remove defunct Samurai gateway [ntalbott]
1382
+ * eWay Rapid: Tweak authorization support [duff]
1383
+ * Litle: Add support for dynamic descriptors [duff]
1384
+ * Add TNS gateway [markabe]
1385
+ * TNS: Update countries and supported card types [markabe]
1386
+ * Conekta: Add AMEX as a supported card type [MauricioMurga]
1387
+ * Checkout: pass through currency type [markabe]
1388
+ * Bogus: return standard error codes [jpcaissy]
1389
+ * Add PaymentToken and ApplePayPaymentToken objects for token-based transactions [bizla]
1390
+ * Authorize.Net: Add ApplePay in-app transaction support [bizla]
1391
+ * Stripe: Add ApplePay in-app transaction support [bizla]
1392
+ * eWAY Rapid: Add PartnerID param [j-mutter]
1393
+ * GlobalTransport: Truncate order_id [duff]
1394
+ * Redsys: Allow a description to be specified [duff]
1395
+ * NetworkMerchants: Fix currency [j-mutter]
1396
+ * Redsys: Improve handling of order_id [duff]
1397
+ * Checkout: Add support for void, refund, and verify [markabe]
1398
+
1399
+ == Version 1.44.1 (Aug 28, 2014)
1400
+
1401
+ * Allow SSLv3 for PsiGate [mutemule]
1402
+ * Set default :state to n/a for NetworkMerchants [cjoudrey]
1403
+
1404
+ == Version 1.44.0 (Aug 21, 2014)
1405
+
1406
+ * Moneris: Add :avs_enabled option [bslobodin]
1407
+ * Stripe: Populate authorization in failed responses, when available [bslobodin]
1408
+ * Moneris: Use the name on the card [duff]
1409
+ * Balanced: More 1.1 API fixes and mappings [ntalbott]
1410
+ * Balanced: Handle "pending" refunds [duff]
1411
+ * Immediately convert credit card date fields to integers [ntalbott]
1412
+ * Balanced: Handle outside card tokens [ntalbott]
1413
+ * Balanced: Do not pass address if zip is missing [ntalbott]
1414
+ * Float active_utils at the patch version instead of the minor version [nwjsmith]
1415
+ * Wirecard: Fix CVV & AVS response handling [alevett]
1416
+ * Consolidate deprecation handling [ntalbott]
1417
+ * Authorize.Net CIM: Do not send x_test_request [danrabinowitz]
1418
+ * Authorize.Net CIM: Pass delimiter through [jsoma]
1419
+ * HPS: Add support for track data [SecureSubmit]
1420
+ * HPS: Fix processing without an address [SecureSubmit]
1421
+ * Balanced: Do not pass address if zip is blank [duff]
1422
+ * Do CreditCard attribute cleanup at assignment [ntalbott]
1423
+ * eWay Rapid: Add auth/capture/void support [ntalbott]
1424
+ * [POSSIBLE BREAKAGE] Remove dependency on active_utils Validateable [ntalbott]
1425
+ * Make all active_utils requires explicit [ntalbott]
1426
+ * Balanced: Handle legacy card tokens [ntalbott]
1427
+ * Braintree Blue: Default verification merchant id [speric]
1428
+ * [POSSIBLE BREAKAGE] Extract integrations into an offsite_payments gem [ntalbott]
1429
+ * [POSSIBLE BREAKAGE] Drop stated/tested compatibility with Rails < 3.2 [ntalbott]
1430
+ * Stop requiring unused CurrencyCode class from active_utils [ntalbott]
1431
+ * Move ActiveMerchant::Error into ActiveMerchant [ntalbott]
1432
+ * Inline RequiresParameters in Gateway & move Country from active_utils [ntalbott]
1433
+ * Quickpay v7: Fix passing acquirers field [moklett]
1434
+ * Quickpay v7: Pass an amount when storing cards [ta & moklett]
1435
+ * Quickpay: Expand list of supported countries [ta]
1436
+ * Validate CreditCard verification value [mnoack]
1437
+ * Authorize.Net CIM: Allow updating a payment profile without a full credit card number [speric]
1438
+ * Wirecard: Add optional CommerceType element [timtait]
1439
+ * Add Borgun gateway [markabe]
1440
+ * [POSSIBLE BREAKAGE] NAB Transact: Allow timeout customization [duff]
1441
+ * Wirecard: Add card store and purchase/authorize by reference [speric]
1442
+ * Worldpay: Add support for Switch cards [dougal]
1443
+ * FirstData e4: Send correct card type [npverni]
1444
+ * Elavon: Add store/update support [npverni]
1445
+ * Wirecard: Catch an empty ERROR <Message> Element [timtait]
1446
+ * Finansbank (CC5): Add void/refund/credit support [muhammetdilek]
1447
+ * Wirecard: Use authorization_check for Amex store [npverni]
1448
+ * Elavon: Make void work for authorizations [duff]
1449
+ * Add Commercegate gateway [vitaliyvasin]
1450
+ * Wirecard: Fix "amex" references [mendable]
1451
+ * HPS: Do not pass empty elements [SecureSubmit]
1452
+ * Paymill: Add more supported card types [nikoloff]
1453
+ * Paymill: Add source [nikoloff]
1454
+ * Paymill: Add description for preauthorizations [nikoloff]
1455
+ * Paymill: Add remote tests using tokens [nikoloff]
1456
+ * HPS: Add developer, version number and site trace options [SecureSubmit]
1457
+ * Update 1stPayGateway.Net gateway [rwdaigle]
1458
+ * Payflow: Add verbosity option [doppler]
1459
+ * Allow ignoring the result of any MultiResponse step [ntalbott]
1460
+ * Stripe: Add ability to verify a card [duff]
1461
+ * Paypal: Add ability to verify a card [duff]
1462
+ * Authorize.net: Add ability to verify a card [duff]
1463
+ * Braintree: Add ability to verify a card [duff]
1464
+ * Enhance gateway generator to support verify [duff]
1465
+ * PayPal Express: Add funding source support [baraabourghli]
1466
+ * Optimal: Add IP address to requests [justinplouffe]
1467
+ * Pin: Add authorize & capture support [keithpitt]
1468
+ * Pin: Add update support [keithpitt]
1469
+ * Vindicia: Stop using the vindicia-api gem [ntalbott]
1470
+ * Clean up the warnings fog [ntalbott]
1471
+ * Quickpay: Map options[:ip] for fraud analysis [ta]
1472
+ * SagePay: Truncate fields [duff]
1473
+ * First Data E4: Add ability to verify a card [duff]
1474
+ * Elavon: Add ability to verify a card [duff]
1475
+ * Worldpay: Pass email and IP address [duff]
1476
+ * Worldpay: Use updated address format [duff]
1477
+ * Moneris: Fix address splitting [ntalbott]
1478
+ * FirstData E4: Allow passing CAVV through [Senjai]
1479
+ * Braintree Blue: Remember the capture transaction id [duff]
1480
+ * Eway Rapid: Truncate some fields [duff]
1481
+ * Optimal Payment: Make account mandatory field [rwdaigle]
1482
+ * Worldpay: Improve address defaulting [duff]
1483
+ * Authorize.Net: Add maestro as a supported card type [vparihar01]
1484
+ * Worldpay: Improve address defaults [duff]
1485
+ * Braintree Blue: Pass cardholder_name when tokenizing [radar]
1486
+ * Wirecard: Improve error handling [mendable]
1487
+ * Litle: Add verify support [markabe]
1488
+ * USAePay: Add verify support [markabe]
1489
+ * BridgePay: Add verify support [duff]
1490
+ * Braintree Blue: Add payment_method_token flag [JDutil]
1491
+ * SagePay: Add optional FI fields [rob-anderson]
1492
+ * Iridium: Add AVS and CVV results [X0Refraction]
1493
+ * NAB Transact: Add credit support [nagash]
1494
+ * Braintree Blue: Add application_id support [npverni]
1495
+ * Realex: Add maestro mapping [uriklar]
1496
+ * Add Worldpay US gateway [markabe]
1497
+ * Cybersource: Add shipping address [pkoppula]
1498
+
1499
+ == Version 1.43.2 (May 12, 2014)
1500
+
1501
+ * Remove 2Checkout's #line_item due to conflict with Klarna/Shopify [edward]
1502
+ * Auth.Net CIM: Fix ordering of order/trans_id [pdamer]
1503
+ * Add PagoFacil gateway [bhserna, abisosa]
1504
+ * [POSSIBLE BREAKAGE] Stripe: Allow for updating of stored card [speric]
1505
+ * Authorize.Net: Deprecate ARB [ntalbott]
1506
+ * Authorize.Net CIM: Add recurring billing flag [gabealmer]
1507
+ * Spreedly: Add support for :ip [megamoose]
1508
+ * PayPal Express: Improve received_at handling [jwarchol]
1509
+ * PayPal Express: Add ReqBillingAddress flag [johnb-razoo]
1510
+ * Beanstream: Add support for Legato single use tokens [tylerrooney]
1511
+ * PayPal Digital Goods: Allow mobile [tomprats]
1512
+ * Maxipago: Add installment support [alexandremcosta]
1513
+ * Deprecate recurring API support [ntalbott]
1514
+ * NMI: fix CreditCard check [bslobodin]
1515
+ * SagePay: Add tokenization support [kernow]
1516
+ * PayPal Express: Reference transaction details [lrostovsky]
1517
+ * Balanced: Update to API 1.1 [steveklabnik]
1518
+ * Add Cashnet gateway [hoenth]
1519
+ * Conekta: Standardize address options [MauricioMurga]
1520
+ * Wirecard: Add support for reference purchases [timtait]
1521
+ * Worldpay: Add support for external references [matsubo]
1522
+ * Balanced: Voiding a capture is not allowed [duff]
1523
+ * Add HPS gateway (Heartland Payment Systems) [SecureSubmit]
1524
+ * Balanced: Fix handling of 500 errors [ntalbott]
1525
+ * Universal: Remove all billing address fields [bslobodin]
1526
+ * Balanced: Stop creating a customer on each call [ntalbott]
1527
+ * Balanced: Refactor and handle legacy authorizations [ntalbott]
1528
+ * SagePay Form: Update to v3.00 [bslobodin]
1529
+ * GestPay: Use a more specific error class when parsing [odorcicd]
1530
+ * PagSeguro: Improve error handling [celsodantas]
1531
+ * PxPay: Support for newer, query-less redirect URLs [odorcicd, bslobodin]
1532
+ * eWAY Rapid: Update to 3.1 API [atomgiant]
1533
+ * Misc refactorings [justinplouffe]
1534
+ * Remove greedy rescue, and convert some errors to be user-facing [odorcicd]
1535
+ * PayPal Express: pass logo image for setup request [dimko]
1536
+ * Improve credit card validation [duff]
1537
+
1538
+ == Version 1.43.1 (May 1, 2014)
1539
+
1540
+ * Merchant Warrior: Scrub names [duff]
1541
+ * Validate Gateway.supported_countries [rwdaigle]
1542
+ * Stripe: Add recurring flag support [bslobodin]
1543
+ * Stripe: Use localized amounts for currencies w/o minor units [bslobodin]
1544
+ * WebPay: Leverage fixes to Stripe to remove duplicate code [bslobodin]
1545
+ * Klarna: Miscellanenous fixes [edward]
1546
+ * Mollie iDEAL: Use order's description [wvanbergen]
1547
+
1548
+ == Version 1.43.0 (April 24, 2014)
1549
+
1550
+ * PagSeguro: New offsite integration [celsodantas]
1551
+ * Sage Pay: Fix amount parsing in notifications [berkcaputcu]
1552
+ * Sage Pay: Use API v3.00 [bslobodin]
1553
+ * BridgePay: Switch method of success detection [markabe]
1554
+ * BridgePay: Use Return as TransType for refunds [markabe]
1555
+ * IATS: Complete rewrite using first class API [rwdaigle]
1556
+ * IATS: Fix invalid country code UK -> GB [rwdaigle]
1557
+ * DataCash: Fix refund processing using original authorization [bslobodin]
1558
+ * Transnational gateway renamed to Network Merchants [bslobodin]
1559
+ * PayMill: Handle non-JSON server responses [bslobodin]
1560
+
1561
+ == Version 1.42.9 (April 15, 2014)
1562
+
1563
+ * Spreedly: Add ip, description and gateway_specific_fields [faizalzakaria]
1564
+ * Sage (US): Support store/unstore of cards [rwdaigle]
1565
+ * Pin: Add american express to supported cards [nagash]
1566
+ * Raven: Update handling of CVV/AVS [bslobodin]
1567
+ * Raven: Use UUID for RequestID [bslobodin]
1568
+
1569
+ == Version 1.42.8 (April 4, 2014)
1570
+
1571
+ * Cecabank: Handle invalid xml response body [duff]
1572
+ * Wirecard: Capture error code in the response [duff]
1573
+ * Litle: Remove gem dependency [duff]
1574
+ * Litle: Fix case of missing address parts [duff]
1575
+ * Universal: Add universal offsite API implementation [bslobodin]
1576
+ * Iridium: Add more currencies [bslobodin]
1577
+ * iDeal: Add Mollie iDeal offsite implementation [wvanbergen, maartenvg]
1578
+
1579
+ == Version 1.42.7 (March 18, 2014)
1580
+
1581
+ * SagePay: Add support for ReferrerID [markabe]
1582
+ * Cecabank: Fix expiration date formatting [duff]
1583
+ * Add WePay gateway [faizalzakaria]
1584
+ * SmartPs: Add ECI option to SmartPs [odorcicd]
1585
+ * Rescue and re-raise ActionViewHelperError when offsite helpers raise an error [odorcicd]
1586
+ * Add FirstGiving gateway [faizalzakaria]
1587
+ * FirstGiving: Fix refunds [ntalbott]
1588
+ * Samurai: Handle server errors [ntalbott]
1589
+ * WePay: Fix refund [duff]
1590
+
1591
+ == Version 1.42.6 (February 24, 2014)
1592
+
1593
+ * Litle: Truncate order_id [duff]
1594
+ * Conekta: Fix #refund; respect :currency [leofischer]
1595
+ * SagePay: Truncate description field [duff]
1596
+ * Add Cecabank gateway [molpe]
1597
+ * Add Openpay [darkaz]
1598
+ * Openpay: Simplify test versus production mode [duff]
1599
+ * Wirecard: Handle a utf-8 description [duff]
1600
+ * Litle: Partial capture support [ttdonovan]
1601
+ * Ogone: Allow D3D for alias purchases [pwoestelandt]
1602
+ * USAePay Advanced: Fix verification_value mapping [dppcode]
1603
+ * Orbital: Add additional success conditions [boone]
1604
+ * Orbital: Handle special CVV responses [boone]
1605
+ * Balanced: Allow working with balanced.js [michaelherold]
1606
+ * Balanced: Allow passing customer name [michaelherold]
1607
+ * Balanced: Add support for meta [michaelherold]
1608
+ * Improve gateway generator [ntalbott]
1609
+ * Add maxiPago gateway [alexandremcosta]
1610
+ * Authorize.Net: Remove x_test_request support [ntalbott]
1611
+ * Conekta: Add default description [bslobodin]
1612
+ * Add PayDollar integration [bslobodin]
1613
+
1614
+ == Version 1.42.5 (February 7th, 2014)
1615
+
1616
+ * Add Doku Indonesia [bizla]
1617
+ * Cardstream: Update gateway to use latest API [odorcicd]
1618
+
1619
+ == Version 1.42.4 (January 8th, 2014)
1620
+
1621
+ * DataCash: Set 'ecomm' as capturemethod [DavidGeukers]
1622
+ * Cybersource: Fix subscriptions with a setup fee [ntalbott]
1623
+ * Stripe: Do not pass customer details to the /cards endpoint [michellebu]
1624
+ * Stripe: Allow Stripe API version to be initialized with the gateway [odorcicd]
1625
+
1626
+ == Version 1.42.3 (December 18th, 2013)
1627
+
1628
+ * Balanced: Add support for appears_on_statement_as [duff]
1629
+ * Authorize.Net: Make already actioned responses failures [odorcicd]
1630
+ * Add Payex gateway [atomgiant]
1631
+ * Paymill: Fix authorizations [duff]
1632
+ * Braintree Blue: Allow specifying the credit card token [ntalbott]
1633
+ * Braintree Blue: Allow specifying the customer id [ntalbott]
1634
+ * Braintree Blue: Scrub invalid emails and zips [ntalbott]
1635
+ * Braintree Blue: Return :credit_card_token as a top level param [ntalbott]
1636
+ * Braintree Blue: Allow unstoring just a credit card [ntalbott]
1637
+ * Braintree Blue: #store adds cards to existing customers [ntalbott]
1638
+ * USA ePay Advanced: Fix check handling [nearapogee]
1639
+ * USA ePay Advanced: Fix credit card expiration handling [nearapogee]
1640
+ * USA ePay Advanced: Fix handling of custom transaction responses for single items [nearapogee]
1641
+ * USA ePay Advanced: Fix capture amount [nearapogee]
1642
+ * NAB Transact: Fix merchant descriptor with capture/refund requests [nagash]
1643
+ * Braintree Blue: Add custom_fields & device_data parameters [parallel588]
1644
+ * Webpay: Add authorize & capture [keikubo]
1645
+ * MerchantWarrior: Pass description [duff]
1646
+ * Stripe: Separate email from description [duff]
1647
+ * Add Payscout gateway [llopez]
1648
+ * Merchant Warrior: Use billing_address [duff]
1649
+ * Add SoEasyPay gateway [ir-soeasycorp]
1650
+ * Bogus: Add check support [npverni]
1651
+ * Payflow: Add Check support [crazyivan]
1652
+ * Stripe: Allow expanding objects inline [odorcicd]
1653
+
1654
+ == Version 1.42.2 (November 13th, 2013)
1655
+
1656
+ * Renew public certificate
1657
+
1658
+ == Version 1.42.1 (November 13th, 2013)
1659
+
1660
+ * Signed version of 1.42.0
1661
+
1662
+ == Version 1.42.0 (November 13th, 2013)
1663
+
1664
+ * Fix NoMethodError "tr" for params with dash [TimothyKlim]
1665
+ * Authorize.Net: Add cardholder authentication options (CAVV) support [structure]
1666
+ * CardStreamModern: Added better checks on inputs from the gateway [ExxKA]
1667
+ * Stripe: Send :ip to the gateway instead of :browser_ip [f3ndot]
1668
+ * Wirecard Page: new offsite gateway [mbretter]
1669
+ * Mercury: Add support for requesting a token [kcdragon]
1670
+ * Add App55 gateway [ianbutler55]
1671
+ * UsaEpayTransaction: Support for split payments [GBH]
1672
+ * Add Swipe Checkout gateway [matt-optimizerhq]
1673
+ * Spreedly Core: Allow overriding the gateway token when running a transaction [hoenth]
1674
+ * Spreedly Core: Add order_id [hoenth]
1675
+ * Spreedly Core: Allow store without retain [hoenth]
1676
+ * Stripe: Support multiple cards on account [pierre]
1677
+ * Stripe: Add card_id parameter to unstore call [pierre]
1678
+ * Remove usage of `uname -a` [ntalbott]
1679
+ * Litle: Allow easier access to the response code [duff]
1680
+ * Stripe: Add the option to pass a version header [odorcicd]
1681
+ * Elavon: Update supported countries [duff]
1682
+ * Add Raven PacNet gateway [llopez]
1683
+ * BitPay: Fix BitPay issues and implement Notification#acknowledge [odorcicd]
1684
+
1685
+ == Version 1.41.0 (October 24th, 2013)
1686
+
1687
+ * Stripe: Payments won't fail when specifying a customer with a creditcard number [melari]
1688
+ * Add Conekta gateway [leofischer]
1689
+ * Wirecard: Add support for void and refund [duff]
1690
+ * Orbital: Mandatory field fix [juicedM3, jduff]
1691
+
1692
+ == Version 1.40.0 (October 18th, 2013)
1693
+
1694
+ * Paymill: Revert Add support for specifying the :customer [melari]
1695
+ * Quickpay: Make v7 of the API default [kvs]
1696
+ * Bitpay: Add return [tahnok]
1697
+
1698
+ == Version 1.39.2 (October 10th, 2013)
1699
+
1700
+ * Eway Rapid: Fix a bug with access codes that have equal signs in them [odorcic]
1701
+
1702
+ == Version 1.39.1 (October 9th, 2013)
1703
+
1704
+ * Bitpay: Invoice Fix [orenmazor]
1705
+
1706
+ == Version 1.39.0 (October 9th, 2013)
1707
+
1708
+ * Moneris: Add optional (off by default) verification_value support [duff]
1709
+ * Citrus: New Integration [viatechs, melari]
1710
+ * Payu Paisa: New Integration [melari]
1711
+ * Spreedly: Pass country with other address fields [hoenth]
1712
+ * SecureNet: Fix order of xml params [duff]
1713
+ * Paymill: Add support for void [duff]
1714
+ * Add MoneyMovers gateway [jeffutter]
1715
+ * Ogone: Add a :store_amount option [rymai]
1716
+ * Ogone: Require TLSv1 [ntalbott]
1717
+ * Moneris: Add support for purchasecorrection [pgib]
1718
+ * Spreedly: Add ability to retain on success [duff]
1719
+ * Spreedly: Pass verification value [duff]
1720
+ * Paymill: Add support for specifying the :customer [Sbastien]
1721
+ * Realex: Correct AVS input format [ExxKA]
1722
+ * USAEpay Transaction: Use sandbox when in test mode [radar]
1723
+ * Braintree Blue: Do not use global config [rdj]
1724
+ * eWay Rapid: Add response messages [BenZhang]
1725
+ * Paysbuy: Add 'Pending' notification status [divineforest]
1726
+ * Cybersource: Use standard :phone field [cade]
1727
+ * Orbital: Fix/tweak AVS codes [boone]
1728
+ * Quickpay: Add v7 support [larspind]
1729
+ * Authorize.Net CIM: Add option to not mark transactions as test [alanandrade]
1730
+
1731
+ == Version 1.38.1 (September 16, 2013)
1732
+
1733
+ * Moneris: Remove verification_value support [melari]
1734
+
1735
+ == Version 1.38.0 (September 6, 2013)
1736
+
1737
+ * FirstData E4: Include missing address information for AVS and CVV [melari]
1738
+ * Litle: Deprecate credit method in favor of refund [melari]
1739
+ * Moneris: Add verification_value support [duff]
1740
+ * Webpay: Fixes issues with partial JPY currency [keikubo, melari]
1741
+ * SecureNet: Add INVOICENUM and INVOICEDESC optional fields [duff]
1742
+ * Balanced: Make BalancedGateway::Error inherit from ActiveMerchantError [duff]
1743
+ * Balanced: Fix #void interface [duff]
1744
+ * HiTrust: Return correct error message for positive retcodes [melari]
1745
+ * Moving to pessimistic versioning [davefp]
1746
+
1747
+ == Version 1.37.0 (August 20, 2013)
1748
+
1749
+ * MerchantWarrior: Fix handling of amounts [duff]
1750
+ * Ipay88: New gateway [kamal, siong1987, jduff]
1751
+ * IATS: New gateway [unkown, jduff]
1752
+ * MerchantWarrior: Send the CVV to the gateway [duff]
1753
+ * PayU: Fix a major bug with status types [melari]
1754
+ * SecureNet: Allow production transactions [duff]
1755
+ * Stripe: Allow a card_not_present_fee to be specified [melari]
1756
+
1757
+ == Version 1.36.0 (August 2, 2013)
1758
+
1759
+ * Fat Zebra: More consistent handling of tokens [adrianmacneil]
1760
+ * Add Platron integration [alexwl]
1761
+ * Litle: Support wiredump_device [pierre]
1762
+ * Litle: support paypage registrations [pierre]
1763
+ * SecureNet: Cleanup and refactoring [duff]
1764
+ * Mercury: Proper refund and void support [opendining]
1765
+ * PaymentExpress: Return token in authorization [ntalbott]
1766
+ * Stripe: Support for partial application fee refunds [melari, odorcicd]
1767
+ * NMI: Support for recurring flag [duff]
1768
+ * SecureNet: Use working live url [duff]
1769
+
1770
+ == Version 1.35.1 (July 22, 2013)
1771
+
1772
+ * Stripe: Allow application_fees to be refunded via the refund_application_fee flag [melari]
1773
+
1774
+ == Version 1.35.0 (July 17, 2013)
1775
+
1776
+ * Add Barclays ePDQ Extra Plus gateway [ntalbott]
1777
+ * PayPal: Add MassPay payment to recipients by UserID [damonmorgan]
1778
+ * Authorize.Net: Add authorization_code to response params [noahlh]
1779
+ * Make Rails 4 a supported version [sanemat]
1780
+ * CyberSource: Add pinless debit card support [JoshMcKin]
1781
+ * Verkkomaksut: Add item title field [kaapa]
1782
+ * Add MerchantWare V4 gateway [hron]
1783
+ * Eway Rapid: Add #store method [adrianmacneil]
1784
+ * Barclays ePDQ Extra Plus: Use correct PROD url [ntalbott]
1785
+ * Hitrust: update test & live urls [melari]
1786
+ * NAB Transact: Add auth & capture support [nagash]
1787
+ * Mercury: Support card-less capture and refund [ntalbott]
1788
+ * Mercury: Support void [ntalbott]
1789
+
1790
+ == Version 1.34.1 (June 28, 2013)
1791
+
1792
+ * WorldPay: Add dynamic return URL [jordanwheeler]
1793
+ * Merchant One: New gateway [coteyr, melari]
1794
+ * Balanced: Fix exception for invalid email [duff]
1795
+ * Update supported countries for Paymill & PaymentExpress [duff]
1796
+ * Worldpay: Add support for diners club [duff]
1797
+ * Stripe: Include address with card data [melari]
1798
+
1799
+ == Version 1.34.0 (June 20, 2013)
1800
+
1801
+ * PayPal Express gateway: Add unstore support [duff]
1802
+ * Stripe: Send application_fee with capture requests [melari]
1803
+ * Make #unstore method signature consistent across gateways [duff]
1804
+ * Dwolla: Major bug fixes. [capablemonkey, melari]
1805
+ * Stripe: Add support for including track data [melari]
1806
+
1807
+ == Version 1.33.0 (May 30, 2013)
1808
+
1809
+ * Netaxept: Completely revamped to use the "M" service type [rbjordan3, ntalbott]
1810
+ * Litle: Void authorizations via an auth reversal [jrust]
1811
+ * Add RBK Money integration [england]
1812
+ * Direcpay: Update test url [ashish-d]
1813
+ * PayPal Express gateway: Add support for creating billing agreements [fabiokr]
1814
+ * PayPal Express gateway: Add reference authorizations [fabiokr]
1815
+ * Add Cardstream Modern gateway [ExxKA]
1816
+ * Pin: Fix special headers [duff]
1817
+ * PayPal Express gateway: Remember the billing agreement id as Response#authorization [duff]
1818
+ * PayPal Express gateway: Allow an amount of 0 [duff]
1819
+ * PayPal Express gateway: Reduce parameter requirements [duff]
1820
+ * Quickpay integration: Update notification parser to handle API v6 [larspind]
1821
+ * Sage gateway: Deprecate #credit call [duff]
1822
+ * Update notification generator to better match current notification class [lulalala]
1823
+ * Paymill gateway: Change .com -> .de [louiskearns]
1824
+ * Quickpay integration: Fix v6 response parsing [larspind]
1825
+ * First Data e4: Add TransArmor store/tokenization support [gabetax]
1826
+ * MerchantWarrior: Format expiration month/year correctly [klebervirgilio]
1827
+ * Add iconv for ActiveSupport 2.3 under Ruby 2.0 [sanemat]
1828
+ * Add Transnational gateway [bvandenbos]
1829
+ * Authorize.Net: Add Check as payment method [andrunix]
1830
+ * Merchant e-Solutions: Add ref number and recurring support [carlaares]
1831
+ * Bogus gateway: Add authorization to purchase response [hron]
1832
+ * Bluepay gateway: Fix Check support; general cleanup [ntalbott]
1833
+ * Dwolla: Fix security issues and enable guest checkout [capablemonkey, schonfeld]
1834
+ * SagePay gateway: Per-transaction 3D-secure selection [ExxKA]
1835
+ * Barclays ePDQ: Handle incorrectly encoded response [jordanwheeler, aprofeit]
1836
+ * Orbital: Bug fixes; add CustomerEmail, Retry Logic, Managed Billing, and Destination Address [juicedM3
1837
+ * Distinguish invalid vs empty issue_numbers on CreditCards [drasch]
1838
+ * Float Gemfiles to latest Rails [sanemat]
1839
+ * USA ePay Advanced: Fix Check support [RyanScottLewis]
1840
+ * Authorize.Net: Match up Check fields better with eCheck.Net requirements [ntalbott]
1841
+ * Bluepay: Updated to bp20post api [cagerton, melari]
1842
+ * Net Registry: Deprecate credit method [jduff]
1843
+ * Sage: Don't include T_customer_number unless it is numeric [melari]
1844
+ * Auth.net: Don't include cust_id unless it is numeric [melari]
1845
+ * Epay: Deprecate credit method [melari]
1846
+ * New PayU.in Integration [PayU, melari]
1847
+
1848
+ == Version 1.32.1 (April 4, 2013)
1849
+
1850
+ * CC5 and Garanti: Remove $KCODE modifications [melari]
1851
+ * Paymill: Add support for store [ntalbott]
1852
+ * USA ePay: Fix misspelling of "Aduth" [joelvh, ntalbott]
1853
+ * Orbital: Fix nil address values throwing exceptions during truncation [melari]
1854
+
1855
+ == Version 1.32.0 (April 1, 2013)
1856
+
1857
+ * Optimal: Submit shipping address with requests [jduff]
1858
+ * Iridium: Enable reference transactions for authorize [ntalbott]
1859
+ * Stripe: Add authorize and capture methods [melari]
1860
+ * Pin: Add a default description if none is specified to fix failures [melari]
1861
+ * Litle: Add support for passing optional fields in token based transactions [forest]
1862
+ * Add Finansbank gateway [scamurcuoglu]
1863
+ * Paymill: Use .com instead of .de for save card url [besi]
1864
+ * Worldpay integration: Use more robust endpoint urls [nashbridges]
1865
+ * Braintree Blue: Return CC token in transaction hash [cyu]
1866
+ * Robokassa: Fix signature for empty amount [ukolovda]
1867
+ * Worldpay gateway: Fix error messages for some failures [duff]
1868
+ * Worldpay gateway: Allow settled payments to be refunded [dougal]
1869
+ * Spreedly: Update urls and terminology [duff]
1870
+ * Make card brand error more user friendly [oggy]
1871
+ * DataCash: Update test Mastercard number [jamesshipton]
1872
+ * DataCash: Update test response fixtures [jamesshipton]
1873
+ * Pin: Add Pin.js card token support [nagash]
1874
+ * PayPal Express gateway: Fix error when no address information is in response [pierre]
1875
+ * Ogone: Use BYPSP for ALIASOPERATION [ntalbott]
1876
+ * Paymill: Handle error storing card [duff]
1877
+ * SagePay integration: Add referrer field [melari]
1878
+ * Pin: Add extra headers [duff]
1879
+ * Paymill: Add support for store [ntalbott]
1880
+ * USA ePay Advanced: Fix typo in message credit card data options [joelvh]
1881
+
1882
+ == Version 1.31.1 (February 25, 2013)
1883
+
1884
+ * Cybersource: Bug fixes [natejgreene, jduff]
1885
+
1886
+ == Version 1.31.0 (February 20, 2013)
1887
+
1888
+ * Worldpay: XML encoding is required to be ISO-8859-1 [dougal]
1889
+ * Worldpay: Add card code for more supported card types [dougal]
1890
+ * Ogone: Add action option [pwoestelandt]
1891
+ * PayPal Express gateway: Add support for BuyerEmailOptInEnable [chrisrbnelson]
1892
+ * Add Paymill gateway [duff]
1893
+ * Add EVO Canada gateway [alexdunae]
1894
+ * Fixed credit card and check interface, used correct method for checking payment type [jduff]
1895
+
1896
+ == Version 1.30.0 (February 13, 2013)
1897
+
1898
+ * Add FirstData Global Gateway e4 [frobcode]
1899
+ * PaymentExpress: Add support for optional fields: ClientType and TxnData [moklett]
1900
+ * PaymentExpress: Limit MerchantReference/description to 64 chars [moklett]
1901
+ * Wirecard: description must be no more than 32 characters [moklett]
1902
+ * Litle: Add support for passing a token to the authorize and purchase methods [forest]
1903
+ * PayPal Common: Allow searching for transactions by ProfileID [aq1018]
1904
+ * Add Spreedly Core gateway [duff]
1905
+ * eWay Gateway: Return proper value for authorization [duff]
1906
+ * eWay Gateway: Add support for refunds [duff]
1907
+ * Quickpay: Add support for protocols 5 & 6 [twarberg]
1908
+ * Banwire gateway: Handle JSON::ParserError [duff]
1909
+ * Balanced gateway: Fix unspecified marketplace [duff]
1910
+ * QBMS gateway: Allow partial addresses [duff]
1911
+ * Authorize.Net CIM: Allow omitting card expiration date [shanebonham]
1912
+ * Authorize.Net CIM: Add support for extraOptions to createCustomerProfileTransaction [tpiekos]
1913
+ * Add NETPAY gateway [samlown]
1914
+ * Balanced gateway: Add amount to the refund method signature [ntalbott]
1915
+ * Orbital gateway: Fix void method signature [aprofeit, ntalbott]
1916
+ * Eway Managed: Add 'query_customer' API as #retrieve [cdaloisio]
1917
+ * NetPay: Fix the signature for void [duff]
1918
+ * Cybersource: Add check support [bowmande]
1919
+ * Moneris: Use a capture of $0 for void [ntalbott]
1920
+ * PayPal Express integration: Fix received_at time zone [ntalbott]
1921
+ * NAB Transact: Add refund capability [nagash]
1922
+ * Stripe: Add support for application_fee [duff]
1923
+ * SagePay: Add support for GiftAidPayment [duff]
1924
+ * Wirecard: Add support for partial captures [richardblair]
1925
+ * Add Pin gateway [madpilot]
1926
+ * Balanced: Added support for on_behalf_of_uri to capture [cwise]
1927
+ * Litle: Add support for passing an order_source [forest]
1928
+ * Add Merchant Warrior gateway [pronix, Fodoj, ntalbott]
1929
+ * Use v4 of the MerchantWare API for voiding transactions [melari]
1930
+ * Add support for Authorize.net in CA and GB [melari]
1931
+ * Send customer's IP to Beanstream for fraud review [melari]
1932
+
1933
+ == Version 1.29.3 (December 7, 2012)
1934
+
1935
+ * Braintree Blue: Better wiredump_device support [ntalbott]
1936
+ * Braintree: Store sets vault id as authorization [ntalbott]
1937
+ * WorldPay: Fix currencies without fractions like JPY and HUF by rounding down amount [Soleone]
1938
+
1939
+ == Version 1.29.2 (December 7, 2012)
1940
+
1941
+ * Moneris: fix issue with the default options not being merged [jduff]
1942
+ * Sage Pay: Make 0000 default post code for everyone if missing [BlakeMesdag]
1943
+
1944
+ == Version 1.29.1 (December 5, 2012)
1945
+
1946
+ * Add eWay Rapid 3.0 gateway [ntalbott]
1947
+ * Fix AVS responses missing attributes [jduff]
1948
+
1949
+ == Version 1.29.0 (November 30, 2012)
1950
+
1951
+ * Authorize.Net gateway: Support description and order_id for capture [ntalbott]
1952
+ * Add Mercury gateway [adr1anx, opendining]
1953
+ * Webmoney integration: Add gross, item_id, and amount accessors to notification [fr33z3]
1954
+ * Fix running tests under ActiveSupport 2.3.14 [ntalbott]
1955
+ * SagePay Form integration: Remove dependency on ActiveSupport's String#truncate [ntalbott]
1956
+ * Elavon gateway: Add support for the sales tax parameter [stevestmartin]
1957
+ * Add WebPay gateway [keikubo]
1958
+ * iTransact gateway: make void API consistent [frobcode]
1959
+ * Stripe gateway: Pass city in add_address [npverni]
1960
+ * Paypal gateway: Add option to change the outstanding balance of a recurring billing profile [mattwhite]
1961
+ * Mercury gateway: Fix authorizations API [ntalbott]
1962
+ * Mercury gateway: Support refund properly [ntalbott]
1963
+ * Braintree Blue gateway: Add support for the recurring flag [ntalbott]
1964
+ * Add HDFC gateway [ntalbott]
1965
+ * HDFC gateway: Add more supported currencies [ntalbott]
1966
+ * HDFC gateway: Add support for passing ECI value [ntalbott]
1967
+ * HDFC gateway: Allow setting test mode via options [ntalbott]
1968
+ * HDFC gateway: Pass phone number in UDF3 [ntalbott]
1969
+ * HDFC gateway: Fix unescaped '&' entity in XML [ntalbott]
1970
+ * HDFC gateway: More robust entity fixing [ntalbott]
1971
+ * Add A1Agregator integration [england]
1972
+ * Refactored handling of #test? and @options [ntalbott]
1973
+ * Realex gateway: Realex gateway: Fix billing address format [ntalbott]
1974
+ * Orbital gateway: handle custom AVS response codes [jonm-okc]
1975
+ * Orbital gateway: Fix infinite connection retry [jonm-okc, ntalbott]
1976
+ * PayPal integration: Add support for MassPay IPN notifications [damonmorgan]
1977
+ * Orbital gateway: Fix status of void result [jonm-okc]
1978
+ * Add Redsys gateway [samlown]
1979
+ * Cybersource gateway: Add support for subscription credit [fabiokr]
1980
+ * Use Thor for generators [ntalbott]
1981
+ * Psigate gateway: Add void support [samuelreh]
1982
+ * Add Liqpay integration [beorc]
1983
+ * Paypal Express gateway: Add shipping accessor to response [v-fedorov]
1984
+
1985
+ == Version 1.28.0 (August 10, 2012)
1986
+
1987
+ * PayPal Express: support non standard locale codes [Soleone]
1988
+ * Litle: allow setting test mode per transaction [jduff]
1989
+ * Add Banwire gateway [acolin]
1990
+ * Authorize.Net CIM gateway: Move cardCode after order to comply with the XSD [davetron5000]
1991
+ * Add WebMoney integration [Mehonoshin]
1992
+ * EasyPay: Make symmetric with other integrations [nashby]
1993
+ * Add Paysbuy integration [divineforest]
1994
+ * Bogus gateway: Use last digit for pass/fail [mipearson]
1995
+ * Elavon gateway: Separate from Viaklix, implement refund & void [duff]
1996
+ * Orbital gateway: Update to API version 5.6 and add support for profile requests [rbarazi]
1997
+
1998
+ == Version 1.27.0 (August 10, 2012)
1999
+
2000
+ * Add First Data integration [courtland]
2001
+ * Add WebPay integration [nashby]
2002
+ * Add Suomen Maksuturva integration [akonan]
2003
+ * Payway gateway: Fix card storage [BenZhang]
2004
+ * Payflow Pro gateway: Add MaxFailPayments support [gregwinn]
2005
+ * Add Paxum integration [Mehonoshin]
2006
+ * Add Balanced gateway [mjallday]
2007
+ * Plug'n Pay gateway: Add tests for partial capture [csaunders]
2008
+ * Braintree Blue gateway: Add credit card details to responses [dougbradbury]
2009
+ * PayPal gateway: Support for 'Full' refund type [kurenn]
2010
+ * Worldpay: fix refund [jduff/omh]
2011
+ * Add PxPay offsite integration [boourns]
2012
+ * Wirecard: always capture 'authorization' transaction [ntalbott]
2013
+ * Add rake task to verify ssl certs [boourns]
2014
+
2015
+ == Version 1.26.0 (July 6, 2012)
2016
+
2017
+ * Orbital gateway: fix broken requests by ensuring the order of XML elements matches their DTD [Soleone]
2018
+ * CyberSource gateway: clean up formatting [ntalbott]
2019
+ * Netbilling gateway: Add refund/credit/void support [ntalbott]
2020
+ * Add PayGate XML gateway [rubyisbeautiful]
2021
+ * Add PayWay gateway [BenZhang]
2022
+ * PayWay gateway: Tweaks to make more ActiveMerchant like [ntalbott]
2023
+ * Netbilling gateway: Fix error handling [ntalbott]
2024
+ * Netbilling gateway: Add refund/credit/void support [zenom, ntalbott]
2025
+
2026
+ == Version 1.25.0 (July 3, 2012)
2027
+
2028
+ * eWAY gateway: Add support for Diners Club cards [Soleone]
2029
+ * Orbital gateway: Never send country code for orders outside of US, CA and GB [Soleone]
2030
+ * Add EasyPay integration [nashby]
2031
+ * Updating LitleOnline requirement to 8.13.2 to take advantage of better validation and get bugfix for Username [GregDrake]
2032
+ * USAepay gateway: Add description support [ntalbott]
2033
+ * Add Paypal Payments Advanced integration [csaunders]
2034
+ * Authorize.Net gateway: Improve #refund docs [neerajdotname]
2035
+ * Wirecard gateway: Fix for missing address hash [ntalbott]
2036
+ * Clean up requires of RubyGems and JSON gems. Rename remote Litle test to match naming conventions [codyfauser]
2037
+ * Cybersource gateway: Fix updating address only [fabiokr]
2038
+ * Cybersource gateway: Move email requirement [fabiokr]
2039
+ * Add the Metrics Global gateway [DanKnox]
2040
+ * Braintree Blue gateway: Support wiredump_device [moklett]
2041
+ * Add Fat Zebra gateway [amasses]
2042
+ * Braintree Blue gateway: Always pass CVV on update [shayfrendt]
2043
+ * eWAY gateway: Update docs. Require address [juggler]
2044
+ * Cybersource gateway: Add support for subscriptions [fabiokr]
2045
+ * WePay: Use better endpoint for recurring with no CVV [davidsantoso]
2046
+
2047
+
2048
+ == Version 1.24.0 (June 8, 2012)
2049
+
2050
+ * PayPal gateway: Support for incomplete captures [mbulat]
2051
+ * Moneris gateway: Add support for vault [kenzie]
2052
+ * NAB Transact gateway: Add support for card descriptors [nagash]
2053
+ * SagePayForm: truncate long description fields [jnormore]
2054
+ * Paybox Direct: treat all response codes besides '00000' as failures
2055
+ [Soleone]
2056
+ * Deprecate CreditCard#type method in favor of CreditCard#brand [jduff]
2057
+ * Cybersource gateway: Add subscriptions support [fabiokr, jaredmoody]
2058
+ * eWay gateway: Improved docs, and more accurate required parameters [juggler]
2059
+ * Braintree Blue gateway: Always pass CVV on card update [shayfrendt]
2060
+ * Add Fat Zebra gateway [amasses]
2061
+ * Braintree Blue gateway: Add support for wiredump_device [moklett]
2062
+ * Add Metrics Global gateway [DanKnox]
2063
+ * Cybersource gateway: Do not require email address for subscription operations [fabiokr]
2064
+ * Cybersource gateway: Fix passing only an address when updating a subscription [fabiokr]
2065
+ * Wirecard gateway: Fix for missing address; general cleanup [ntalbott]
2066
+ * Authorize.Net gateway: Document ability to just pass the last four to #refund [neerajdotname]
2067
+ * Add EasyPay integration [nashby]
2068
+
2069
+ == Version 1.23.0 (May 23, 2012)
2070
+
2071
+ * Add Litle gateway [GregDrake]
2072
+ * PaymentExpress gateway: add support for BillingId and DpsBillingId for token [mikel]
2073
+ * 2checkout integration: Add ability to auto settle [craigchristenson]
2074
+ * 2checkout integration: Switch default mode to single page [craigchristenson]
2075
+ * Cybersource: Revert - Add retrieve method to pull details on a
2076
+ stored card [jduff]
2077
+ * Cybersource: Revert - Add recurring payment support [jduff]
2078
+ * PaymentExpress: add Cvc2Presence flag when submitting verification
2079
+ value [jduff]
2080
+ * SecurePayAU: fix CreditCard check [jduff]
2081
+ * Barclays: fix order capture [csaunders/ntalbott/jduff]
2082
+
2083
+ == Version 1.22.0 (May 17, 2012)
2084
+
2085
+ * Remove version restriction for money gem [ylansegal]
2086
+ * Add iTransact XML gateway [motske]
2087
+ * PayPal Express Gateway: add options[:landing_page] [markus]
2088
+ * USA ePay: Fix handling of AVS [duff]
2089
+ * Ogone: Add store method to create an alias without making a purchase [joelcogen]
2090
+ * Spelling fix: purcahse -> purchase [mnoack]
2091
+ * ePay: Added more useful results for authorization errors [Dennis O'Connor]
2092
+ * Add Robokassa integration [nashby]
2093
+ * PayPal Gateway: Add recurring API [dscataglini]
2094
+ * Braintree: Add support for :verify_card option on store [brentmc79]
2095
+ * Moneris: cannot void a preauthorization [eddanger]
2096
+ * Add Moneris US gateway [eddanger]
2097
+ * Add Dotpay integration [kacperix]
2098
+ * Payflow: Add description, comment and comment2 tags [ksnyder]
2099
+ * Dotpay: Fix field mapping [kacperix]
2100
+ * Authorize.Net CIM: Optionally add 'order' details to transactions [pote]
2101
+ * Braintree: Allow including billing address when storing a customer [brentmc79]
2102
+ * PayPal Gateway: Refactored PaymentDetails & PaymentDetailsItem common code [dscataglini]
2103
+ * Viaklix/Elavon: Separate "demo accounts" from "test transactions" [mltsy]
2104
+ * PayPal Gateway: Add transaction_details, balance, authorize_transaction, and manage_pending_transaction API calls [dscataglini]
2105
+ * PayPal Gateway: Add support for TransactionSearch & DoReferenceTransaction [dscataglini]
2106
+ * Cybersource: Add recurring payment support [jaredmoory]
2107
+ * Tidy up gateway lists [ashokak]
2108
+ * Paybox: remove Iconv usage [ntalbott]
2109
+ * Dotpay: Add amount mapping, pin setter, and support for test? [kacperix]
2110
+ * Braintree Blue: Make address country map to alpha2 [ntalbott]
2111
+ * Use GB as the alpha2 country code for the UK [ntalbott]
2112
+ * Realex: Handle XML response with unescaped ampersand [ntalbott]
2113
+ * Add Vindicia gateway [steved555]
2114
+ * Payment Express: use %w[] for country list [parndt]
2115
+ * Braintree Blue: Match remote test up with change to :country [braintreeps]
2116
+ * PayPal Integration: Fix received_at method time parsing [subbarao]
2117
+ * Add MiGS Gateway [mnoack, nagash]
2118
+ * Quickpay integration: Fix payment_service_for helper [TheMaster]
2119
+ * Braintree Blue gateway: Improve update method [brentmc79]
2120
+ * 2checkout integration: Add mode mapping & line items helper [AlexanderZaytsev]
2121
+ * USA ePay Advanced gateway: Fix expiration date format. [cctalbott]
2122
+ * Add ePay integration [ePay]
2123
+ * 2checkout integration: Add support for single page payment routine [AlexanderZaytsev]
2124
+ * Ogone: Add support for 3D Secure [rymai, ZenCocoon]
2125
+ * Stripe gateway: Remove authorize and capture methods since they are not supported [jduff]
2126
+ * Stripe gateway: default test to false if no livemode parameter is specified [jduff]
2127
+ * Paybox Direct gateway: 'card absent' and 'do not honour' should be considered failures, not fraudulent [jduff]
2128
+ * Add Verkkomaksut integration [akonan]
2129
+ * Remove trailing spaces from generator templates [akonan]
2130
+ * Payflow gateway: Allow modification of RetryNumDays [jrust]
2131
+ * Payflow gateway: Don't auto-set start_date on modification [jrust]
2132
+ * Bluepay gateway: Add ACH & recurring support [jslingerland]
2133
+ * Orbital gateway: Don't send AVS address details for any country besides US, CA, GB and UK [Soleone]
2134
+ * Payflow Express gateway: Better amount handling [jduff]
2135
+ * Barclays gateway: Allow American Express [duff]
2136
+ * Ogone gateway: Remove duplicated method [ntalbott]
2137
+ * Cybersource gateway: Add retrieve method to pull details on a stored card [fabiokr]
2138
+
2139
+ == Version 1.21.0 (March 7, 2012)
2140
+
2141
+ * Stripe: Add support for passing IP [collision]
2142
+ * Merchant e-Solutions: pass expiration date when purchasing with a stored credit card [chrisyoung]
2143
+ * Braintree: Fix passing custom processor ids to old accounts [maxsilver]
2144
+ * Authorize.net CIM: Add validation mode option to create_customer_profile_request [jwood]
2145
+ * eWay Managed: Include transaction number in response params [jamsi]
2146
+ * Fix various hash ordering issues exposed by Ruby 1.8 [ntalbott]
2147
+ * Authorize.Net CIM: Add WEB echeck type [deathbob]
2148
+ * Move Braintree from the gemspec to the Gemfile [ntalbott]
2149
+ * Add CertoDirect gateway [hron]
2150
+ * Authorize.Net CIM: Add option for setting a custom delimiter [bmorton]
2151
+ * Authorize.Net CIM: Add 3.1 response fields [bmorton]
2152
+ * Authorize.Net CIM: Misc fixes and doc improvements [bmorton]
2153
+ * Authorize.Net CIM: Fix error when order is blank [KeeperPat]
2154
+ * Beanstream: Add recurring payments support [castiglione]
2155
+ * Make ePay password optional [ePay]
2156
+ * Quickpay: skip testmode if transaction provided [brentmc79]
2157
+ * Payflow: add additional fields [thorstadt]
2158
+ * Authorize.Net CIM: Add get_customer_profile_ids [howaboutwe]
2159
+ * PayPal Express: Add support for BrandName and Custom fields [exviva]
2160
+ * Payflow: Handle dates with leading zeros [jcoleman]
2161
+ * Authorize.Net CIM: Add CCV code support & improve tests [tgarnett]
2162
+ * Add Authorize.Net SIM integration [courtland & rdp]
2163
+ * Secure Pay AU: Handle periodic payments [tommeier]
2164
+ * Viaklix: Add discover as a supported card type [waelchatila]
2165
+ * Improvements to testing infrastructure for integrations [jduff]
2166
+ * Add NAB Transact (AU) Gateway [tommeier]
2167
+ * PayPal Express: Add Support for Reference Transactions using BAIDs [kenmazaika]
2168
+ * Authorize.Net CIM: Add support for optional refund fields [nilmethod]
2169
+ * SecurePayTech: Fix EnableCSC parameter so CVV codes are checked. [tlconnor]
2170
+ * SecurePayTech: Add remote tests for CSC checking. [tlconnor]
2171
+ * Samurai: Add option to retain payment methods once stored [brentmc79]
2172
+ * PayPal Express Gateway: Add support for Digital Goods / Micropayments [kenmazaika]
2173
+
2174
+
2175
+ == Version 1.20.4 (February 22, 2012)
2176
+
2177
+ * Fix json dependency
2178
+
2179
+ == Version 1.20.3 (February 7, 2012)
2180
+
2181
+ * Various fixes to support Ruby 1.9 [wisq]
2182
+ * SkipJack: Fix partial capture [jduff]
2183
+ * Optimal Payments: submit region when outside North America [jduff]
2184
+ * USA ePay: Add void and refund support [duff/ntalbott]
2185
+ * Add first digits to credit card [codyfauser]
2186
+ * Orbital: fixes to authentication and order id [Soleone]
2187
+ * Stripe: fixes to purchase method [duff/ntalbott]
2188
+
2189
+ == Version 1.20.2 (January 16, 2012)
2190
+
2191
+ * Remove authorize/capture support for Stripe [gdb]
2192
+
2193
+ == Version 1.20.1 (December 22, 2011)
2194
+
2195
+ * PayflowExpressUk: Fix parsing street2 from response [odorcicd]
2196
+ * AuthorizeNet: Support tracking id [odorcicd]
2197
+ * SagePay Form: Map billing address to shipping address [jduff]
2198
+
2199
+ == Version 1.20.0 (November 14, 2011)
2200
+
2201
+ * Add support for USA ePay Advanced SOAP interface [matthewcalebsmith/jduff]
2202
+ * Beanstram: fix purchase with Secure Profile [pitr/jduff]
2203
+ * Orbital: various fixes [Soleone]
2204
+ * Add Samuari gateway by Fee Fighters [jkrall/odorcicd]
2205
+ * Lock money gem to 3.7.1 or less since newer versions break in 1.9 [jduff]
2206
+ * Braintree: handle gateway rejected transactions gracefully [braintreeps/jduff]
2207
+ * Ogone: support different signature encryptors, custom currency and eci [ZenCocoon/rymai/jduff]
2208
+ * Payflow Link: use secure token [jduff]
2209
+ * Added refund method to Exact, Pay Junction and Skip Jack gateways [jduff]
2210
+ * Elavon: added test url [kylekeesling/jduff]
2211
+ * Fix redundent errors when credit card is expired [castiglione/jduff]
2212
+ * Two Checkout: update service url [vampirechicken/jduff]
2213
+
2214
+ == Version 1.18.1 (September 23, 2011)
2215
+
2216
+ * Braintree: allow setting merchant_account_id on initialize [jduff]
2217
+ * Realex: only send letters and numbers in shipping code field [Soleone]
2218
+
2219
+ == Version 1.18.0 (September 23, 2011)
2220
+
2221
+ * NoChex: Update the URL that payment requests are posted to [caseywhalen/jduff]
2222
+ * QBMS: fixed test mode check [Soleone]
2223
+ * Realex: encode avs info with shipping address [Soleone]
2224
+ * Add Dwolla offsite gateway [armsteadj1/jduff]
2225
+ * Eway: pass email, customer, description and options to store [moklett/tobi]
2226
+ * New dependency: active_utils gem [odorcicd]
2227
+ * Optimal Payments: fix test mode check [jduff]
2228
+
2229
+ == Version 1.17.0 (August 23, 2011)
2230
+
2231
+ * Add Payflow Link integration [jduff]
2232
+ * Add CardSave gateway [MrJaba/jduff]]
2233
+ * Quickpay: Support protocal version 4 and fraud parameters [anderslemke/jduff]
2234
+ * Authorize.net: Add status_recurring [mm1/jduff]
2235
+ * Paypal Express: Support specifying :items with purchase [sivabudh/jduff]
2236
+ * ePay: Add Sweden and Norway to supported countries [ePay/jduff]
2237
+ * Brainreee: Support passing merchant_account_id parameter [braintreeps/jduff]
2238
+ * Paypal Express: Remove deprecated Address field in favor of ShipToAddress[jduff]
2239
+ * Add Optimal Payments gateway [jamie/jduff]
2240
+ * Documentation improvements [dasch/nhemsley/jstorimer/jduff]
2241
+ * Authorize.Net: Pass through first name, last name, and zip for refunds. [ntalbott]
2242
+
2243
+ == Version 1.16.0 (July 18, 2011)
2244
+
2245
+ * Bogus: Support referenced transactions for #authorize, #purchase, #recurring and
2246
+ #credit [dasch/jduff]
2247
+ * Payment Express: Update gateway url [bayan/titanous]
2248
+ * Moneybookers: Send country and account_name if provided [Soleone]
2249
+ * Moneris: Add Diners Club and Discover [Soleone]
2250
+ * Cybersource: add auth_reversal support [jeberly/titanous]
2251
+ * WorldPay: Update endpoint URLs for offsite gateway [Soleone]
2252
+ * Worldpay: Add JCB and add Maestro [Soleone]
2253
+ * Authorize.net: Add Diners Club and JCB [Soleone]
2254
+ * Quickpay: Add testmode for subscribe and authorize [dasch/jduff]
2255
+ * Orbital: fix handling of phone numbers. [ntalbott]
2256
+ * Braintree: Add Diners Club [cody]
2257
+ * Add ePaymentPlans offsite payment [robertomiranda/Soleone]
2258
+ * Add Stripe gateway [boucher/titanous]
2259
+ * Add Paystation gateway [nikz/jduff]
2260
+ * Bump minimum ActiveSupport version to 2.3.11 [titanous]
2261
+ * Use securerandom from stdlib not active_support [phlipper/jduff]
2262
+
2263
+ == Version 1.15.0 (May 12, 2011)
2264
+
2265
+ * DirecPay: Fix address to not include address2 twice in some cases [Soleone]
2266
+ * DirecPay: Send company if available [Soleone]
2267
+ * Realex: Fix hash signature [ntalbott/Soleone]
2268
+ * SecurePay AU: Update remote tests [ntalbott]
2269
+ * SecurePay AU: Fix method arity for #capture, #refund, #credit and #void [Soleone]
2270
+ * Barclays ePDQ: Make response parsing more robust [Soleone]
2271
+ * Payflow Express: Add line item support [wolframarnold]
2272
+ * Payflow Express: Add comment field support [wolframarnold]
2273
+ * Payflow: Add more optional fields [wolframarnold]
2274
+ * Beanstream/Paypal: Fix CREDIT_DEPRECATION_MESSAGE errors [Jonathan Rudenberg]
2275
+ * BraintreeBlue: Return a hash instead of a transaction object [braintreeps]
2276
+ * BraintreeBlue: Return proper AVS/CVV values [braintreeps]
2277
+ * Bogus: Add #recurring [trwomey]
2278
+ * Make Validateable compatible with ActiveModel [CodeMonkeySteve]
2279
+ * Add DirectEBanking offsite gateway [Gerwin Brunner/Soleone]
2280
+ * ActiveSupport 3.1 beta support [cgriego]
2281
+
2282
+ == Version 1.14.0 (Apr 29, 2011)
2283
+
2284
+ * SagePayForm: Implement #cancelled? for Return. [wisq]
2285
+ * Add #cancelled? to Integrations::Return [wisq]
2286
+ * Bogus gateway: Add refund support and better tests [wisq]
2287
+ * Beanstream: Add support for storing cards [duffomelia]
2288
+ * eWay: Add support for storing cards [duffomelia]
2289
+ * Add validation mode to update profile request [Ken Miller]
2290
+ * Authorize.net CIM: Add oldLiveMode [ntalbott]
2291
+ * Authorize.net CIM: Add extra transaction types [Ken Miller]
2292
+ * JetPay: gateway tweaks [ntalbott]
2293
+ * Deprecate a bunch more #credit methods [ntalbott]
2294
+ * RealEx: Add authorize/capture/credit/void [ntalbott]
2295
+ * SecurePay AU: Add authorize/capture/credit/void [ntalbott]
2296
+ * PayPal Express: Make response parsing more robust [ntalbott]
2297
+ * Test deprecation warnings; add deprecation line numbers [ntabott]
2298
+ * Add Orbital direct gateway [ntalbott]
2299
+ * Add WorldPay direct gateway [ntalbott]
2300
+
2301
+ == Version 1.13.0 (Apr 19, 2011)
2302
+
2303
+ * Add a Gemfile for optional bundler support [ssoroka]
2304
+ * Stop using has_rdoc= when rubygems version is 1.7.0 or greater, since it's deprecated [ssoroka]
2305
+ * Add tax field to braintree [wisq]
2306
+ * Quickpay: Also add Sweden as supported country [Soleone]
2307
+ * Adding refund method for gateways that are using the credit method for referenced based refunds, added deprecation worning to the credit method [John Duff]
2308
+ * Return the Braintree transaction id in the response for void and refund transaction calls [John Duff]
2309
+ * PayPal Express: Extract phone number from address if no contact phone was sent [Soleone]
2310
+ * Unify all offsite gateways that verify the signature of Returns or Notifications by always using the #acknowledge method and calling the secret :credential2 [Soleone]
2311
+ * Valitor: Change name of credential for Return and Notification from :password to :credential2 in symmetry with the other Integrations [Soleone]
2312
+ * Moneybookers: Add support for tracking token [Soleone]
2313
+ * Moneybookers: Require credential when creating Notifications instead of adding an argument to #acknowledge [Soleone]
2314
+ * Moneybookers: Fix Notification to return correct status [Soleone]
2315
+ * Support default Return class for all Integrations that don't use returns [Soleone]
2316
+ * Add support for passing additional options when creating a Notification to all Integrations [Soleone]
2317
+ * Update BraintreeBlue#refund to have consistent method signature [Jonathan Rudenberg]
2318
+ * Add rails/init.rb for gem campatability in Rails [R?dolfs O?i??]
2319
+ * Fix Paypal Express response parser [Jonathan Rudenberg]
2320
+ * Braintree/Transax: Add tax field [wisq]
2321
+
2322
+ == Version 1.12.1 (Mar 21, 2011)
2323
+
2324
+ * Ogone: Make sure response.params is a real Hash [Soleone]
2325
+ * WorldPay: Fix service_url in production mode [Soleone]
2326
+
2327
+ == Version 1.12.0 (Mar 1, 2011)
2328
+
2329
+ * DirecPay: Send phone number as mobile phone by default [Soleone]
2330
+ * Support sending line items for PayPal Express transactions [Jonathan Rudenberg]
2331
+ * Update PayPal Express XML format to latest version [Jonathan Rudenberg]
2332
+ * Fix custom image header for PayPal Express [mwagg]
2333
+ * Add InvoiceID and OrderDescription to PayPal Express Authorize and Capture [cody]
2334
+ * Add Moneybookers integration [Alex Diakov]
2335
+ * Add QBMS (Quickbooks Merchant Services) gateway [ntalbott]
2336
+ * Add NMI gateway [ntalbott]
2337
+ * Make fully compatible with Rails 2 & 3, and Ruby 1.8 & 1.9 [ntalbott]
2338
+ * Authorize.Net: Only return AVS message for AVS-related reason codes. [ntalbott]
2339
+ * Add Federated Canada gateway [ntalbott]
2340
+ * Garanti: Fix text normalization for nil values [Selem Delul]
2341
+ * Valitor: Always send amount without any decimal places [Soleone]
2342
+ * Add WorldPay integration [Soleone]
2343
+
2344
+ == Version 1.11.0 (Feb 11, 2011)
2345
+
2346
+ * Bump dependency for activesupport from 2.3.2 to 2.3.8 [Soleone]
2347
+ * Garanti: Normalize text in xml fields for non-standard characters [Selem Delul]
2348
+ * Garanti: Make sure order number does not contain illegal characters [Soleone]
2349
+ * Fix ActionView tests for ActiveSupport 3.0.4 [Soleone]
2350
+ * DirecPay: Make address information editable by default [Soleone]
2351
+ * Fix ePDQ credit to expect and handle full authorization [Nathaniel Talbott]
2352
+ * Add Barclays ePDQ Gateway [Nathaniel Talbott]
2353
+ * Add default fixture for Garanti and don't use fixture for Garanti [cody]
2354
+ * Add cms param for ePay [ePay]
2355
+ * Add Valitor Integration [Nathaniel Talbott]
2356
+
2357
+ == Version 1.10.0 (Jan 20, 2011)
2358
+
2359
+ * PayPal Express: Support returning payer phone number [Soleone]
2360
+ * Fix ePay to correctly send order number [Soleone]
2361
+ * Add BluePay Gateway [Nathaniel Talbott]
2362
+ * Add Quantum Gateway [Joshua Lippiner]
2363
+ * Add iDEAL/Rabobank gateway [Jonathan Rudenberg]
2364
+ * SagePayForm: Added send_email_confirmation (default false) to enable confirmation emails [wisq]
2365
+
2366
+ == Version 1.9.4 (Jan 5, 2011)
2367
+
2368
+ * Update Garanti gateway to integrate with new API [Selem Delul]
2369
+
2370
+ == Version 1.9.3 (December 17, 2010)
2371
+
2372
+ * Fix BBS Netaxept to change transaction type from C (for MOTO: mail order telephone order) to M (for credit card orders) [Soleone]
2373
+ * Fix Iridium and ePay to work with any object that responds to credit card methods not only ActiveMerchant::CreditCard objects
2374
+
2375
+ == Version 1.9.2 (December 9, 2010)
2376
+
2377
+ * Add support for PayPal mobile payments [wisq]
2378
+ * Add ePay gateway [ePay, Jonathan Rudenberg]
2379
+ * Allow access to the raw HTTP response [Jonathan Rudenberg]
2380
+
2381
+ == Version 1.9.1 (November 24, 2010)
2382
+
2383
+ * PayPal Express and PayPal Pro: Send JPY currency correctly without decimals [Soleone]
2384
+ * Netaxept: Make sure password (token) is URL escaped and update remote tests for updated server behavior [Soleone]
2385
+ * DirecPay: Add support for additional options in Return class and add convenience method to get transaction status update [Soleone]
2386
+ * Add new alias credit_card.brand for credit_card.type and handle the brand correctly in Netaxept [Soleone]
2387
+ * Iridium: Do not depend on ExpiryDate class for credit_card [Soleone]
2388
+ * PayFlow: Use same timeout of 60 seconds in HTTP header and XML for all requests [Soleone]
2389
+ * PayPal Website Payments Pro CA no longer supports American Express cards [Soleone]
2390
+ * Updated BIN ranges for Discover to match recent documents [kaunartist]
2391
+
2392
+ == Version 1.9.0 (October 14, 2010)
2393
+
2394
+ * Add support for DirecPay gateway [Soleone]
2395
+ * Add SagePay Form integration gateway [wisq]
2396
+ * Allow Return class to include a Notification for gateways that treat the direct response as a notification [wisq]
2397
+ * Add support for PayboxDirect gateway [Donald Piret]
2398
+ * Add support for SecureNet gateway [Kal]
2399
+ * Add support for the Inspire gateway [ryan r. smith]
2400
+
2401
+ == Version 1.8.0 (September 24, 2010)
2402
+
2403
+ * PayPal Express: Add support for billing agreements [Nathaniel Talbott]
2404
+ * Allow comparing countries [Nathaniel Talbott]
2405
+ * Iridium: Fix country handling [Nathaniel Talbott]
2406
+ * Iridium: Fix missing billing address [Nathaniel Talbott]
2407
+ * Iridium: Do not pass CV2 if not present [Nathaniel Talbott]
2408
+ * Add Iridium support [Phil Smy]
2409
+ * Add Netaxept support [Nathaniel Talbott]
2410
+ * PaymentExpress: Use Card Holder Help Text for the response message [Nathaniel Talbott]
2411
+ * Sort the country name list [Duff OMelia]
2412
+
2413
+ == Version 1.7.3 (September 14, 2010)
2414
+
2415
+ * Fix SagePay special handling for Japanese YEN currency to not send fractional amounts [Soleone]
2416
+
2417
+ == Version 1.7.2 (August 27, 2010)
2418
+
2419
+ * Update Braintree integration to play nicely with the braintree 2.5.0 gem [Soleone]
2420
+ * Fix SagePay to not send fractional amounts for Japanese YEN currency [Soleone]
2421
+
2422
+ == Version 1.7.1 (July 28, 2010)
2423
+
2424
+ * Pull in only the necessary components of Active Support. Enables use of ActiveMerchant with Rails 3 [railsjedi]
2425
+
2426
+ == Version 1.7.0 (July 9, 2010)
2427
+
2428
+ * Add support for new Braintree Blue Gateway (using the braintree gem) [Braintree]
2429
+
2430
+ == Version 1.6.0 (July 6, 2010)
2431
+
2432
+ * Add a task rake gateways:hosts to get a list of all outbound hosts and ports [cody]
2433
+ * Fix test failure in chronopay helper in Ruby 1.9.1 [cody]
2434
+ * Fix timezone issue in credit card test. [cody]
2435
+ * Fix failing unit test for Garanti gateway [cody]
2436
+ * Fix failing CyberSource remote test [Patrick Joyce]
2437
+ * Support for Garanti Sanal Pos: Turkish bank and billing gateway [Selem Delul]
2438
+ * Add deprecation note for Money objects to Bogus gateway [Soleone]
2439
+ * Updated test URL for Merchant eSolutions and added valid remote test credentials [Soleone]
2440
+ * Add new error class for SSL certificate problems in connection class [Soleone]
2441
+ * Update valid_month and valid_expiry_year to coerce string arguments to integers [cody]
2442
+ * Add support for displaying credit cards with PayPal Express. Use the :allow_guest_checkout => true option when setting up the transaction [Edward Ocampo-Gooding]
2443
+ * Use card_brand method for checking for checks in Sage and Beanstream [cody]
2444
+ * Add JCB and Diners Club to LinkPoint [Soleone]
2445
+
2446
+ == Version 1.5.1 (February 14, 2010)
2447
+
2448
+ * Cleanup Rakefile, add gemspec and prepare for 1.5.1 release [cody]
2449
+ * Update copyright dates [cody]
2450
+ * Work around SkipJack bug by reversing the order of the query params [Soleone]
2451
+ * Fix uppercase character in autoload of 2Checkout's Notification class [Edward Ocampo-Gooding]
2452
+ * Detect language used in Chronopay integration based on billing address country [Soleone]
2453
+ * Better handle international addresses in BeanstreamGateway [Soleone]
2454
+
2455
+ == Version 1.5.0 (February 2, 2010)
2456
+
2457
+ * Fix Gestpay notification to avoid Ruby 1.9 warnings [cody]
2458
+ * Fix Chronopay notification time parsing for Ruby 1.9 [Joe Van Dyk]
2459
+ * Set default currency of Braintree to USD [cody]
2460
+ * Fix QuickPay helper for Ruby 1.9 compat [cody]
2461
+ * Use String#each_line instead of collect in PaySecureGateway for Ruby 1.9 compat [cody]
2462
+ * Use String#each_line instead of to_a in SagePayGateway for Ruby 1.9 compat [cody]
2463
+ * Don't return an array when finding the country code. Fixes issue with Ruby 1.9 [cody]
2464
+ * Fix custom assertions for Ruby 1.9 [cody]
2465
+ * Deprecate Money objects [cody]
2466
+ * Update JCB rejex to catch all valid PANs [pjhyett]
2467
+ * Remove old TransaXGateway constant [cody]
2468
+ * Remove old ProtxGateway constant [cody]
2469
+ * Remove old BrainTree constant [cody]
2470
+ * Remove AuthorizedNet constant [cody]
2471
+ * SecurePay changed their delimeter from % to ,. Update gateway to handle changes [Soleone]
2472
+ * Fix documentation typo in base.rb [mig-hub]
2473
+ * Add capture test to Linkpoint [Dusty Doris]
2474
+ * Fix bug in Linkpoint with ternary operator and Ruby 1.9.1 [Dusty Doris]
2475
+ * Add currency and processor options to Braintree gateway [cbillen]
2476
+ * Unify API to always look for billing_address/address hash inside of options [stopdropandrew]
2477
+ * Fix bug with Modern Payments Gateway where failure authorizations appeared to be successful [cody]
2478
+ * Fix Modern Payments Gateway [cody]
2479
+ * Use basic SkipJack host for all non-authorization transactions. Fix status method [cody]
2480
+ * Strip non alpha numeric chars out of MerchantWare order number [cody]
2481
+ * Parse complete response of Authorize.net CIM gateway [Patrick Joyce]
2482
+ * Update to PayPal Sandbox URL for testing Payflow Pro Express Checkout. See Express Checkout for Payflow Pro guide [cody]
2483
+ * Provide a C_STATE value of "Outside United States" for SageGateway when processing international customers [cody]
2484
+ * PayPal Website Payments Pro Canada supports Amex [cody]
2485
+ * Add line item support for LinkpointGateway. [Tony Primerano]
2486
+ * Add support for SallieMae gateway [iamjwc]
2487
+ * Add support for the JetPay gateway [Phil Ripperger, Peter Williams, cody]
2488
+ * Add support for advanced SkipJack processors. Pass :advanced => true when constructing gateway [cody]
2489
+ * Support test option in AuthorizeNetCimGateway [Tim]
2490
+ * Improve Ogone error messages [cody]
2491
+ * Add support for :test => true option to OgoneGateway [cody]
2492
+ * Bump PayPal Version to 59.0 [cody]
2493
+ * Add amex support to eWay gateway [cody]
2494
+ * Change Payflow header X-VPS-Timeout -> X-VPS-Client-Timeout [cody]
2495
+ * Fix typo preventing OgoneGateway from working in production [Nicolas Jacobeus]
2496
+ * Add support for the Elavon MyVirtualMerchant gateway [jstorimer]
2497
+ * Fix recurring transactions in Ogone gateway [cody]
2498
+ * Fix money formatting for Ogone gateway [cody]
2499
+ * Tweak Ogone gateway to use ActiveMerchant conventions for reference transactions [cody, jstorimer]
2500
+ * Add support for the Ogone DirectLink payment gateway [Nicolas Jacobeus]
2501
+ * Add support for the Antigua based FirstPay payment gateway [Phil R]
2502
+ * Add support for PayPal reference transactions [kevin, John, Rahsun McAfee]
2503
+ * Add support for the MerchantWARE payment gateway [cody]
2504
+ * Rename Protx to SagePay [jstorimer]
2505
+ * Allow test mode for eWay gateway [Duff OMelia]
2506
+ * Don't use Time.parse for the ExpiryDate [cody]
2507
+ * Add support for CVV code to Authorize.net CIM [Guy Naor]
2508
+ * Add shipping address to Authorize.net [Eric Tarn]
2509
+ * Don't setup the logger by default [cody]
2510
+ * Refactor ActiveMerchant::Connection out of the PostsData module. Add support for logging and wiredumping requests [cody]
2511
+ * Assume a valid load path when running tests [cody]
2512
+ * Use SHIPTOSTREET2 element instead of STREET2 element for Payflow Express Uk address [cody]
2513
+ * Clean up the test helper [cody]
2514
+ * Fix DataCash unit test that was making a remote call [cody]
2515
+ * Don't check Request#test? for remote PaymentExpress tests because their test environment has changed [cody]
2516
+ * Update Instapay gateway to support capture and add address, order, and invoice fields. Add support for CVV and AVS response [cody]
2517
+ * Add support for Instapay gateway [brahma]
2518
+ * Cleanup PaymentExpress reference purchases and turn on AVS [cody]
2519
+ * Add reference purchases and authorizations to PaymentExpress [mocra]
2520
+ * Add support for Merchant e-Solutions Gateway [Zac Williams, Robby Russell]
2521
+ * Fix Braintree unit test [cody]
2522
+ * Add support for checks to SmartPs gateways [jvoohris]
2523
+ * Extract SmartPs for Braintree and Transax [mmangino]
2524
+ * Ruby 1.9 compatibility [bschwartz]
2525
+ * Update Payflow Express to handle Street2 element [James MacAulay]
2526
+ * Fix typo in Protx DeliveryState field [cody]
2527
+ * Ignore Wirecard state unless it is 2 characters [Cody]
2528
+ * Update Wirecard to make country and state processing more robust [Soleone]
2529
+ * Update ProTX to use the latest v2.23 protocol [Tekin]
2530
+
2531
+ == Version 1.4.2 (April 24, 2009)
2532
+
2533
+ * Fix typo in Authorize.net CIM [infused]
2534
+ * Add missing ISO countries [Edward Ocampo-Gooding]
2535
+ * Add support for Guernsey to country.rb [cody]
2536
+ * Add American Express to the MonerisGateway [cody]
2537
+ * Use :words_connector instead of connector in RequiresParameters [cody]
2538
+ * Fixed CreditCard not validating start_month and start_year when set as string [Tekin]
2539
+ * Update PostsData to support get requests [cody]
2540
+ * Fix broken Quickpay remote test [cody]
2541
+ * Update Quickpay gateway to v3. Add support for offsite integration for Danish Dankort cards [Lars Pind]
2542
+ * Use default partner id when passed in :partner is blank with PayflowGateway [cody]
2543
+ * Remove PayflowGateway.certification_id [cody]
2544
+ * Set Response#test? to true in TrustCommerce gateway when using the demo account in production [cody]
2545
+ * Correctly set Sage.supported_countries [cody]
2546
+ * Add BogusGateway#void [Donald Ball]
2547
+ * Fix PSL gateway capturing [cody]
2548
+ * Fix failed Visa debit purchases with PSL gateway start date info is present [cody]
2549
+ * Support personal fixtures file on Windows [cody]
2550
+ * Clearer variable naming for BraintreeGateway#authorize [Jonathan S. Katz]
2551
+ * Fix brittle Authorize.net tests [cody]
2552
+ * Add support for Authorize.net duplicate window [Seamus Abshere]
2553
+ * Return transaction id for PayPal refunds [jxtps435]
2554
+ * Allow storage of e-checks with BraintreeGateway [jimiray]
2555
+ * Add test URL to PayJunction gateway [boomtowndesigngroup]
2556
+ * More robust parsing for Wirecard gateway [Soleone]
2557
+ * Pass the issue number to CardStream verbatim and update test card numbers [Soleone]
2558
+
2559
+ == Version 1.4.1 (December 9, 2008)
2560
+
2561
+ * Update CardStream URL. Note that you will also need to update your login id. [cody]
2562
+
2563
+ == Version 1.4.0 (November 27, 2008)
2564
+
2565
+ * Return failed authorization when SkipJack purchase fails [Tron, cody]
2566
+ * Update README [cody]
2567
+ * Add metadata to Authorize.net CIM gateway [cody]
2568
+ * Make ActionViewHelper compatible with changes to concat method in ActionPack [cody]
2569
+ * Remove PayPal and Payflow Name-Value gateways. PayPal is no longer terminating the Payflow XML API. [cody]
2570
+ * Don't directly use the inflector in the action view helper [cody]
2571
+ * Work around Rails Inflector change [cody]
2572
+ * Add configurable timeouts to PostsData [Michael Koziarski]
2573
+ * Add valid_sender? method to gateway integrations [Soleone]
2574
+ * Fix PayPal error parsing [cody]
2575
+ * Fix MIT-LICENSE [cody]
2576
+ * Add a payment gateway for Website Payments Pro Canada [cody]
2577
+ * Fix shipping amount option in Sage gateway [Darrick Wiebe]
2578
+ * Improved message and error message handling [Soleone]
2579
+ * Get Wirecard working in the Live environment [Soleone]
2580
+ * Remove dead code in PayPal Common API files [cody]
2581
+ * Use the PayPal short error message if the long message is empty [cody]
2582
+ * Fix unit tests when being run by Cruise Control [cody]
2583
+ * Add support for PayPal Fraud Review Response [cody]
2584
+ * Add testing support for German Wirecard Gateway [Soleone]
2585
+ * Specify required version of ActiveSupport [cody]
2586
+ * Make ssl_strict a superclass_delegating_accessor so the entire application's validation of SSL certs can be disabled in the event of certificate problem. [cody]
2587
+ * Make Gateway.application_id a superclass_delegating_accessor so it can be set from outside the subclass definition [cody]
2588
+ * Add Discover to the list of supported card types for Braintree [cody]
2589
+ * Add support for Modern Payments gateway [Jeremy Nicoll, cody]
2590
+ * Add support for EFT/ACH and Interac Online to the BeanstreamGateway [cody]
2591
+ * Document the SageGateway [cody]
2592
+ * Add support for echecks with SageGateway. [cody]
2593
+ * Handle all successful SecurePay AU response codes [cody]
2594
+ * Get SageGateway working with real test account. Improve test suite. [cody]
2595
+ * Unify TrustCommerce, Payment Express, and Braintree CC storage [benjamin.curtis]
2596
+ * Update to use new Payflow Pro URLs [cody]
2597
+ * Fix missing Content-Type header for Ruby 1.8.4 [cody]
2598
+ * Fix Authorize.Net CIM response.message [patrick.t.joyce]
2599
+ * Add JCB and Diners Club as supported cards to SageGateway [cody]
2600
+ * Add CA country code to Sage gateway's supported countries [cody]
2601
+ * Add support for Sage Payment Solutions gateway [cody]
2602
+ * Add test mode detection to Beanstream [cody]
2603
+ * Add support for Beanstream payment gateway [xiaobozz]
2604
+ * Add support for PayPal NV Pair API. Will be used to replace the usage of the PayPal SOAP API in ActiveMerchant in the future [Greg Furmanek, cody]
2605
+ * Protx does support UK Maestro [cody]
2606
+ * Add tests for length of UK Maestro cards [cody]
2607
+ * Return all the error messages and codes from paypal responses [cody]
2608
+ * Fail hard when attempting to capture without a credit card with NetRegistry [cody]
2609
+ * Add support for the order fields to the create_customer_profile_transaction in Authorize.net CIM. [Patrick T. Joyce]
2610
+ * Strip invalid characters and limit lengths of Protx customer data [Simon Russell]
2611
+ * Fix empty start or end dates in Protx [Simon Russell]
2612
+ * Add support for Authorize.net CIM [Patrick T. Joyce, Ian Lotinsky]
2613
+ * Add option to skip order review to all PayPal Express gateways [garret.alfert, cody]
2614
+ * Add capturing partial amounts, fix issue number formatting, fix authorization string when nil values returned, fix parsing of multiple '=' characters, simplify message_from [Simon Russell]
2615
+ * Fix StartDate in ProtxGatewy [cody]
2616
+ * Add support for refunds and continuous authority references to DataCashGateway [joel.chippindale]
2617
+ * Fix gross in HiTrust notification. Don't use Money object in Verifi gateway [cody]
2618
+ * Initial implementation of Payflow Name-Value API [Greg Furmanek]
2619
+ * Add support for CyberSource credits [mjuneja]
2620
+
2621
+ == Version 1.3.2 (February 24, 2008)
2622
+
2623
+ * Actually fix the bug by adding extdata element to Payflow Requests [cody]
2624
+ * Fix bug with adding name to Payflow requests [cody]
2625
+ * Gateways will now look for CreditCard#brand before looking for CreditCard#type [cody]
2626
+ * Make before_validate in CreditCard more clear [keith_du...@mac.com, cody]
2627
+ * Don't send full Australian state names to PayPal [cody]
2628
+ * Return last_digits that are less than 4 characters long [cody]
2629
+ * Fix Bug with Authorize.Net ARB Remote Test [patrick.t.joyce]
2630
+ * Add support for forcing test mode on Secure Pay AU gateway [cody]
2631
+ * Update Secure Pay Au to meet specs for MessageInfo elements [cody]
2632
+ * Add support for the Australian Secure Pay payment gateway [cody]
2633
+ * Allow LinkPoint cancellations for recurring billing. [yanagimoto.shin]
2634
+ * Add support for ?land Islands to the country list [cody]
2635
+
2636
+ == Version 1.3.1 (January 28, 2008)
2637
+
2638
+ * Rename BrainTreeGateway to BraintreeGateway, but keep alias to old naming for backwards compatibility [cody]
2639
+
2640
+ == Version 1.3.0 (January 28, 2008)
2641
+
2642
+ * Remove attr_readers for url and response from Gateway [cody]
2643
+ * Remove @url from EfsnetGateway [cody]
2644
+ * Remove @response instance variable in QuickpayGateway. [cody]
2645
+ * Remove @response instance variable in PsigateGateway. Don't use billing address for shipping [cody]
2646
+ * Remove @response instance variable in PaypalGateway. Don't use billing address for shipping. [cody]
2647
+ * Remove @response instance variable in PayflowGateway [cody]
2648
+ * Remove @response instance variable in MonerisGateway [cody]
2649
+ * Remove @response instance variable and don't use billing address for shipping address in LinkpointGateway [cody]
2650
+ * Remove @response instance variable from ExactGateway [cody]
2651
+ * Remove @response instance variable from EwayGateway [cody]
2652
+ * Remove @response instance variable from EfsnetGateway [cody]
2653
+ * Remove @response instance variable from DataCashGateway [cody]
2654
+ * Don't use billing_address for shipping_address in CyberSourceGateway [cody]
2655
+ * Remove @response instance variable from CardStreamGateway [cody]
2656
+ * Remove @response instance variable from BrainTreeGateway [cody]
2657
+ * Remove unused deal_with_cc method from BogusGateway [cody]
2658
+ * Remove test_result_from_cc_number completely from ActiveMerchant [cody]
2659
+ * Don't use billing_address for shipping_address in Realex [cody]
2660
+ * Update Realex to add support for cvv data. remove test_result_from_cc_number. [cody]
2661
+ * Update Protx to add support for avs and cvv data. remove test_result_from_cc_number. [cody]
2662
+ * Include ActiveMerchant::Utils module in test_helper and use generate_unique_id from the module instead of generate_order_id. [cody]
2663
+ * Update SecurePay tests to check for avs and cvv data. [cody]
2664
+ * Update SkipJack to add support for avs and cvv data. remove test_result_from_cc_number. [cody]
2665
+ * Move generate_unique_id to its own module [cody]
2666
+ * Update Viaklix to add support for avs and cvv data. remove test_result_from_cc_number. Truncate fields to avoid failure [cody]
2667
+ * Update PSL Card Gateway to add support for avs and cvv data. remove test_result_from_cc_number. [cody]
2668
+ * Update PlugNPayGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
2669
+ * Update PaymentExpressGateway to remove test_result_from_cc_number. [cody]
2670
+ * Update PaySecure to remove test_result_from_cc_number. [cody]
2671
+ * Update NetbillingGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
2672
+ * Replace all usage of :address with :billing_address in test cases [cody]
2673
+ * Remove sensitive data from NetRegistryGateway responses. Refactor gateway and tests. Remove test_result_from_cc_number. [cody]
2674
+ * Update VerifiGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
2675
+ * Small refactoring of UsaEpayGateway [cody]
2676
+ * Update UsaEpayGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
2677
+ * Update TrustCommerce docs now that the gateway falls back to SSL post when tclink isn't available [cody]
2678
+ * Change ARB to use correct :address1 key for addresses [cody]
2679
+ * No need for specialized recurring response for Authorize.net recurring billing [cody]
2680
+ * Update TransFirst to support avs and cvv data. Remove test_result_from_cc_number. [cody]
2681
+ * Maintain backwards compatibility with :address option for now in the Payflow gateways [cody]
2682
+ * Remove test_result_from_cc_number from SecurePayTech. Improve unit test coverage [cody]
2683
+ * Fix email option in PayflowGateway. Remove support for :address option. :billing_address and :shipping_address must now be passed in separately. [cody]
2684
+ * Make Bogus gateway's credit() method behave like capture [cody]
2685
+ * Add update and delete methods to update and delete records stored in the vault. [benjamin.curtis]
2686
+ * Add support for recurring_inquiry() to the PayflowGateway [dave.my...@contentfree.com]
2687
+ * Add support for Authorize.net Automated Recurring Billing (ARB) [vkurnavenkov, forestcarlisle, ianlotin...@hotmail.com, patrick.t.joyce]
2688
+ * Fix laser card regex [ladislav.martincik]
2689
+ * Cleanup whitepace in README [patrick.t.joyce]
2690
+ * Update ExactGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
2691
+ * Remove test_result_from_cc_number from eWay gateway. [cody]
2692
+ * Remove duplicate attr_reader definitions from all gateways [cody]
2693
+ * Remove useless tests raising Error [cody]
2694
+ * Update gateway templates [cody]
2695
+ * Fix Authorize.net test where authorize() was being called instead of purchase(). Perform some cleanup of the tests [ianlotin...@hotmail.com, cody]
2696
+ * Improve Authorize.net documentation based on the DataCashGateway docs [patrick.t.joyce]
2697
+ * Update EfsnetGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
2698
+ * Remove test_result_from_cc_number from DataCash. Improve unit test coverage [cody]
2699
+ * Update CyberSourceGateway to support avs and cvv results. Remove test_result_from_cc_number. [cody]
2700
+ * Remove match information from CVVResult [cody]
2701
+ * Remove Response#card_data. The application has access to the information anyway [cody]
2702
+ * Return the last 4 digits of the card number from the Response instead of the masked number [cody]
2703
+ * Actually use the shipping address in TrustCommerce [cody]
2704
+ * 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]
2705
+ * Fix remote CardStreamGateway tests [cody]
2706
+ * Map merchant AVS codes to street and postal match codes [cody]
2707
+ * Update CardStreamGateway to support avs and cvv data [cody]
2708
+ * Remove merchant_data hash. Add additional CVV codes [cody]
2709
+ * Update QuickpayGateway to support merchant_data hash. Remove test_result_from_cc_number. [cody]
2710
+ * Update LinkpointGateway to support merchant_data hash. Remove test_result_from_cc_number. [cody]
2711
+ * Update PsigateGateway to support merchant_data hash. Remove test_result_from_cc_number. [cody]
2712
+ * Update MonerisGateway to support merchant_data hash. Remove test_result_from_cc_number. [cody]
2713
+ * Remove AVS Message and CVV2 Message from params hash in Authorize.net [cody]
2714
+ * Update BrainTreeGateway to support merchant_data hash [cody]
2715
+ * Update PaypalGateway to support merchant_data hash [cody]
2716
+ * Update Payflow to support merchant_data hash [cody]
2717
+ * 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]
2718
+ * Rename CCVResult to CVVResult to be more aligned with ActiveMerchant's usage of the term verification value [cody]
2719
+ * Remove test_result_from_cc_number from Authorize.net in favour of mocking [cody]
2720
+ * Add merchant_data hash, which contains all of the card_data, avs_result, and ccv_result. [cody]
2721
+ * Add CCVResult for the Card Code Verification Result. Update Authorize.net to use the new class [cody]
2722
+ * Rename AVSResult#match_type AVSResult#match [cody]
2723
+ * Rename AVS::Result class to AVSResult [cody]
2724
+ * Convert Authorize.net gateway to use the new AVS module [cody]
2725
+ * Add AVS data to the Response object [cody]
2726
+ * Fix credentials for remote Authorize.net TEST MODE test [cody]
2727
+ * Add AVS module and AVS::Result class [cody]
2728
+ * Update base gateway class RDOC [cody]
2729
+ * 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]
2730
+ * Handle the return from 2Checkout [cody]
2731
+ * Automatically determine the credit card type when a type is not provided [cody]
2732
+ * Revert to initial implementation of LUHN algorithm because it all fits in one simple method [cody]
2733
+ * Remove unused api_cert_chain.crt file [cody]
2734
+ * Update PaypalGateway, and PaypalExpressGateway to send requests to the correct endpoints when using API signatures [cody]
2735
+ * Successful return code for HiTRUST is actually 00 [cody]
2736
+ * Make ActiveMerchant::Billing::Error a subclass of ActiveMerchant::ActiveMerchantError [cody]
2737
+ * Handle the return from the offsite payment gateways [cody]
2738
+ * Default HiTRUST order description to "Store purchase" [cody]
2739
+ * Fix HiTRUST field names [cody]
2740
+ * Add support for passing in the locale code [georg.fr...@meandevel.com]
2741
+ * Add support for the Offsite payment gateway HiTRUST [cody]
2742
+ * Accept SuccessWithWarning as success [cody]
2743
+ * Add a link to the LinkPoint staging server docs in remote_linkpoint_test.rb [cody]
2744
+ * Update Discover regex [cody]
2745
+ * Match full pan range of Maestro cards from 12 - 19 digits in length [cody]
2746
+ * Fix errors on base of CreditCard [josh.bassett]
2747
+ * Update product to use Rubigen instead of stolen Rails generator [cody]
2748
+ * Mimic directory structure of unit tests in remote tests [cody]
2749
+ * Restructure the location of the remote tests [cody]
2750
+ * Ensure DataCash order_id is limited to 30 characters [cody]
2751
+ * Return the pretty messages from PayJunction based on the return code [cody]
2752
+ * make CreditCard.require_verification_value = true the default [cody]
2753
+ * Use existing credit_card helper in credit card tests [cody]
2754
+ * Return the authrorization number of the original transaction in the SkipJack gateway [cody]
2755
+ * Update format of line items given to the gateway. Cleanup and uncomment unit tests [cody]
2756
+ * Add support for the SkipJack gateway [Bill Bereza, cody]
2757
+ * Make the bogus gateway easier to test by moving messages into constants [cody]
2758
+ * 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]
2759
+ * Catch Timeout::Error when posting data [cody]
2760
+ * Change order of loading ActionPack for tests since assert_success defined in ActionController::Assertions::DeprecatedAssertions inteferes with ActiveMerchant's definition [cody]
2761
+ * Catch Errno::ETIMEDOUT and extend open and read timeouts to 60 seconds [cody]
2762
+ * Add address2 to the billing address of Viaklix transactions [cody]
2763
+ * Improve Psigate generic error message [cody]
2764
+ * Fix small errors in Psigate documentation [cody]
2765
+ * Add Response#fraud_review? query method to the response. Allows gateways to indicate that a payment is pending review by the fraud service [cody]
2766
+ * Handle Errno::ECONNRESET when posting data [cody]
2767
+ * Fix broken USA ePay URL [cody]
2768
+ * Update RequiresParameters to support HashWithIndifferentAccess [cody]
2769
+ * Add support for SecurePayTech payment gateway [Jasper Bryant-Greene]
2770
+ * Detect when test credentials are being used with PayJunction [cody]
2771
+ * Update documentation about TrustCommerce void [cody]
2772
+ * Add void to TrustCommerce [jesse.c.scott]
2773
+ * Add support for echecks to the BrainTree gateway [Jeremy Voorhis]
2774
+ * Fix before_validate and validate methods in CreditCard [rick.denatale]
2775
+ * Add support for Netbilling payment gateway [cody]
2776
+ * Pass in N/A for unknown states when a country is present in PaypalGateway [cody]
2777
+ * Strip non alpha chars from order_id in Payflow gateway, as Paymentech Tampa can't handle them [cody]
2778
+ * Add support for the PaySecure payment gateway [cody]
2779
+ * Add support for descriptions in Authorize.net credits [shiva.kaul]
2780
+ * Great cleanup and improvement of CreditCard code, tests, and docs [James Herdman]
2781
+
2782
+ == Version 1.2.1
2783
+
2784
+ * Fix remote PayPal tests [cody]
2785
+
2786
+ == Version 1.2.0
2787
+
2788
+ * Update Linkpoint tests to remove useless pem file [cody]
2789
+ * Use symbols for CreditCard error messages, since errors have indifferent access [cody]
2790
+ * Improve CreditCard error messages [George Ogata]
2791
+ * Change deny to assert_false, and deny_success to assert_failure. Remove Gateway.gateway, as it is available from Base [cody]
2792
+ * Improve documentation, and test coverage [James Herdman]
2793
+ * Refactor MonerisGateway, improve test coverage and documentation [James Herdman]
2794
+ * Add support for crediting to Moneris [James Herdman]
2795
+ * Send state N/A in Payflow when the state is blank. Fixes UK PayPal Express payments when not providing a state [cody]
2796
+ * 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]
2797
+ * Add support for password protected pem files [cody]
2798
+ * Add support for Concord Efsnet payment gateway [snacktime]
2799
+ * Fix dependency loading for gateways that are subclasses [cody]
2800
+ * Add Braintree payment gateway [Michael J. Mangino]
2801
+ * Add support for PayPal API signatures [Benjamin Curtis, cody]
2802
+ * Add payment gateway Viaklix [Sal Scotto, cody]
2803
+ * Add Australian payment gateway NetRegistry [George Ogata]
2804
+ * Take order email from the options hash instead of the address for CyberSource [cody]
2805
+ * Use an array for LineItems when calculating tax in CyberSource gateway [cody]
2806
+ * Add CyberSource gateway [Matt Margolis]
2807
+ * Sanitize Protx order id [cody]
2808
+ * Fix support for electron in Protx [cody]
2809
+ * Add support for Protx [shiftx, cody]
2810
+ * Use undef_method with a single argument in SecurePay to prevent JRuby from choking on it. [jonathan.l.bartlett]
2811
+ * Default address_override to 0 for PayPal Website Payments Standard payments. [cody]
2812
+ * Enhance credit card error messages [manfred]
2813
+ * Use HashWithIndifferentAccess for CreditCard for compatibility with Rails applications [michael.j.mangino]
2814
+ * Fix nil exception when no response reason text is found in Authorize.net [cody]
2815
+ * Add support for PayJunction [Matt Sanders]
2816
+ * 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.
2817
+ * Remove switch patterns from card detection that were eliminated on July 1, 2007 [cody]
2818
+ * Format the issue number in Payflow requests to always be 2 digits [cody]
2819
+ * Move application_id to Gateway and Helper class respectively [cody]
2820
+ * Improve TrustCommerce documentation [cody]
2821
+ * Add credit to Payflow [cody]
2822
+ * Add support for the Plug 'N Pay gateway [ryan.norbauer, cody]
2823
+ * Add support for ItemTotal, Shipping, Handling, and Tax amounts in the PayPal Express and PayPal gateways [baldwindavid, cody]
2824
+ * Add page customization options to the PaypalExpress, and PayflowExpress gateways [ cpjolicoeur, cody]
2825
+ * Add Verifi gateway [Paul Hepworth]
2826
+ * Add a PayflowResponse object with a profile_id accessor method. Return the correct authorization number on recurring actions [cody]
2827
+ * Add support for an initial transaction with recurring payments [findchris, cody]
2828
+ * Add support for email receipts to recurring Payflow Payments [Rick Olson]
2829
+ * Ensure the ButtonSource isn't too long [cody]
2830
+ * Add ButtonSource to Paypal and PaypalExpress gateways [cody]
2831
+ * Rename application to application_id and place it on Base, so it can be set once and forgotten about [cody]
2832
+ * Add ButtonSource field to PayflowExpress gateway [cody]
2833
+ * Add a field for the bn to the PayPal helper [cody]
2834
+ * Add remote secure pay test and correctly define test? [cody]
2835
+ * Undefine unsupported methods from SecurePay [cody]
2836
+ * Enhance the TransFirst error message for declined transactions [cody]
2837
+ * Add initial support for TransFirst gateway [cody]
2838
+ * Deprecate certification_id in Payflow gateways [cody]
2839
+ * Work around required PayPal state fields for countries that don't require states [cody]
2840
+ * Add metadata to SecurePay gateway [cody]
2841
+ * Add initial support for the SecurePay gateway using the Authorize.net translator [cody]
2842
+ * Add the homepage_url and display_name accessors to each gateway [cody]
2843
+ * 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]
2844
+ * Add American Express card to Psigate [cody]
2845
+ * Send N/A to PayPal in the PayPal Helper when we don't know the UK county [cody]
2846
+ * Actually pass the amount of the capture through to Payflow [cody]
2847
+ * Update ExactGateway test and test mode [cody]
2848
+ * Remove unused method in PslCardGateway [cody]
2849
+ * Add updated credit card tests [cody]
2850
+ * Update and test PslCardGateway [cody]
2851
+ * Add Laser card type [cody]
2852
+ * Update Nochex documentation [cody]
2853
+ * Sanitize the Realex order_id [cody]
2854
+ * Add support for Irish Realex payment gateway [John Ward, cody]
2855
+ * Move credit_card helper method to the test_helper [cody]
2856
+ * Update PayflowExpressResponse to match the interface of the PayflowExpressResponse. Add :no_shipping and :address_override options to PayflowExpress [cody]
2857
+ * Add a currency option to the Payflow and Paypal gateways [cody]
2858
+ * PaypalExpress should use the shipping address, not the billing address [cody]
2859
+ * Allow overriding the user with Payflow so that a vendor and user can be provided when making requests [cody]
2860
+ * 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]
2861
+ * Add ability to perform reference transactions with Payflow [Al Evans, cody]
2862
+ * Enhance recurring Payflow tests and recurring_inquiry [Al Evans]
2863
+ * Add recurring payments to Payflow [Rick Olson]
2864
+ * Improve the error message generated by requires! [cody]
2865
+ * Update credit card regular expressions and update Quickpay gateway with tests for new cards [cody]
2866
+ * Add support for token based payments to PaymentExpress [Nik Wakelin]
2867
+ * Refactor default_currency to the base gateway class [cody]
2868
+ * Clean unsupported characters from the Quickpay ordernum [cody]
2869
+ * Call the :sale and :authorization in QuickpayGateway [cody]
2870
+ * Add Danish gateway Quickpay [cody]
2871
+ * Remove redundant hash brackets from generator template [cody]
2872
+ * Add additional options to the PayPal Website Payments Standard Helper [Rick Olson]
2873
+ * Move generate_unique_id method to Gateway class so other gateways can also use it [cody]
2874
+ * Allow notification name / value pairs to have a . in the name like checkout.x = 400 [cody]
2875
+ * Fix PaypalExpressGateway#purchase to have the same method signature as other gateways [cody]
2876
+ * Cargo cult off the rails unique id generator instead of UUID library [cody]
2877
+ * Add uuid-1.0.3 for generating random request UUIDs [cody]
2878
+ * Remove mock_methods and http mock from the library [cody]
2879
+ * PaypalExpress cannot setup a payment for 0 dollars. If the amount is zero then setup a payment for $1. [cody]
2880
+ * Small changes to PslCard gateway [cody]
2881
+ * Fix Money dependency with PslCard gateway [cody]
2882
+ * Add PslCard payment gateway [MoneySpyder http://moneyspyder.co.uk]
2883
+ * Scrub the card number, expiry, and CVV code from the response [cody]
2884
+ * Use test? query for checking test mode [cody]
2885
+ * Add support for the E-xact Payment Gateway [James Edward Gray II, cody]
2886
+ * Fix partially broken method of dealing with phone numbers in the PayPal Helper [cody]
2887
+ * Update remote tests for PaymentExpress [cody]
2888
+ * Add Content-Type header to PaymentExpress post [cody]
2889
+ * Use DECLINED as the message for declined transactions in the PaymentExpress remote tests [cody]
2890
+ * Add JCB as a supported card type for the PaymentExpressGateway [cody]
2891
+ * Rename DpsGateway to PaymentExpressGateway [cody]
2892
+ * Add DPS Payment Express gateway (NZ) [dgjones, cody]
2893
+ * Remove duplicate and incorrect expdate method from Authorize.net [cody]
2894
+ * Allow authorization and purchase using a billing_id retrieved from TrustCommerce citadel [jesse.c.scott]
2895
+ * Don't return a frozen string from CreditCard.type? [cody]
2896
+ * Update remote Psigate test to ensure using a verification value doesn't break anything [cody]
2897
+ * Update remote Moneris test to ensure using a verification value doesn't break anything [cody]
2898
+ * Fix Solo issue number with CardStream gateway and improve test coverage [cody]
2899
+ * Add CardStream gateway [Jonah Fox, Thomas Nichols, cody]
2900
+ * Verify Peer in PayPal notifications and add account method [cody]
2901
+
2902
+ == Version 1.1.0
2903
+
2904
+ * Add unique_id option to PayPal mass payments [Haig]
2905
+ * Fix expiry date in USA ePay [cody]
2906
+ * Fix PayPal Payments Pro UK with Switch & Solo cards [cody]
2907
+ * Add reauthorization to PaypalGateway and PaypalExpressGateway [dorrenchen]
2908
+ * Update DataCash tests and format merchant reference number to meet DataCash's requirements [MoneySpyder, cody]
2909
+ * Add Datacash gateway [MoneySpyder, cody]
2910
+ * VERIFY_PEER on all SSL requests [cody]
2911
+ * Add support for 2Checkout [cody]
2912
+
2913
+ == Version 1.0.3
2914
+
2915
+ * Add support for PayPal mass payments to the PaypalGateway and the PaypalExpressGateway [Brandon Keepers]
2916
+ * Add a credit method to Authorize.net [cody]
2917
+
2918
+ == Version 1.0.2
2919
+
2920
+ * Add support for OrderDescription, Payer, and InvoiceID fields in PaypalGateway [cody]
2921
+
2922
+ == Version 1.0.1
2923
+
2924
+ * Add support for crediting to PayPal [cody, Haig]
2925
+
2926
+ == Version 1.0.0
2927
+
2928
+ * Add discover to list of supported card types for Authorize.net
2929
+ * Fix Psigate crediting [sean.alien8@gmail.com]
2930
+ * Fix dependency loading of tests
2931
+ * Add methods for storing credit cards to the Bogus gateway [Jim Kane]
2932
+ * Fix bugs in expiration dates. [Jim Kane]
2933
+ * Fixed bugs related to authorized.net [Rick Olson]
2934
+ * Linkpoint is now a full featured backend for active merchant [Ryan Heneise]
2935
+ * Added linkpoint support [Ryan Heneise]
2936
+ * Added trust commerce gateway [Hans Friedrich]
2937
+ * Removed shipping stuff until there is time to implement it properly
2938
+ * The library now rejects money amounts which are not either cents as integer or a Money object
2939
+ * Moneris now uses the same layout as the authorized.net plugin
2940
+ * Added authorized.net
2941
+ * Changed default to :test mode. Set to production with ActiveMerchant::Billing::Base.gateway_mode = :production
2942
+ * More refactoring
2943
+ * 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.
2944
+ * Added Moneris support
2945
+ * Credit card in memory object resembling a AR object
2946
+ * Credit card validation methods as static methods of the credit card object
2947
+
2948
+ == PlanetArgon fork for integrating Merchant eSolutions gateway