swiss-activemerchant 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (287) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG +4033 -0
  3. data/CONTRIBUTORS +568 -0
  4. data/MIT-LICENSE +20 -0
  5. data/README.md +249 -0
  6. data/lib/active_merchant/billing/apple_pay_payment_token.rb +22 -0
  7. data/lib/active_merchant/billing/avs_result.rb +95 -0
  8. data/lib/active_merchant/billing/base.rb +48 -0
  9. data/lib/active_merchant/billing/check.rb +112 -0
  10. data/lib/active_merchant/billing/compatibility.rb +118 -0
  11. data/lib/active_merchant/billing/credit_card.rb +451 -0
  12. data/lib/active_merchant/billing/credit_card_formatting.rb +24 -0
  13. data/lib/active_merchant/billing/credit_card_methods.rb +512 -0
  14. data/lib/active_merchant/billing/cvv_result.rb +37 -0
  15. data/lib/active_merchant/billing/gateway.rb +332 -0
  16. data/lib/active_merchant/billing/gateways/adyen.rb +774 -0
  17. data/lib/active_merchant/billing/gateways/airwallex.rb +370 -0
  18. data/lib/active_merchant/billing/gateways/alelo.rb +256 -0
  19. data/lib/active_merchant/billing/gateways/allied_wallet.rb +205 -0
  20. data/lib/active_merchant/billing/gateways/authorize_net.rb +1125 -0
  21. data/lib/active_merchant/billing/gateways/authorize_net_arb.rb +424 -0
  22. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +977 -0
  23. data/lib/active_merchant/billing/gateways/axcessms.rb +243 -0
  24. data/lib/active_merchant/billing/gateways/balanced.rb +263 -0
  25. data/lib/active_merchant/billing/gateways/bambora_apac.rb +222 -0
  26. data/lib/active_merchant/billing/gateways/bank_frick.rb +225 -0
  27. data/lib/active_merchant/billing/gateways/banwire.rb +116 -0
  28. data/lib/active_merchant/billing/gateways/barclaycard_smartpay.rb +397 -0
  29. data/lib/active_merchant/billing/gateways/barclays_epdq_extra_plus.rb +15 -0
  30. data/lib/active_merchant/billing/gateways/be2bill.rb +131 -0
  31. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +474 -0
  32. data/lib/active_merchant/billing/gateways/beanstream.rb +238 -0
  33. data/lib/active_merchant/billing/gateways/beanstream_interac.rb +57 -0
  34. data/lib/active_merchant/billing/gateways/blue_pay.rb +549 -0
  35. data/lib/active_merchant/billing/gateways/blue_snap.rb +644 -0
  36. data/lib/active_merchant/billing/gateways/bogus.rb +190 -0
  37. data/lib/active_merchant/billing/gateways/borgun.rb +272 -0
  38. data/lib/active_merchant/billing/gateways/bpoint.rb +277 -0
  39. data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +28 -0
  40. data/lib/active_merchant/billing/gateways/braintree/token_nonce.rb +113 -0
  41. data/lib/active_merchant/billing/gateways/braintree.rb +19 -0
  42. data/lib/active_merchant/billing/gateways/braintree_blue.rb +952 -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 +338 -0
  47. data/lib/active_merchant/billing/gateways/card_save.rb +21 -0
  48. data/lib/active_merchant/billing/gateways/card_stream.rb +394 -0
  49. data/lib/active_merchant/billing/gateways/cardknox.rb +327 -0
  50. data/lib/active_merchant/billing/gateways/cardprocess.rb +256 -0
  51. data/lib/active_merchant/billing/gateways/cashnet.rb +235 -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 +328 -0
  55. data/lib/active_merchant/billing/gateways/checkout.rb +212 -0
  56. data/lib/active_merchant/billing/gateways/checkout_v2.rb +587 -0
  57. data/lib/active_merchant/billing/gateways/citrus_pay.rb +21 -0
  58. data/lib/active_merchant/billing/gateways/clearhaus.rb +219 -0
  59. data/lib/active_merchant/billing/gateways/commerce_hub.rb +366 -0
  60. data/lib/active_merchant/billing/gateways/commercegate.rb +142 -0
  61. data/lib/active_merchant/billing/gateways/conekta.rb +230 -0
  62. data/lib/active_merchant/billing/gateways/creditcall.rb +272 -0
  63. data/lib/active_merchant/billing/gateways/credorax.rb +526 -0
  64. data/lib/active_merchant/billing/gateways/ct_payment.rb +269 -0
  65. data/lib/active_merchant/billing/gateways/culqi.rb +279 -0
  66. data/lib/active_merchant/billing/gateways/cyber_source/cyber_source_common.rb +36 -0
  67. data/lib/active_merchant/billing/gateways/cyber_source.rb +1148 -0
  68. data/lib/active_merchant/billing/gateways/cyber_source_rest.rb +454 -0
  69. data/lib/active_merchant/billing/gateways/d_local.rb +343 -0
  70. data/lib/active_merchant/billing/gateways/data_cash.rb +302 -0
  71. data/lib/active_merchant/billing/gateways/decidir.rb +358 -0
  72. data/lib/active_merchant/billing/gateways/decidir_plus.rb +344 -0
  73. data/lib/active_merchant/billing/gateways/dibs.rb +199 -0
  74. data/lib/active_merchant/billing/gateways/digitzs.rb +295 -0
  75. data/lib/active_merchant/billing/gateways/ebanx.rb +346 -0
  76. data/lib/active_merchant/billing/gateways/efsnet.rb +215 -0
  77. data/lib/active_merchant/billing/gateways/elavon.rb +475 -0
  78. data/lib/active_merchant/billing/gateways/element.rb +406 -0
  79. data/lib/active_merchant/billing/gateways/epay.rb +296 -0
  80. data/lib/active_merchant/billing/gateways/evo_ca.rb +307 -0
  81. data/lib/active_merchant/billing/gateways/eway.rb +226 -0
  82. data/lib/active_merchant/billing/gateways/eway_managed.rb +289 -0
  83. data/lib/active_merchant/billing/gateways/eway_rapid.rb +578 -0
  84. data/lib/active_merchant/billing/gateways/exact.rb +219 -0
  85. data/lib/active_merchant/billing/gateways/ezic.rb +195 -0
  86. data/lib/active_merchant/billing/gateways/fat_zebra.rb +223 -0
  87. data/lib/active_merchant/billing/gateways/federated_canada.rb +158 -0
  88. data/lib/active_merchant/billing/gateways/finansbank.rb +22 -0
  89. data/lib/active_merchant/billing/gateways/first_giving.rb +143 -0
  90. data/lib/active_merchant/billing/gateways/first_pay.rb +182 -0
  91. data/lib/active_merchant/billing/gateways/firstdata_e4.rb +452 -0
  92. data/lib/active_merchant/billing/gateways/firstdata_e4_v27.rb +505 -0
  93. data/lib/active_merchant/billing/gateways/flo2cash.rb +215 -0
  94. data/lib/active_merchant/billing/gateways/flo2cash_simple.rb +20 -0
  95. data/lib/active_merchant/billing/gateways/fluidpay.rb +275 -0
  96. data/lib/active_merchant/billing/gateways/forte.rb +286 -0
  97. data/lib/active_merchant/billing/gateways/garanti.rb +256 -0
  98. data/lib/active_merchant/billing/gateways/global_collect.rb +580 -0
  99. data/lib/active_merchant/billing/gateways/global_transport.rb +193 -0
  100. data/lib/active_merchant/billing/gateways/hdfc.rb +205 -0
  101. data/lib/active_merchant/billing/gateways/hps.rb +472 -0
  102. data/lib/active_merchant/billing/gateways/iats_payments.rb +312 -0
  103. data/lib/active_merchant/billing/gateways/in_context_paypal_express.rb +15 -0
  104. data/lib/active_merchant/billing/gateways/inspire.rb +213 -0
  105. data/lib/active_merchant/billing/gateways/instapay.rb +159 -0
  106. data/lib/active_merchant/billing/gateways/ipg.rb +420 -0
  107. data/lib/active_merchant/billing/gateways/ipp.rb +176 -0
  108. data/lib/active_merchant/billing/gateways/iridium.rb +467 -0
  109. data/lib/active_merchant/billing/gateways/itransact.rb +448 -0
  110. data/lib/active_merchant/billing/gateways/iveri.rb +290 -0
  111. data/lib/active_merchant/billing/gateways/ixopay.rb +320 -0
  112. data/lib/active_merchant/billing/gateways/jetpay.rb +395 -0
  113. data/lib/active_merchant/billing/gateways/jetpay_v2.rb +432 -0
  114. data/lib/active_merchant/billing/gateways/klarna.rb +317 -0
  115. data/lib/active_merchant/billing/gateways/komoju.rb +115 -0
  116. data/lib/active_merchant/billing/gateways/kushki.rb +297 -0
  117. data/lib/active_merchant/billing/gateways/latitude19.rb +412 -0
  118. data/lib/active_merchant/billing/gateways/linkpoint.rb +448 -0
  119. data/lib/active_merchant/billing/gateways/litle.rb +643 -0
  120. data/lib/active_merchant/billing/gateways/mastercard.rb +286 -0
  121. data/lib/active_merchant/billing/gateways/maxipago.rb +220 -0
  122. data/lib/active_merchant/billing/gateways/mercado_pago.rb +348 -0
  123. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +228 -0
  124. data/lib/active_merchant/billing/gateways/merchant_one.rb +110 -0
  125. data/lib/active_merchant/billing/gateways/merchant_partners.rb +245 -0
  126. data/lib/active_merchant/billing/gateways/merchant_ware.rb +313 -0
  127. data/lib/active_merchant/billing/gateways/merchant_ware_version_four.rb +284 -0
  128. data/lib/active_merchant/billing/gateways/merchant_warrior.rb +248 -0
  129. data/lib/active_merchant/billing/gateways/mercury.rb +352 -0
  130. data/lib/active_merchant/billing/gateways/metrics_global.rb +293 -0
  131. data/lib/active_merchant/billing/gateways/micropayment.rb +182 -0
  132. data/lib/active_merchant/billing/gateways/migs/migs_codes.rb +100 -0
  133. data/lib/active_merchant/billing/gateways/migs.rb +329 -0
  134. data/lib/active_merchant/billing/gateways/mit.rb +260 -0
  135. data/lib/active_merchant/billing/gateways/modern_payments.rb +37 -0
  136. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +215 -0
  137. data/lib/active_merchant/billing/gateways/moka.rb +290 -0
  138. data/lib/active_merchant/billing/gateways/monei.rb +424 -0
  139. data/lib/active_merchant/billing/gateways/moneris.rb +488 -0
  140. data/lib/active_merchant/billing/gateways/money_movers.rb +150 -0
  141. data/lib/active_merchant/billing/gateways/mundipagg.rb +366 -0
  142. data/lib/active_merchant/billing/gateways/nab_transact.rb +299 -0
  143. data/lib/active_merchant/billing/gateways/ncr_secure_pay.rb +163 -0
  144. data/lib/active_merchant/billing/gateways/net_registry.rb +198 -0
  145. data/lib/active_merchant/billing/gateways/netaxept.rb +180 -0
  146. data/lib/active_merchant/billing/gateways/netbanx.rb +376 -0
  147. data/lib/active_merchant/billing/gateways/netbilling.rb +229 -0
  148. data/lib/active_merchant/billing/gateways/netpay.rb +223 -0
  149. data/lib/active_merchant/billing/gateways/network_merchants.rb +238 -0
  150. data/lib/active_merchant/billing/gateways/nmi.rb +396 -0
  151. data/lib/active_merchant/billing/gateways/ogone.rb +509 -0
  152. data/lib/active_merchant/billing/gateways/omise.rb +323 -0
  153. data/lib/active_merchant/billing/gateways/openpay.rb +246 -0
  154. data/lib/active_merchant/billing/gateways/opp.rb +394 -0
  155. data/lib/active_merchant/billing/gateways/optimal_payment.rb +331 -0
  156. data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +45 -0
  157. data/lib/active_merchant/billing/gateways/orbital.rb +1267 -0
  158. data/lib/active_merchant/billing/gateways/pac_net_raven.rb +206 -0
  159. data/lib/active_merchant/billing/gateways/pagarme.rb +239 -0
  160. data/lib/active_merchant/billing/gateways/pago_facil.rb +120 -0
  161. data/lib/active_merchant/billing/gateways/pay_arc.rb +392 -0
  162. data/lib/active_merchant/billing/gateways/pay_conex.rb +245 -0
  163. data/lib/active_merchant/billing/gateways/pay_gate_xml.rb +277 -0
  164. data/lib/active_merchant/billing/gateways/pay_hub.rb +213 -0
  165. data/lib/active_merchant/billing/gateways/pay_junction.rb +390 -0
  166. data/lib/active_merchant/billing/gateways/pay_junction_v2.rb +206 -0
  167. data/lib/active_merchant/billing/gateways/pay_secure.rb +110 -0
  168. data/lib/active_merchant/billing/gateways/pay_trace.rb +450 -0
  169. data/lib/active_merchant/billing/gateways/paybox_direct.rb +224 -0
  170. data/lib/active_merchant/billing/gateways/payeezy.rb +513 -0
  171. data/lib/active_merchant/billing/gateways/payex.rb +409 -0
  172. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +235 -0
  173. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +42 -0
  174. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
  175. data/lib/active_merchant/billing/gateways/payflow.rb +473 -0
  176. data/lib/active_merchant/billing/gateways/payflow_express.rb +220 -0
  177. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +14 -0
  178. data/lib/active_merchant/billing/gateways/payflow_uk.rb +20 -0
  179. data/lib/active_merchant/billing/gateways/payment_express.rb +373 -0
  180. data/lib/active_merchant/billing/gateways/paymentez.rb +365 -0
  181. data/lib/active_merchant/billing/gateways/paymill.rb +369 -0
  182. data/lib/active_merchant/billing/gateways/paynetworx.rb +227 -0
  183. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +718 -0
  184. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +69 -0
  185. data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +262 -0
  186. data/lib/active_merchant/billing/gateways/paypal.rb +136 -0
  187. data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
  188. data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +44 -0
  189. data/lib/active_merchant/billing/gateways/paypal_express.rb +272 -0
  190. data/lib/active_merchant/billing/gateways/paypal_express_common.rb +30 -0
  191. data/lib/active_merchant/billing/gateways/paypal_standard.rb +281 -0
  192. data/lib/active_merchant/billing/gateways/paysafe.rb +420 -0
  193. data/lib/active_merchant/billing/gateways/payscout.rb +159 -0
  194. data/lib/active_merchant/billing/gateways/paystation.rb +204 -0
  195. data/lib/active_merchant/billing/gateways/payu_in.rb +249 -0
  196. data/lib/active_merchant/billing/gateways/payu_latam.rb +482 -0
  197. data/lib/active_merchant/billing/gateways/payway.rb +207 -0
  198. data/lib/active_merchant/billing/gateways/payway_dot_com.rb +253 -0
  199. data/lib/active_merchant/billing/gateways/pin.rb +273 -0
  200. data/lib/active_merchant/billing/gateways/pixxels.rb +263 -0
  201. data/lib/active_merchant/billing/gateways/plexo.rb +308 -0
  202. data/lib/active_merchant/billing/gateways/plugnpay.rb +283 -0
  203. data/lib/active_merchant/billing/gateways/priority.rb +392 -0
  204. data/lib/active_merchant/billing/gateways/pro_pay.rb +325 -0
  205. data/lib/active_merchant/billing/gateways/psigate.rb +227 -0
  206. data/lib/active_merchant/billing/gateways/psl_card.rb +295 -0
  207. data/lib/active_merchant/billing/gateways/qbms.rb +302 -0
  208. data/lib/active_merchant/billing/gateways/quantum.rb +274 -0
  209. data/lib/active_merchant/billing/gateways/quickbooks.rb +377 -0
  210. data/lib/active_merchant/billing/gateways/quickpay/quickpay_common.rb +184 -0
  211. data/lib/active_merchant/billing/gateways/quickpay/quickpay_v10.rb +297 -0
  212. data/lib/active_merchant/billing/gateways/quickpay/quickpay_v4to7.rb +226 -0
  213. data/lib/active_merchant/billing/gateways/quickpay.rb +24 -0
  214. data/lib/active_merchant/billing/gateways/qvalent.rb +305 -0
  215. data/lib/active_merchant/billing/gateways/rapyd.rb +319 -0
  216. data/lib/active_merchant/billing/gateways/reach.rb +277 -0
  217. data/lib/active_merchant/billing/gateways/realex.rb +400 -0
  218. data/lib/active_merchant/billing/gateways/redsys.rb +723 -0
  219. data/lib/active_merchant/billing/gateways/s5.rb +247 -0
  220. data/lib/active_merchant/billing/gateways/safe_charge.rb +298 -0
  221. data/lib/active_merchant/billing/gateways/sage.rb +446 -0
  222. data/lib/active_merchant/billing/gateways/sage_pay.rb +434 -0
  223. data/lib/active_merchant/billing/gateways/sallie_mae.rb +141 -0
  224. data/lib/active_merchant/billing/gateways/secure_net.rb +260 -0
  225. data/lib/active_merchant/billing/gateways/secure_pay.rb +191 -0
  226. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +290 -0
  227. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +103 -0
  228. data/lib/active_merchant/billing/gateways/securion_pay.rb +305 -0
  229. data/lib/active_merchant/billing/gateways/shift4.rb +345 -0
  230. data/lib/active_merchant/billing/gateways/simetrik.rb +368 -0
  231. data/lib/active_merchant/billing/gateways/skip_jack.rb +450 -0
  232. data/lib/active_merchant/billing/gateways/smart_ps.rb +274 -0
  233. data/lib/active_merchant/billing/gateways/so_easy_pay.rb +194 -0
  234. data/lib/active_merchant/billing/gateways/spreedly_core.rb +312 -0
  235. data/lib/active_merchant/billing/gateways/stripe.rb +866 -0
  236. data/lib/active_merchant/billing/gateways/stripe_payment_intents.rb +602 -0
  237. data/lib/active_merchant/billing/gateways/swipe_checkout.rb +151 -0
  238. data/lib/active_merchant/billing/gateways/telr.rb +273 -0
  239. data/lib/active_merchant/billing/gateways/tns.rb +23 -0
  240. data/lib/active_merchant/billing/gateways/trans_first.rb +240 -0
  241. data/lib/active_merchant/billing/gateways/trans_first_transaction_express.rb +612 -0
  242. data/lib/active_merchant/billing/gateways/transact_pro.rb +222 -0
  243. data/lib/active_merchant/billing/gateways/transax.rb +21 -0
  244. data/lib/active_merchant/billing/gateways/transnational.rb +9 -0
  245. data/lib/active_merchant/billing/gateways/trexle.rb +221 -0
  246. data/lib/active_merchant/billing/gateways/trust_commerce.rb +500 -0
  247. data/lib/active_merchant/billing/gateways/usa_epay.rb +24 -0
  248. data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +1612 -0
  249. data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +367 -0
  250. data/lib/active_merchant/billing/gateways/vanco.rb +303 -0
  251. data/lib/active_merchant/billing/gateways/verifi.rb +224 -0
  252. data/lib/active_merchant/billing/gateways/viaklix.rb +171 -0
  253. data/lib/active_merchant/billing/gateways/visanet_peru.rb +250 -0
  254. data/lib/active_merchant/billing/gateways/vpos.rb +223 -0
  255. data/lib/active_merchant/billing/gateways/webpay.rb +97 -0
  256. data/lib/active_merchant/billing/gateways/wepay.rb +235 -0
  257. data/lib/active_merchant/billing/gateways/wirecard.rb +430 -0
  258. data/lib/active_merchant/billing/gateways/wompi.rb +197 -0
  259. data/lib/active_merchant/billing/gateways/world_net.rb +345 -0
  260. data/lib/active_merchant/billing/gateways/worldpay.rb +1050 -0
  261. data/lib/active_merchant/billing/gateways/worldpay_online_payments.rb +208 -0
  262. data/lib/active_merchant/billing/gateways/worldpay_us.rb +221 -0
  263. data/lib/active_merchant/billing/gateways.rb +14 -0
  264. data/lib/active_merchant/billing/model.rb +30 -0
  265. data/lib/active_merchant/billing/network_tokenization_credit_card.rb +39 -0
  266. data/lib/active_merchant/billing/payment_token.rb +21 -0
  267. data/lib/active_merchant/billing/rails.rb +3 -0
  268. data/lib/active_merchant/billing/response.rb +120 -0
  269. data/lib/active_merchant/billing/three_d_secure_eci_mapper.rb +27 -0
  270. data/lib/active_merchant/billing.rb +16 -0
  271. data/lib/active_merchant/connection.rb +194 -0
  272. data/lib/active_merchant/country.rb +338 -0
  273. data/lib/active_merchant/empty.rb +20 -0
  274. data/lib/active_merchant/errors.rb +38 -0
  275. data/lib/active_merchant/net_http_ssl_connection.rb +11 -0
  276. data/lib/active_merchant/network_connection_retries.rb +78 -0
  277. data/lib/active_merchant/post_data.rb +26 -0
  278. data/lib/active_merchant/posts_data.rb +92 -0
  279. data/lib/active_merchant/version.rb +3 -0
  280. data/lib/active_merchant.rb +63 -0
  281. data/lib/activemerchant.rb +1 -0
  282. data/lib/certs/cacert.pem +3214 -0
  283. data/lib/support/gateway_support.rb +69 -0
  284. data/lib/support/outbound_hosts.rb +28 -0
  285. data/lib/support/ssl_verify.rb +88 -0
  286. data/lib/support/ssl_version.rb +86 -0
  287. metadata +506 -0
data/CHANGELOG ADDED
@@ -0,0 +1,4033 @@
1
+
2
+ = ActiveMerchant CHANGELOG
3
+
4
+ == HEAD
5
+ * Stripe Payment Intents: Add support for new card on file field [aenand] #4807
6
+
7
+ == Version 1.131.0 (June 21, 2023)
8
+ * Redsys: Add supported countries [jcreiff] #4811
9
+ * Authorize.net: Truncate nameOnAccount for bank refunds [jcreiff] #4808
10
+ * CheckoutV2: Add support for several customer data fields [rachelkirk] #4800
11
+ * Worldpay: check payment_method responds to payment_cryptogram and eci [bbraschi] #4812
12
+
13
+ == Version 1.130.0 (June 13th, 2023)
14
+ * Payu Latam - Update error code method to surface network code [yunnydang] #4773
15
+ * CyberSource: Handling Canadian bank accounts [heavyblade] #4764
16
+ * CyberSource Rest: Fixing currency detection [heavyblade] #4777
17
+ * CyberSource: Allow business rules for requests with network tokens [aenand] #4764
18
+ * Adyen: Update Mastercard error messaging [kylene-spreedly] #4770
19
+ * Authorize.net: Update mapping for billing address phone number [jcreiff] #4778
20
+ * Braintree: Update mapping for billing address phone number [jcreiff] #4779
21
+ * CommerceHub: Enabling multi-use public key encryption [jherreraa] #4771
22
+ * Ogone: Enable 3ds Global for Ogone Gateway [javierpedrozaing] #4776
23
+ * Worldpay: Fix Google Pay [almalee24] #4774
24
+ * Borgun change default TrCurrencyExponent and MerchantReturnUrl [naashton] #4788
25
+ * Borgun: support for GBP currency [naashton] #4789
26
+ * CyberSource: Enable auto void on r230 [aenand] #4794
27
+ * Redsys: Set appropriate request fields for stored credentials with CITs and MITs [BritneyS] #4784
28
+ * Stripe & Stripe PI: Validate API Key [almalee24] #4801
29
+ * Add BIN for Maestro [jcreiff] #4799
30
+ * D_Local: Add save field on card object [yunnydang] #4805
31
+ * PayPal Express: Adds support for MsgSubID property on DoReferenceTransaction and DoExpressCheckoutPayment [wikiti] #4798
32
+ * Checkout_v2: use credit_card?, not case equality with CreditCard [bbraschi] #4803
33
+ * Shift4: Enable general credit feature [jherreraa] #4790
34
+
35
+ == Version 1.129.0 (May 3rd, 2023)
36
+ * Adyen: Update selectedBrand mapping for Google Pay [jcreiff] #4763
37
+ * Shift4: Add vendorReference field [jcreiff] #4762
38
+ * Shift4: Add OAuth error [aenand] #4760
39
+ * Stripe PI: Add billing address details to Apple Pay and Google Pay tokenization request [BritneyS] #4761
40
+ * Make gem compatible with Ruby 3+ [pi3r] #4768
41
+
42
+ == Version 1.128.0 (April 24th, 2023)
43
+ * CheckoutV2: Add support for Shipping Address [nicolas-maalouf-cko] #4755
44
+ * Element: Include Apple Pay - Google pay methods [jherrera] #4647
45
+ * dLocal: Add transaction query API(s) request [almalee24] #4584
46
+ * MercadoPago: Add transaction inquire request [molbrown] #4588
47
+ * Worldpay: Add transaction inquire request [molbrown] #4592
48
+ * Alelo: Adding homologation changes [heavyblade] #4590
49
+ * Adyen: Map standard error codes for `processing_error`, `config_error`, `invalid_amount`, and `incorrect_address` [ajawadmirza] #4593
50
+ * MerchantE: Add support for recurring transactions [naashton] #4594
51
+ * CyberSource: Add support for `discount_management_indicator`, `purchase_tax_amount`, `installment_total_amount`, and `installment_annual_interest_rate` fields. [rachelkirk] #4595
52
+ * Shift4: Remove `customer` from refund and `clerk` from store requests [ajawadmirza] #4596
53
+ * TransFirst Transaction Express: Update xml prefixing to be compatible with Nokogiri 1.13.4 [dsmcclain] #4582
54
+ * Iveri: Adding support for external MPI 3DS2 [heavyblade] #4598
55
+ * Credorax: Pass Network Transaction ID on MIT [jherreraa] #4600
56
+ * iVeri: Remove schema validation on Live requests [curiousepic] #4606
57
+ * Beanstream: Adding Third Party 3DS fields [heavyblade] #4602
58
+ * Borgun: Add support for 3DS preauth [ajawadmirza] #4603
59
+ * Cardstream: Add third party 3ds2 support [sainterman] #4570
60
+ * Accept both formats of Canadian routing numbers [molbrown] #4568
61
+ * DLocal: Add support for `original_order_id` [rachelkirk] #4605
62
+ * CheckoutV2: Add support for `merchant_initiated_transaction_id` [rachelkirk] #4611
63
+ * CardConnect: Add stored credential & pass any valid `ecomind` field [ajawadmirza] #4609
64
+ * Alelo: Trigger access token refresh on 404 [curiousepic] #4614
65
+ * DLocal: Add Network Tokens [gasb150] #4608
66
+ * Redsys: enable NTID generation with zero-value verify [jcreiff] #4615
67
+ * IPG: Add support for passing in `store_id` on transactions [aenand] #4619
68
+ * Adyen: Field support for Level 2 and level 3 information [sainterman] #4617
69
+ * Add alternate alpha2 country code for Kosovo [jcreiff] #4622
70
+ * CyberSource: Add support for several fields [rachelkirk] #4623
71
+ * Reach: adding gateway [cristian] #4618
72
+ * Orbital: integration improvements [molbrown] #4626
73
+ * iVeri: add new url [almalee24] #4630
74
+ * Payeezy: Enable Apple Pay support [naashton] #4631
75
+ * Payeezy: Scrub Cryptogram [naashton] #4633
76
+ * Checkout: Fix for `[:source][:stored]` in stored credentials [marioarranzr] #4629
77
+ * Mundipagg: send authorization_secret_key on all transaction types [edgarv09] #4635
78
+ * CommerceHub: Add new gateway [naashton] #4640
79
+ * CyberSource: Update installment data method [rachelkirk] #4642
80
+ * Element: fix bug with billing address email [jcreiff] #4644
81
+ * Openpay: set URL by merchant country [edgarv09] #4637
82
+ * Alelo: Improving credentials refresh process [heavyblade] #4616
83
+ * Decidir: Add transaction inquire request [almalee24] #4649
84
+ * EBANX: add soft_descriptor field [jcreiff] #4658
85
+ * CommerceHub: Add Apple Pay and Google Pay [gasb150] #4648
86
+ * Global Collect & Alelo: Fixing year dependent failing tests [heavyblade] #4665
87
+ * Moneris: Add Google Pay [sinourain] #4666
88
+ * Global Collect: Add transaction inquire request [almalee24] #4669
89
+ * Stripe PI: Add Level 3 support [almalee24] #4673
90
+ * Braintree: return additional processor response [jcreiff] #4653
91
+ * Payeezy: name from `billing_address` on `purchase` [naashton] #4674
92
+ * Stripe: add reverse_transfer to void transactions [jcreiff] #4668
93
+ * Global Collect: fix bug on transaction inquire request [almalee24] #4676
94
+ * Credorax: Support google pay and apple pay [edgarv09] #4661
95
+ * Plexo: Add support for 5 new credit card brands (passcard, edenred, anda, tarjeta-d, sodexo) [edgarv09] #4652
96
+ * Authorize.net: Google pay token support [sainterman] #4659
97
+ * Credorax: Add support for Network Tokens [jherreraa] #4679
98
+ * Stripe PI: use MultiResponse in create_setup_intent [jcreiff] #4683
99
+ * Credorax: Correct NTID logic for MIT transactions [aenand] #4686
100
+ * Adyen: Add support for `skip_mpi_data` flag [rachelkirk] #4654
101
+ * Add Canadian Institution Numbers [jcreiff] #4687
102
+ * Tns: update test URL [almalee24] #4698
103
+ * TrustCommerce: Update `authorization_from` to handle `store` response [jherreraa] #4691
104
+ * TrustCommerce: Verify feature added [jherreraa] #4692
105
+ * Rapyd: Add customer object to transactions [javierpedrozaing] #4664
106
+ * CybersourceRest: Add new gateway with authorize and purchase [heavyblade] #4690
107
+ * Litle: Add prelive_url option [aenand] #4710
108
+ * CommerceHub: Fixing verify status and prevent tokenization [heavyblade] #4716
109
+ * Payeezy: Update Stored Credentials [almalee24] #4711
110
+ * CheckoutV2: Add store/unstore [gasb150] #4712
111
+ * CybersourceREST - Refund | Credit [sinourain] #4700
112
+ * Braintree - Add Paypal custom fields [yunnydang] #4713
113
+ * BlueSnap - Add descriptor phone number field [yunnydang] #4717
114
+ * Braintree - Update transaction hash to include processor_authorization_code [yunnydang] #4718
115
+ * CyberSourceRest: Add apple pay, google pay [gasb150] #4708
116
+ * CybersourceREST - Void | Verify [sinourain] #4695
117
+ * Credorax: Set default ECI values for token transactions [sainterman] #4693
118
+ * CyberSourceRest: Add ACH Support [edgarv09] #4722
119
+ * CybersourceREST: Add capture request [heavyblade] #4726
120
+ * Paymentez: Add transaction inquire request [aenand] #4729
121
+ * Ebanx: Add transaction inquire request [almalee24] #4725
122
+ * Ebanx: Add support for Elo & Hipercard [almalee24] #4702
123
+ * CheckoutV2: Add Idempotency key support [yunnydang] #4728
124
+ * Adyen: Add support for shopper_statement field for capture [yunnydang] #4736
125
+ * CheckoutV2: Update idempotency_key name [yunnydang] #4737
126
+ * Payeezy: Enable external 3DS [jherreraa] #4715
127
+ * Ebanx: Remove default email [aenand] #4747
128
+ * CyberSourceRest: Add stored credentials support [jherreraa] #4707
129
+ * Payeezy: Add `last_name` for `add_network_tokenization` [naashton] #4743
130
+ * Stripe PI: Tokenize payment method at Stripe for `verify` [aenand] #4748
131
+ * Kushki: Add support for the months and deferred fields [yunnydang] #4752
132
+ * Borgun: Update TrCurrencyExponent for 3DS transactions with `ISK` [aenand] #4751
133
+ * CyberSourceRest: Add gateway specific fields handling [jherreraa] #4746
134
+ * IPG: Improve error handling [heavyblade] #4753
135
+ * Shift4: Handle access token failed calls [heavyblade] #4745
136
+ * Bogus: Add verify functionality [willemk] #4749
137
+ * Litle: Update successful_from method [almalee24] #4765
138
+
139
+ == Version 1.127.0 (September 20th, 2022)
140
+ * BraintreeBlue: Add venmo profile_id [molbrown] #4512
141
+ * Maestro: Adding missing BIN ranges [bradbroge] #4423
142
+ * Simetrik: Fix integer and float types, update scrub method [rachelkirk] #4405
143
+ * Credorax: Convert country codes for `recipient_country_code` field [ajawadmirza] #4408
144
+ * BlueSnap: Correctly parse `refund-transaction-id` [dsmcclain] #4411
145
+ * Worldpay: Add level II and level III data [javierpedrozaing] #4393
146
+ * Worldpay: extract `issuer_response_code` and `issuer_response_description` from gateway response [dsmcclain] #4412
147
+ * Vantiv: Support `duplicate` field read from saleResponse.duplicate attr [mashton] #4413
148
+ * Ogone: Add support for 3dsv2 [gasb150] #4410
149
+ * BlueSnap: Add support for stored credentials [ajawadmirza] #4414
150
+ * Monei: Add support for `lang` field [drkjc] #4421
151
+ * Wompi: Redirect `refund` to `void` [drkjc] #4424
152
+ * Rapyd: 3DS Support [naashton] #4422
153
+ * Adyen: Update API version [jherreraa] #4418
154
+ * Ogone: Updated home gateway URL [gasb150] #4419
155
+ * Credorax: Update url gateway and credit cards [javierpedrozaing] #4417
156
+ * Kushki: Pass extra_taxes with USD [therufs] #4426
157
+ * DLocal: fix bug with `X-Idempotency-Key` header [dsmcclain] #4431
158
+ * DLocal: Mark support for additional countries [gasb150] #4427
159
+ * Rapyd: Additional Fields [naashton] #4434
160
+ * Braintree: Return generated client token [BritneyS] #4416
161
+ * Simetrik: Update `audience` field [simetrik-frank] #4433
162
+ * CyberSource: Add bank account payment method support [heavyblade] #4428
163
+ * Rapyd: Zero Dollar Auth [naashton] #4435
164
+ * Rapyd: Scrub ACH [naashton] #4436
165
+ * VisaNet Peru: Update `purchase_number` [rachelkirk] #4437
166
+ * CardConnect: Add support for 3ds V2 [javierpedrozaing] #4429
167
+ * Rapyd: Support `store` and `unstore` [naashton] #4439
168
+ * Orbital: Update API version to 9.0 [gasb150] #4440
169
+ * Plexo: Add `meta_data` fields and reorder amount object in response [ajawadmirza] #4441
170
+ * Plexo: Change field name from `meta_data` to `metadata` [ajawadmirza] #4443
171
+ * Simetrik: Update `vat` to be in cents [simetrik-frank] #4425
172
+ * Cybersource: Handle Amex cryptograms [heavyblade] #4445
173
+ * Rapyd: Pass fields to `refund` and `store` [naashton] #4449
174
+ * VPOS: Allow reuse of encryption key [therufs] #4450
175
+ * Orbital: Add `payment_action_ind` field and refund through credit card to support tandem implementation [ajawadmirza] #4420
176
+ * Airwallex: Send `referrer_data` on setup transactions [drkjc] #4453
177
+ * Adyen and StripPI: Updated error messaging [mbreenlyles] #4454
178
+ * Airwallex: Update `referrer_data` field [drkjc] #4455
179
+ * Simetrik: Update `order_id` and `description` to be top level fields [simetrik-frank] #4451
180
+ * Plexo: Update `ip`, `description`, and `email` fields request format and scrub method to not filter cardholder name and reference id [ajawadmirza] #4457
181
+ * Plexo: Update `verify` implementation and add `verify_amount` field [ajawadmirza] #4462
182
+ * Vanco: Update `purchase` to complete a purchase transaction with an existing session id [BritneyS] #4461
183
+ * Authorize.net: Allow custom verify_amount and validate it [jherreraa] #4464
184
+ * Shift4: Add gateway adapter [ali-hassan] #4415
185
+ * Rapyd: Correctly add `billing_address` [naashton] #4465
186
+ * Credorax: Update processor response messages [jcreiff] #4466
187
+ * Shift4: add `customer_reference`, `destination_postal_code`, `product_descriptors` fields and core refactoring [ajawadmirza] #4469
188
+ * Paypal Express: Add checkout status to response object [mbreenlyles] #4467
189
+ * Shift4: Scrub security code [naashton] #4470
190
+ * Shift4: Update `cardOnFile` transaction requests [ajawadmirza] #4471
191
+ * Plexo: Update `success_from` definition [ajawadmirza] #4468
192
+ * Rapyd: Un-nest the payment urls [naashton] #4472
193
+ * Paypal Express: Correct naming mistake for accessor [mbreenlyles] #4473
194
+ * GlobalCollect: Enable Google Pay and Apple Pay [gasb150] #4388
195
+ * Shift4: $0 auth [naashton] #4474
196
+ * CyberSource: Updatie API version to 1.198 and fix 3DS test [cristian] #4456
197
+ * Shift4: add `store` method, `present` field in card, and to pass amount in cents [ajawadmirza] #4475
198
+ * Shift4: add `3ds2` implementation [ajawadmirza] #4476
199
+ * Shift4: update `success_from` definition to consider response code [ajawadmirza] #4477
200
+ * Rapyd: Customer Object [naashton] #4478
201
+ * Shift4: Verify Endopint Fix [naashton] #4479
202
+ * CheckoutV2: Scrub cryptogram and credit card number [ajawadmirza] #4488
203
+ * CheckoutV2: Add `3ds.status` field to send status of 3DS flow of all 3DS transactions [BritneyS] #4492
204
+ * CheckoutV2: Add `challenge_indicator`, `exemption`, `authorization_type`, `processing_channel_id`, and `capture_type` fields [ajawadmirza] #4482
205
+ * Add `mada` card type and associated BINs; add support for `mada` in CheckoutV2 gateway [dsmcclain] #4486
206
+ * Authorize.net: Refactor custom verify amount handling [jherreraa] #4485
207
+ * EBANX: Change amount for Colombia [flaaviaa] #4481
208
+ * Worldpay: Update `required_status_message` and `message_from` methods for response. [rachelkirk] #4493
209
+ * CheckoutV2: Add support for transactions through OAuth [ajawadmirza] #4483
210
+ * Vanco: Update unit test to remove remote call to gateway [ajawadmirza] #4497
211
+ * Shift4: remove support for 3ds2 [ajawadmirza] #4503
212
+ * Rapyd: Add support for stored credential [ajawadmirza] #4487
213
+ * MerchantE: Update `store` and add `verify` method [ajawadmirza] #4507
214
+ * Shift4: Add default `numericId`, add `InterfaceVersion`, `InterfaceName`, and `CompanyName` header fields, change date time format and allow merchant time zone [ajawadmirza] #4509
215
+ * BraintreeBlue: Add support for partial capture [aenand] #4515
216
+ * Rapyd: Change key name to `network_transaction_id` [ajawadmirza] #4514
217
+ * CyberSource: Handle unsupported Network Token brands [heavyblade] #4500
218
+ * Ingenico(Global Collect): Add support for `payment_product_id` [rachelkirk] #4521
219
+ * Adyen: Add network transaction id to store call [jcreiff] #4522
220
+ * Worldpay: Add machine cookie to subsequent calls during 3DS challenge [mbreenlyles] #4513*
221
+ * Shift4: Scrub `securityCode` fix [naashton] #4524
222
+ * Credorax: Update `OpCode` for credit transactions [dsmcclain] #4279
223
+ * CheckoutV2: Add `credit` method [ajawadmirza] #4490
224
+ * Stripe Payment Intents: Add `options` for retrieve_setup_intent [aenand] #4529
225
+ * CheckoutV2: Send payment id via `incremental_authorization` field [ajawadmirza] #4518
226
+ * Shift4: Add card `present` field, use previous transaction authorization for capture, and hardcode header values [ajawadmirza] #4528
227
+ * Orbital: Remove `DPANInd` field for RC transactions [ajawadmirza] #4502
228
+ * EBANX: Add Spreedly tag to payment body [flaaviaa] #4527
229
+ * Shift4: Add `expiration_date` field for refund transactions [ajawadmirza] #4532
230
+ * Improve handling of AVS and CVV Results in Multiresponses [gasb150] #4516
231
+ * Airwallex: Add `skip_3ds` field for create payment transactions [ajawadmirza] #4534
232
+ * Shift4: Typo correction for `initial_transaction` [ajawadmirza] #4537
233
+ * Rapyd: Pass Customer ID and fix `add_token` method [naashton] #4538
234
+ * Shift4: If no timezone is sent on transactions, the code uses the hours and minutes as a timezone offset [ali-hassan] #4536
235
+ * Priority: Add support for general credit and updating cvv and zip [priorityspreedly] #4517
236
+ * Worldpay: Update actions for generated message in `required_status_message` method [rachelkirk] #4530
237
+ * Adyen: Modify handling of countryCode for ACH [jcreiff] #4543
238
+ * CardConnect: update api end-point urls [heavyblade] #4541
239
+ * Vantiv(Litle): Add support for `fraudFilterOverride` field [rachelkirk] #4544
240
+ * Stripe: Add shipping address [jcreiff] #4539
241
+ * PayuLatam: Add extra1, extra2, extra3 fields [jcreiff] #4550
242
+ * Paysafe: Add fundingTransaction object [jcreiff] #4552
243
+ * MerchantE: Add tests for `moto_ecommerce_ind` field [ajawadmirza] #4554
244
+ * Plexo: Update `purchase` method, add flags for header fields, add new fields `billing_address`, `identification_type`, `identification_value`, and `cardholder_birthdate` [ajawadmirza] #4540
245
+ * Rapyd: Remove `BR`, `MX`, and `US` from supported countries [ajawadmirza] #4558
246
+ * Stripe Payment Intents: fix bug with billing address email [jcreiff] #4556
247
+ * Shift4: Add customer to `purchase` & `store` and remove transaction from `store` [ajawadmirza] #4557
248
+ * MerchantE: only add `moto_commerce_ind` to request if it is present [ajawadmirza] #4560
249
+ * Add BpPlus card type along with custom validation logic [dsmcclain] #4559
250
+ * PayTrace: Support ACH implementation for new endpoints and request body [ajawadmirza] #4545
251
+ * Rapyd: No force capture for ACH [naashton] #4562
252
+ * Shift4: Applied checks on Shift4 Time/Timezone offset [ali-hassan] #4561
253
+ * Alelo: Add gateway [heavyblade] #4555
254
+ * Wompi: Allow partial refund amount on void_sync [jcreiff] #4535
255
+ * Shift4: Timezone Offset [naashton] #4566
256
+ * MerchantE: `recurring_pmt_num` and `recurring_pmt_count` fields [ali-hassan] #4553
257
+ * Orbital: Add South African Rand to supported currencies [molbrown] #4569
258
+ * Orbital: Fix CardSecValInd [molbrown] #4563
259
+ * Shift4: Add `usage_indicator`, `indicator`, `scheduled_indicator`, and `transaction_id` fields [ajawadmirza] #4564
260
+ * Shift4: Retrieve `access_token` once [naashton] #4572
261
+ * Redsys: Update Base64 encryption handling for secret key [jcreiff] #4565
262
+ * Shift4: refuse `postalCode` when its null [ajawadmirza] #4574
263
+ * Plexo: Update param key to `refund_type` [ajawadmirza] #4575
264
+ * Shift4: Update request params for `verify`, `capture`, and `refund` [ajawadmirza] #4577
265
+ * CyberSource: Add support for `sec_code` [rachelkirk] #4581
266
+ * BraintreeBlue: Correctly vault payment method token for PayPal Checkout with Vault [almalee24] #4579
267
+ * BpPlus: Allow spaces in card number [ajawadmirza] #4585
268
+ * Shift4: Decline referral transactions and parse message for internal server errors [ajawadmirza] #4583
269
+ * Litle: Update homepage_url [gasb150] #4491
270
+ * Priority: Update credential handling [therufs] #4571
271
+ * Shift4: Fix authorization and remove `entryMode` from verify and store transactions [ajawadmirza] #4589
272
+
273
+ == Version 1.126.0 (April 15th, 2022)
274
+ * Moneris: Add 3DS MPI field support [esmitperez] #4373
275
+ * StripePI: Add ability to change payment_method_type to confirm_intent [aenand] #4300
276
+ * GlobalCollect: Improve support for Naranja and Cabal card types [dsmcclain] #4286
277
+ * Payflow: Add support for stored credentials [ajawadmirza] #4277
278
+ * Orbital: Don't void $0 auths for Verify [javierpedrozaing] #2487
279
+ * StripePI: Enable Apple Pay and Google Pay payment methods [gasb150] #4252
280
+ * PaySafe: Update `unstore` method and authorization for redact [ajawadmirza] #4294
281
+ * CyberSource: Add `national_tax_indicator` fields in authorize and purchase [ajawadmirza] #4299
282
+ * NMI: Update gateway credentials to accept security_key [javierpedrozaing] #4302
283
+ * PaySafe: Fix commit for `unstore` method [ajawadmirza] #4303
284
+ * Ebanx: Add support for `order_number` field [ali-hassan] #4304
285
+ * BlueSnap: Add support for `idempotency_key` field [drkjc] #4305
286
+ * Paymentez: Update `capture` method to verify by otp for pending transactions [ajawadmirza] #4267
287
+ * BlueSnap: Update refund request and endpoint along with merchant transaction support [ajawadmirza] #4307
288
+ * DecidirPlus: Added `authorize`, `capture`, `void`, and `verify` methods [ajawadmirza] #4284
289
+ * Paymentez: Fix `authorize` to call `purchase` for otp flow [ajawadmirza] #4310
290
+ * Orbital: Indicate support for network tokenization [dsmcclain] #4309
291
+ * IPG: remove `uruguay` from supported countries [ajawadmirza] #4311
292
+ * Decidir: Add sub_payments sub-fields to gateway [meagabeth] #4315
293
+ * Priority: Add additional fields to purchase and capture requests [dsmcclain] #4301
294
+ * DecidirPlus: Added `unstore` method [ajawadmirza] #4317
295
+ * Decidir & Decidir Plus: Revise handling of `sub_payment` sub-fields [meagabeth] #4318
296
+ * DecidirPlus: Update `unstore` implementation to get token from params [ajawadmirza] #4320
297
+ * CyberSource: Add option for zero amount verify [gasb150] #4313
298
+ * PayU Latam: Refactor `message_from` method, fix failing remote tests [rachelkirk] #4326
299
+ * Adyen: Add currencies with three decimals places [gasb150] #4322
300
+ * GlobalCollect: Stregthen success criteria for void action [peteroas] #4324
301
+ * Priority Payment Systems - Clean up/refactor gateway file and tests [ali-hassan] #4327
302
+ * SafeCharge: change `verify` to send 0 amount [dsmcclain] #4332
303
+ * DLocal: add support for `force_type` field [dsmcclain] #4336
304
+ * Barclaycard SmartPay: Support more nonstandard currencies [jherreraa] #4335
305
+ * DecidirPlus: `name_override` option on `store` [naashton] #4338
306
+ * Priority: Update `add_purchases_data` to return if `options[:purchases]` is empty [drkjc] #4349
307
+ * Stripe PI: update `shipping` field to `shipping_address` [ajawadmirza] #4347
308
+ * DecidirPlus: Handle `payment_method_id` by `card_brand` [naashton] #4350
309
+ * DecidirPlus: `debit` and `payment_method_id` fields [naashton] #4351
310
+ * Adyen: Include Application ID in adyen authorize and purchase transactions [peteroas] #4343
311
+ * Priority: Add support for `replay_id` field [drkjc] #4352
312
+ * Stripe PI: standardize `shipping_address` fields [dsmcclain] #4355
313
+ * Airwallex: support gateway [therufs] #4342
314
+ * Litle: Translate google_pay as android_pay [javierpedrozaing] #4331
315
+ * Braintree: Add ACH support for store [cristian] #4285
316
+ * Simetrik: Add support for Simetrik gateway [simetrik-frank] #4339
317
+ * EBANX: Change amount for Mexico and Chile [flaaviaa] #4337
318
+ * DecidirPlus: Add `establishment_name`, `aggregate_data`, `sub_payments`, `card_holder_identification_type`, `card_holder_identification_number`, `card_door_number`, and `card_holder_birthday` fields [ajawadmirza] #4361
319
+ * DecidirPlus: Update `error_code_from` to get error reason id [ajawadmirza] #4364
320
+ * Dlocal: Add three_ds mpi support [cristian] #4345
321
+ * Stripe PI: Add `request_three_d_secure` field for `create_setup_intent` [aenand] #4365
322
+ * Adyen: Add `verify_amount` field for verify [ajawadmirza] #4369
323
+ * Stripe PI: Pass options for tokenizing Apple/Google Pay [gasb150] #4368
324
+ * Dlocal: Format 3DS mpi enrollment data correctly [cristian] #4371
325
+ * Airwallex: QA fixes for option handling [therufs] #4367
326
+ * CardConnect: Fixed duplicate(concat) Address sent - card_connect is concat. address1 and 2 causing a AVS error [ahmirza] #4362
327
+ * CyberSource: Remove Pinless Debit Transaction Functionality [peteroas] #4370
328
+ * Litle: Add support for Level 2 and 3 enhanced data [curiousepic] #4360
329
+ * Rapyd: Add gateway support [meagabeth] #4372
330
+ * CyberSource: Update and fix test coverage [peteroas] #4374
331
+ * Airwallex: QA fixes for address and create_setup_intent handling [therufs] #4377
332
+ * Airwallex: add `descriptor` field and update logic for sending `request_id` and `merchant_order_id` [dsmcclain] #4379
333
+ * Visanet Peru: use timestamp instead of random for purchaseNumber [therufs] #4093
334
+ * Orbital: add `verify_amount` field [ajawadmirza] #4376
335
+ * Credorax: add `recipient_street_address`, `recipient_city`, `recipient_province_code`, and `recipient_country_code` fields [ajawadmirza] #4384
336
+ * Airwallex: add support for stored credentials [drkjc] #4382
337
+ * Rapyd: Add metadata and ewallet_id options [naashton] #4387
338
+ * Priority: Add additional fields to request and refactor gateway integration [dsmcclain] #4383
339
+ * Rapyd: Update `type` option to `pm_type` [naashton] #4391
340
+ * Conekta: Fix remote test [javierpedrozaing] #4386
341
+ * NMI: Update post URL [jherreraa] #4380
342
+ * Multiple Gateways: Resolve when/case bug [naashton] #4399
343
+ * Airwallex: Add 3DS MPI support [drkjc] #4395
344
+ * Add Cartes Bancaires card bin ranges [leahriffell] #4398
345
+ * Airwallex: Add support for `original_transaction_id` field [drkjc] #4401
346
+ * Securion Pay: Pass external 3DS data [jherreraa] #4404
347
+ * Airwallex: Update Stored Credentials testing, remove support for `original_transaction_id` field [drkjc] 4407
348
+
349
+ == Version 1.125.0 (January 20, 2022)
350
+ * Wompi: support gateway [therufs] #4173
351
+ * Stripe Payment Intents: Add setup_purchase [aenand] #4178
352
+ * Ipg: Add new gateway [ajawadmirza] #4171
353
+ * Worldpay: Adding support for google pay and apple pay [cristian] #4180
354
+ * Worldpay: Adding scrubbing for network token transactions [cristian] #4181
355
+ * SafeCharge: Add sg_NotUseCVV field [ajawadmirza] #4177
356
+ * PayULatam: Correctly map maestro and condensa card types [dsmcclain] #4182
357
+ * StripePaymentIntents: Refactor response for setup_purchase [aenand] #4183
358
+ * Wompi: cast error messages to JSON [therufs] #4186
359
+ * NMI: Omit initial_transaction_id for CIT [aenand] #4189
360
+ * Priority: Support Priority Payment Systems gateway [jessiagee] #4166
361
+ * GlobalCollect: Support for Lodging Data [naashton] #4190
362
+ * IPG: Add support for sub-merchant and recurring type fields [ajawadmirza] # 4188
363
+ * Wompi: Support `installments` option [therufs] #4192
364
+ * Stripe PI: add support for `fulfillment_date` and `event_type` [dsmcclain] #4193
365
+ * Paysafe: Adjust logic for sending 3DS field [meagabeth] #4194
366
+ * Priority: Fix unit test cases [ajawadmirza] #4195
367
+ * EBANX: New Gateway Specific Receiver [spreedly-kledoux] #4198
368
+ * Wompi: Don't send CVV field if no CVV provided [therufs] #4199
369
+ * Worldpay: cleaning order_id according to worldpay rules [cristian] #4197
370
+ * Paysafe: Concatenate credentials for headers [meagabeth] #4201
371
+ * Stripe Payment Intents: Add metadata to setup_purchase [aenand] #4202
372
+ * Priority: Add gateway standard changes [ajawadmirza] #4200
373
+ * IPG: Add support for payment by token [ajawadmirza] #4191
374
+ * Element (Vantiv Express): Add support for general credit [dsmcclain] #4203
375
+ * Worldpay: Update supported countries list, currencies [jherreraa] #4207
376
+ * StripePI: Adding countries available. [gasb150] #4208
377
+ * Orbital: Adding google pay payment tests for Orbital. [ajawadmirza] #4205
378
+ * Bug: Fixing supported countries method when there is inheritance involved [cristian] #4211
379
+ * Mundipagg: Update success method [ajawadmirza] #4210
380
+ * Worldpay: Add support for Visa Direct Fast Funds Credit [dsmcclain] #4212
381
+ * Paysafe: Add support for stored credentials [meagabeth] #4214
382
+ * Worldpay: Adding missing countries to supported countries [cristian] #4213
383
+ * Update institution numbers for Canadian banks [therufs] #4216
384
+ * Worldpay: Set default eCommerce indicator for EMVCO network tokens [shasum] #4215
385
+ * Update handling routing numbers for Canadian banks [therufs] #4217
386
+ * Stripe: API version updated [jherreraa] #4209
387
+ * Mercado Pago: Update verify method [ajawadmirza] #4219
388
+ * DLocal: Set API Version [gasb150] #4222
389
+ * Wompi: Add support for Authorize and Capture [rachelkirk] #4218
390
+ * Priority: Update source and billing address checks [jessiagee] #4220
391
+ * Pin Payments: Add support for `diners_club`, `discover`, and `jcb` cardtypes [montdidier] #4142
392
+ * USA ePay: Add store method [ajawadmirza] #4224
393
+ * IPG: Quick fix to remove warning [ajawadmirza] #4225
394
+ * Remove YAML warning on load_fixtures_method [jherreraa] #4226
395
+ * Worldpay: Add support for tokenizing payment methods with transaction identifiers [dsmcclain] #4227
396
+ * USA ePay: Update implementation to send valid authorization [ajawadmirza] #4231
397
+ * USA ePay: Add store test, update authorize param [jessiagee] #4232
398
+ * Stripe: Update destination test account [jherreraa] #4234
399
+ * Add skip_response option on request check for commit stubs [cristian] #4223
400
+ * Pin Payments: Add support for `void` and New Zealand to supported countries. [montdidier] #4144
401
+ * Wompi: Update authorization in `capture` method. [rachelkirk] #4238
402
+ * IPG: Update authorization to support `store` method token. [ajawadmirza] #4233
403
+ * Paymentez: Update card mappings [ajawadmirza] #4237
404
+ * Priority: Update parsing for error messages [jessiagee] #4245
405
+ * GlobalCollect: Support for Airline Data [naashton] #4187
406
+ * IPG: Add `tpv_error_code` and `tpv_error_msg` fields [ajawadmirza] #4241
407
+ * StripePI: Set restriction for Apple/Google Pay [jherreraa] #4247
408
+ * Cashnet: support multiple itemcodes and amounts [peteroas] #4243
409
+ * IPG: Send default currency in `verify` and two digit `ExpMonth` [ajawadmirza] #4244
410
+ * Stripe: Add remote tests set up to avoid exceed the max external accounts limit [jherreraa] #4239
411
+ * Stripe: Add support for `radar_options: skip_rules` [dsmcclain] #4250
412
+ * CyberSource: Add `user_po`, `taxable`, `national_tax_indicator`, `tax_amount`, and `national_tax` fields [ajawadmirza] #4251
413
+ * Kushki: Add support for `metadata` [rachelkirk] #4253
414
+ * IPG: Add `redact` operation [ajawadmirza] #4254
415
+ * Wompi: Update sandbox and production endpoints [rachelkirk] #4255
416
+ * Orbital: Add `sca_merchant_initiated` operation [ajawadmirza] #4256
417
+ * Cashnet: convert amounts to integers for proper gateway handling [peteroas] #2207
418
+ * PayTrace: Add `unstore` operation [ajawadmirza] #4262
419
+ * Decidir Plus: Add gateway adapter [naashton] #4264
420
+ * CheckoutV2: Add support for Apple Pay and Google Pay tokens [AMHOL] #4235
421
+ * Decidir Plus: Update payment reference [naashton] #4271
422
+ * Paysafe: Update redact method [meagabeth] #4269
423
+ * CyberSource: Add `line_items` field in authorize method [ajawadmirza] #4268
424
+ * CheckoutV2: Support processing channel and marketplace sub entity ID [AMHOL] #4236
425
+ * Elavon: `third_party_token` bug fix [rachelkirk] #4273
426
+ * Decidir Plus: Add `sub_payments` field [naashton] #4274
427
+ * Pin Payments: Add `unstore` support [montdidier] #4276
428
+ * Orbital: Add support for $0 verify [javierpedrozaing] #4275
429
+ * Update inline documentation with all supported cardtypes [ali-hassan] #4283
430
+ * PayWay: Update endpoints, response code [jessiagee] #4281
431
+ * CyberSource: Add `line_items` for purchase [ajawadmirza] #4282
432
+ * Payflow Pro: Add `stored_credential` fields [ajawadmirza] #4277
433
+ * Decidir Plus: Add `fraud_detection` fields [naashton] #4289
434
+
435
+ == Version 1.124.0 (October 28th, 2021)
436
+ * Worldpay: Add Support for Submerchant Data on Worldpay [almalee24] #4147
437
+ * dlocal: Add device_id and ip to payer object and add additional_data [aenand] #4116
438
+ * Adyen: Add network tokenization support to Adyen gateway [mymir] #4101
439
+ * Adyen: Add ACH Support [almalee24] #4105
440
+ * Moka: Support 3DS endpoint and update test url [dsmcclain] #4110
441
+ * Paysafe: Adjust profile data [meagabeth] #4112
442
+ * Stripe Payment Intents: Add support for claim_without_transaction_id field [BritneyS] #4111
443
+ * Mit: Add New Gateway [EsporaInfra] #3820
444
+ * Routex: add card type [rachelkirk] #4115
445
+ * Orbital: Scrub Payment Cryptogram [naashton] #4121
446
+ * Paysafe: Add support for airline fields [meagabeth] #4120
447
+ * Stripe and Stripe PI: Add Radar Session Option [tatsianaclifton] #4119
448
+ * PayArc: Fix billing address nil and phone_number issues [dsmcclain] #4114
449
+ * Routex: Update BIN numbers [rachelkirk] #4123
450
+ * UnionPay: Add Stripe's UnionPay test card to UnionPay BIN range #4122
451
+ * GlobalCollect: Support URL override [naashton] #4127
452
+ * PayConex: scrub bank account info from transcripts [mbreenlyles] #4128
453
+ * Moka: Remove additional transaction data from subsequent calls [naashton] #4129
454
+ * Moka: Ensure CvcNumber can be an empty string [jessiagee] #4130
455
+ * Maestro: Allow more card lengths for Luhnless bins [therufs] #4131
456
+ * Paysafe: Update supported countries [meagabeth] #4135
457
+ * Paysafe: Update field mapping for split_pay [meagabeth] #4136
458
+ * SafeCharge: Add handling for non-fractional currencies [dsmcclain] #4137
459
+ * CardStream: Support passing country_code in request [dsmcclain] #4139
460
+ * Adyen: Adjust phone number mapping [aenand] #4138
461
+ * Mit: Change how parameters are converted to JSON [tatsianaclifton] #4140
462
+ * Stripe: Add account_number to scrubbing [aenand] #4145
463
+ * Stripe PI: add name on card to billing_details [dsmcclain] #4146
464
+ * TrustCommerce: Scrub bank account info [mbreenlyles] #4149
465
+ * TransFirst: Scrub account number [aenand] #4152
466
+ * Paysafe: Update supported countries list [meagabeth] #4154
467
+ * dLocal: Update supported countries list [mbreenlyles] #4155
468
+ * SafeCharge: Add support for email field in capture [rachelkirk] #4153
469
+ * Paysafe: Remove invalid code [meagabeth] #4156
470
+ * NMI: Add descriptor fields [ajawadmirza] #4157
471
+ * Authorize.net: Add tests for scrubbing banking account info (in addition to BluePay, BridgePay, Forte, HPS, and Vanco Gateways)[aenand] #4159
472
+ * Moka: Send refund amount with decimal [dsmcclain] #4160
473
+ * GlobalCollect: Append URI to the URL [naashton] #4162
474
+ * Adyen: Add application info fields [aenand] #4163
475
+ * Adyen: Send NTID from stored cred hash [curiousepic] #4164
476
+ * Payflow: use proper case for 3DS 2.x element names [bbraschi] #4113
477
+ * Realex: Add support for stored credentials [dsmcclain] #4170
478
+ * Moka: Add support for InstallmentNumber field [dsmcclain] #4172
479
+ * Payflow: include AuthenticationStatus for 3DS 2.x [bbraschi] #4168
480
+
481
+ == Version 1.123.0 (September 10th, 2021)
482
+ * Paysafe: Add gateway integration [meagabeth] #4085
483
+ * Elavon: Support recurring transactions with stored credentials [cdmackeyfree] #4086
484
+ * Orbital: Truncate three_d_secure[:version] [carrigan] #4087
485
+ * Credorax: Determine ISK decimal by datetime [curiousepic] #4088
486
+ * Moka: support new gateway type [dsmcclain] #4089
487
+ * Paymentez: Add more_info field [reblevins] #4091
488
+ * Worldpay: Support $0 auth [therufs] #4092
489
+ * Elavon: Support recurring transactions with token, revert stored credentials recurring [cdmackeyfree] #4089
490
+ * SafeCharge(Nuvei): Add support for product_id [rachelkirk] #4095
491
+ * NMI: Change cardholder_auth 3DS field population [carrigan] #4094
492
+ * Synchrony: add card type [therufs] #4096
493
+ * Maestro: support BINs without Luhn check [therufs] #4097
494
+ * Maestro: support BINs [therufs] #4098
495
+ * Redsys: Route MIT Exemptions to webservice endpoint [curiousepic] #4081
496
+ * Adyen: Update Classic Integration API to v64 and Recurring API to v49 [almalee24] #4090
497
+ * Payeezy: support soft_descriptor and merchant_ref [cdmackeyfree] #4099
498
+ * Elavon: add ssl_token field [cdmackeyfree] #4100
499
+ * Credorax: Remove special logic for ISK [curiousepic] #4102
500
+ * UnionPay: Pull UnionPay's 62* BIN ranges out of Discover's #4103
501
+ * Monei: Update Creation of Billing Details [tatsianaclifton] #4107
502
+ * Monei: Typo Correction on Billing Details [tatsianaclifton] #4108
503
+ * Paysafe: Add support for 3DS [meagabeth] #4109
504
+
505
+ == Version 1.122.0 (August 3rd, 2021)
506
+ * Orbital: Correct success logic for refund [tatsianaclifton] #4014
507
+ * usaepay: Added pin gateway setting [DustinHaefele] #4026
508
+ * MercadoPago: Added external_reference, more payer object options, and metadata field [DustinHaefele] #4020
509
+ * Element: Add duplicate_override_flag [almalee24] #4012
510
+ * PayTrace: Support gateway [meagabeth] #3985
511
+ * vPOS: Support credit + refund [therufs] #3998
512
+ * PayArc: Support gateway [senthil-code] #3974
513
+ * NMI: Support cardholder_auth field for 3DS2 [cdmackeyfree] #4002
514
+ * Confiable: Support cardtype [therufs] #4004
515
+ * Maestro: Add BIN [therufs] #4003
516
+ * PayULatam: Ensure phone number is pulled from shipping_address correctly [dsmcclain] #4005
517
+ * SafeCharge: Add challenge_preference for 3DS [klaiv] #3999
518
+ * Adyen: Pass networkTxReference in all transactions [naashton] #4006
519
+ * Adyen: Ensure correct transaction reference is selected [dsmcclain] #4007
520
+ * PayTrace: Support level_3_data fields [meagabeth] #4008
521
+ * BluePay: Add support for Stored Credentials [dsmcclain] #4009
522
+ * Orbital: Add support for SCARecurringPayment [jessiagee] #4010
523
+ * Braintree: Support recurring_first and moto reasons [curiousepic] #4013
524
+ * PayTrace: Adjust capture method [meagabeth] #4015
525
+ * BarclaysEpdqExtraPlus: updated custom_eci test + remote tests [yyapuncich] #4022
526
+ * CyberSource: Add customerID field [deemeyers] #4025
527
+ * CyberSource: Adjust Auth [naashton] #3956
528
+ * Valid Canadian Institution Numbers [naashton] #4024
529
+ * PayTrace: Adjust purchase and capture methods to handle MultiResponse scenarios [meagabeth] #4027
530
+ * Payflow: Add support for MERCHDESCR field [rachelkirk] #4028
531
+ * PayTrace: Support $0 authorize in verify method [meagabeth] #4030
532
+ * PayArc: Add error_code in response [cdm-83] #4021
533
+ * Update bank routing account validation check [jessiagee] #4029
534
+ * Kushki: Add 'contactDetails' fields [mbreenlyles] #4033
535
+ * Adyen: Truncating order_id and remote test [yyapuncich] #4036
536
+ * CyberSource: Allow string content for Ignore AVS/CVV flags [curiousepic] #4043
537
+ * Decidir: Update validation error message handling [arbianchi] #4042
538
+ * Authorize.net: Remove cardholderAuthentication for non-3DS transactions [BritneyS] #4045
539
+ * BlueSnap: Handle 429 errors [britth] #4044
540
+ * Orbital: Update unit test files [meagabeth] #4046
541
+ * Orbital: Strip null characters from responses [britth] #4041
542
+ * Merchant Warrior: Handle invalid XML responses [arbianchi] #4047
543
+ * Braintree: Fix NoMethodError for failed card verification [molbrown] #4048
544
+ * Worldpay: Accepting 3DS1 and 3DS2 authentication data from external MPI [chandan-PS] #4017
545
+ * PayArc: Currency and parameters updates [jessiagee] #4051
546
+ * Elavon: Add support for special characters [mbreenlyles] #4049
547
+ * PayArc: Formatting CC month, adding tax_rate, removing default void reason [jessiagee] #4053
548
+ * Kushki: Add support for fullResponse field [rachelkirk] #4057
549
+ * Element: Add support for `MerchantDescriptor` field [BritneyS] #4058
550
+ * PayArc: Added email and phone to credit and charge [jessiagee] #4056
551
+ * Mundipagg: Added support for 'authentication_secret_key' for 'api_key' overwrite [DustinHaefele] #4059
552
+ * Payflow: Raise an error if store method is called [dsmcclain] #4066
553
+ * Monei: JSON API implementation [jimmyn] #3613
554
+ * Maestro: Update BINs [therufs] #4067
555
+ * Monei: Change domain to monei.com [jimmyn] #4068
556
+ * Spreedly: Support gateway_specific_response_fields in response params [abarrak] #4064
557
+ * Payeezy: Add support for `add_soft_descriptors` [rachelkirk] #4069
558
+ * Stripe Payment Intents: Add support for network_transaction_id field [cdmackeyfree] #4060
559
+ * Worldpay: Support 'CAPTURED' response for authorize transactions [naashton] #4070
560
+ * Ingenico (Global Collect): New idempotence key header [BritneyS] #4073
561
+ * PayTrace: Adjust handling of line_items subfields [meagabeth] #4074
562
+ * Worldpay: Correct Expiration Year Format [tatsianaclifton] #4076
563
+ * Monei: Improve Scrub Regex [tatsianaclifton] #4072
564
+ * Payflow: add THREEDSVERSION and DSTRANSACTIONID when present [bbraschi] #4075
565
+ * CT Payments: update remote tests [cdmackeyfree] #3947
566
+ * Orbital: Ensure full e-check scrubbing [mbreenlyles] #4079
567
+
568
+ == Version 1.121 (June 8th, 2021)
569
+ * Braintree: Lift restriction on gem version to allow for backwards compatibility [naashton] #3993
570
+ * Payment Express/Windcave: Send amount on verify calls [cdmackeyfree] #3995
571
+ * Orbital: Use billing_address name as fallback [curiousepic] #3966
572
+ * vPOS: handle shop_process_id correctly [therufs] #3996
573
+ * Checkout v2: Support metadata field [saschakala] #3992
574
+ * Adyen: Support networkTxReference field [naashton] #3997
575
+ * Paypal Express: Enable PayPal express reference transaction request to send merchant session id [janees-e] #3994
576
+
577
+ == Version 1.120.0 (May 28th, 2021)
578
+ * Braintree: Bump required braintree gem version to 3.0.1
579
+ * Stripe PI: ensure `setup_future_sage` and `off_session` work when using SetupIntents.
580
+ * Orbital: Update commit to accept retry_logic in params [jessiagee] #3890
581
+ * Orbital: Update remote 3DS tests [jessiagee] #3892
582
+ * Mercado Pago: support Creditel card type [therufs] #3893
583
+ * Payeezy: Update error mapping [meagabeth] #3896
584
+ * HPS: Add support for stored_credential [cdmackeyfree] #3894
585
+ * Orbital: Ensure payment_detail sends for ECP [jessiagee] #3899
586
+ * Payeezy: Update `error_code_from` method [meagabeth] #3900
587
+ * Worldpay: Add support for `statementNarrative` field [meagabeth] #3901
588
+ * Mercado Pago: Give ability to pass capture option in authorize txn field [naashton] #3897
589
+ * Orbital: Ensure correct fields sent in refund [jessiagee] #3903
590
+ * WorldPay: remove some defaults in billing address [carrigan] #3902
591
+ * Adyen: Support for General Credit [naashton] #3904
592
+ * Worldpay: reintroduce address1 and city defaults [carrigan] #3905
593
+ * Stripe: ensure potentially nested data is scrubbed #3907
594
+ * Stripe PI: Send Validate on Payment Method Attach [tatsianaclifton] #3909
595
+ * Adyen: Update handling of authorization returned from gateway [meagabeth] #3910
596
+ * Update gateway templates for Rubocop compliance [therufs] #3912 #3895
597
+ * Orbital: Send AVSname for all eCheck transactions [jessiagee] #3911
598
+ * Litle: update support of customerId field [cdmackeyfree] #3913
599
+ * Payment Express: fix signature for `verify` [therufs] #3914
600
+ * Forte: Send xdata fields [dsmcclain] #3915
601
+ * PaywayDotCom: Add New Gateway [DanAtPayway] #3898
602
+ * Orbital: Remove unnecessary requirements [jessiagee] #3917
603
+ * SafeCharge (Nuvei): Add network tokenization support [DStoyanoff] #3847
604
+ * Stripe PI: Enhance testing of SetupIntents API #3908
605
+ * SafeCharge (Nuvei): Fix NT related bug [jimilpatel24] #3921
606
+ * Worldpay: Only override cardholdername for 3ds tests [curiousepic] #3918
607
+ * Orbital: Add support for general credit [meagabeth] #3922
608
+ * Banco Sabadell: Ensure sca_exemption field is used #3923
609
+ * Redsys: Refactor XML character escape logic #3925
610
+ * HPS: Strip zip codes of non-alphanumeric characters [dsmcclain] #3926
611
+ * Orbital: $0 PreNote using authorize for eCheck force_capture [jessiagee] #3927
612
+ * Worldpay: synchronous response changes [naashton] #3928
613
+ * PaywayDotCom: Add more thorough scrubbing [tatsianaclifton] #3929
614
+ * Remove CONTRIBUTING.md and update README.md to reflect new repository wiki [dsmcclain] #3930
615
+ * Qvalent: Add customer_reference_number [fredo-] #3931
616
+ * Orbital: Add 'ND' ECPActionCode to $0 Prenote Check [jessiagee] #3935
617
+ * Checkout: Add support for stored_credential [meagabeth] #3934
618
+ * Credorax: Add support for 3ds_reqchallengeind [dsmcclain] #3936
619
+ * Adyen: cancelOrRefund endpoint when passed as option [naashton] #3937
620
+ * Qvalent: Add customer reference number FIX [fredo-] #3939
621
+ * Orbital: Pass line_items in capture [jessiagee] #3941
622
+ * BraintreeBlue: Add support for $0 auth verification [meagabeth] #3944
623
+ * JCB: Add additional BIN ranges [dsmcclain] #3946
624
+ * vPOS: Support new gateway type [therufs] #3906
625
+ * Braintree: Add support for AVS and CVV results in $0 credit card verification transactions [meagabeth] #3951
626
+ * Braintree: Return cvv_code and avs_code in response [meagabeth] #3952
627
+ * vPOS: Stringify values [therufs] #3954
628
+ * Payeezy: Send level2 fields [dsmcclain] #3953
629
+ * Credorax: adjust logic for sending 3ds shipping address fields [dsmcclain] #3959
630
+ * Orbital: Ensure ECP always sends AVSName [jessiagee] #3963
631
+ * Orbital: Add middle name to EWSMiddleName for ECP [jessiagee] #3962
632
+ * Support Canadian Bank Accounts [naashton] #3964
633
+ * Windcave/Payment Express: Add support for AvsAction and EnableAVSData fields [meagabeth] #3967
634
+ * CyberSource: Update XML tag for merchantDefinedData [meagabeth] #3969
635
+ * Elavon: Send ssl_vendor_id field [dsmcclain] #3972
636
+ * Credorax: Add support for `echo` field [meagabeth] #3973
637
+ * Worldpay: support cancelOrRefund via options [therufs] #3975
638
+ * Payeezy: support general credit [cdmackeyfree] #3977
639
+ * Ripley and Hipercard: Add BIN ranges [naashton] #3978
640
+ * Adyen: Default card holder name for credit cards [shasum] #3980
641
+ * PaywayDotCom: make `source_id` a required field [dsmcclain] # 3981
642
+ * Qvalent: remove `pem_password` from required credentials [dsmcclain] #3982
643
+ * Authorize.net: Fix stored credentials [tatsianaclifton] #3971
644
+ * CyberSource: Add support for multiple new fields [dsmcclain] #3984
645
+ * CASHNet: Update gateway adapter [dsmcclain] #3986
646
+ * Elavon: Send `ssl_vendor_id` field via options on gateway initialization [dsmcclain] #3989
647
+
648
+ == Version 1.119.0 (February 9th, 2021)
649
+ * Payment Express: support verify/validate [therufs] #3874
650
+ * GlobalCollect: Truncate address fields [meagabeth] #3878
651
+ * Litle: Truncate address fields [meagabeth] #3877
652
+ * Netbanx: Add-customer-information(name,email,IP)-to-a-transaction [rockyhakjoong] #3754
653
+ * Netbanx: Adjust the avs and cvv return code in shopify [rockyhakjoong] #3833
654
+ * Decidir: Improve error mapping [meagabeth] #3875
655
+ * Worldpay: support `skip_capture` [therufs] #3879
656
+ * Redsys: Add new response code text [britth] #3880
657
+ * Orbital: Update ECP details to use payment source [jessiagee] #3881
658
+ * Alelo: Add additional BIN ranges [meagabeth] #3882
659
+ * HPS: Update Add support for general credit [naashton] #3885
660
+ * Elavon: Fix issue with encoding data sent in the request [naashton] #3865
661
+ * Orbital: Update ECP to use EWS verification [jessiagee] #3886
662
+ * Eway: Add 3ds field when do direct payment [GavinSun9527] #3860
663
+ * Support Creditel cardtype [therufs] #3883
664
+ * Elavon: Remove ampersand char from fields [naashton] #3891
665
+
666
+ == Version 1.118.0 (January 22nd, 2021)
667
+ * Worldpay: Add support for challengeWindowSize [carrigan] #3823
668
+ * Adyen: Update capitalization on subMerchantId field [cdmackeyfree] #3824
669
+ * Maestro and Elo: Update BIN ranges [meagabeth] #3822
670
+ * HPS: Truncate invoice numbers that are too long [curiousepic] #3825
671
+ * Pass network_transaction_id attribute in Response [therufs] #3815
672
+ * Elavon: support standardized stored credentials [therufs] #3816
673
+ * Decidir: update fraud_detection field [cdmackeyfree] #3829
674
+ * Paymentez: Add Olimpica cardtype [meagabeth] #3831
675
+ * SafeCharge: 3DS external MPI data refinements [curiousepic] #3821
676
+ * Credorax: Add support for 3DS Adviser [meagabeth] #3834
677
+ * Adyen: Support subMerchant data [mymir][therufs] #3835
678
+ * Decidir: add device_unique_identifier to card data [cdmackeyfree] #3839
679
+ * BraintreeBlue: add support for account_type field [jimilpatel24] #3840
680
+ * Redsys: Add support for stored_credential [meagabeth] #3844
681
+ * Redsys: add_payment method solution [meagabeth] #3845
682
+ * Stripe Payment Intents: Add support for error_on_requires_action option [tatsianaclifton] #3846
683
+ * Add 3DS 2.0 values to paypal [nebdil] #3285
684
+ * Redsys: Update Mpi Fields [tatsianaclifton] #3855
685
+ * Paypal: Update AuthStatus3ds MPI field [curiousepic] #3857
686
+ * Orbital: Update 3DS support for Mastercard [meagabeth] #3850
687
+ * Payeezy: Support standardized stored credentials [therufs] #3861
688
+ * CyberSource: Update `billing_address` override [meagabeth] #3862
689
+ * Paymentez: Add 3DS MPI field support [carrigan] #3856
690
+ * BlueSnap: Add support `fraud-session-id` field [meagabeth] #3863
691
+ * BlueSnap: Update handling of `transaction-fraud-info` fields [meagabeth] #3866
692
+ * Payeezy: Allow no stored credential transaction id [therufs] #3868
693
+ * Orbital: eCheck processing added [ajawadmirza] #3870
694
+ * FirsdataE4V27: Fixes some apple pay transaction issues [pi3r] #3872
695
+
696
+ == Version 1.117.0 (November 13th)
697
+ * Checkout V2: Pass attempt_n3d along with 3ds enabled [naashton] #3805
698
+ * GlobalCollect: Add support for Third-party 3DS2 data [molbrown] #3801
699
+ * Authorize.net: Pass stored credentials [therufs] #3804
700
+ * Authorize.net: Don't pass isFirstRecurringPayment [therufs] #3805
701
+ * Litle: Add support for general credit transactions [naashton] #3807
702
+ * Redsys: Add 3DS2 Integration Support [esmitperez] #3794
703
+ * Cybersource: Use firstname/lastname from address instead of the payment method [pi3r] #3798
704
+ * Add MPI functionality for SafeCharge gateway [daniel] #3809
705
+ * SafeCharge: Standardize MPI fields [curiousepic] #3809
706
+ * Credorax: Adds AMEX to supported cards and adds 1A error code [LinTrieu] #3792
707
+ * Stripe PI: Pass external 3DS auth data [curiousepic] #3811
708
+ * Credorax: Allow 3DS1 normalized pass-through, ease version matching [britth] #3812
709
+ * Redsys: Redsys: Harden 3DS v1/v2 check for External MPI [esmitperez] #3814
710
+ * Add card types for Stripe, Worldpay, Checkout.com [LinTrieu] #3810
711
+ * ActiveMerchant::Billing::Response: Include `network_transaction_id` attribute [therufs] #3815
712
+
713
+ == Version 1.116.0 (October 28th)
714
+ * Remove Braintree specific version dependency [pi3r] #3800
715
+
716
+ == Version 1.115.0 (October 27th)
717
+ * Checkout v2: $0 Auth on gateway [jessiagee] #3762
718
+ * Adyen: Safely add execute_threeds: false [curiousepic] #3756
719
+ * RuboCop: Fix Layout/SpaceAroundEqualsInParameterDefault [leila-alderman] #3720
720
+ * iATS: Allow email to be passed outside of the billing_address context [naashton] #3750
721
+ * Orbital: Don't pass xid for transactions using network tokens [britth] #3757
722
+ * Forte: Add service_fee_amount field [meagabeth] #3751
723
+ * WorldPay: Add support for idempotency_key[cdmackeyfree] #3759
724
+ * Orbital: Handle line_tot key as a string [naashton] #3760
725
+ * RuboCop: Fix Lint/UnusedMethodArgument [leila-alderman] #3721
726
+ * RuboCop: Fix Naming/MemoizedInstanceVariableName [leila-alderman] #3722
727
+ * RuboCop: Fix Style/BlockComments [leila-alderman] #3729
728
+ * Checkout V2: Move to single-transaction Purchases [curiousepic] #3761
729
+ * RuboCop: Fix Naming/ConstantName [leila-alderman] #3723
730
+ * Orbital: Fix schema errors [britth] #3766
731
+ * Checkout V2: Start testing via amount code [curiousepic] #3767
732
+ * CyberSource: Don't include empty `mdd_` fields [arbianchi] #3758
733
+ * RuboCop: Fix Naming/VariableNumber [leila-alderman] #3725
734
+ * Update BIN ranges for Elo cardtype [cdmackeyfree] #3769
735
+ * Orbital: Resolve CardIndicators issue [meagabeth] #3771
736
+ * Adyen: Add subMerchant fields [naashton] #3772
737
+ * PayPal Express: reduce param requirements [shasum] #3773
738
+ * PayU Latam: Support partial refunds [leila-alderman] #3774
739
+ * RuboCop: Fix Style/Alias [leila-alderman] #3727
740
+ * Stripe PI: Allow `on_behalf_of` to be passed alone #3776
741
+ * RuboCop: Fix Performance/RedundantMatch [leila-alderman] #3765
742
+ * RuboCop: Fix Layout/MultilineMethodCallBraceLayout [leila-alderman] #3763
743
+ * NMI: Add standardized 3DS fields [meagabeth] #3775
744
+ * Mundipagg: Add support for SubMerchant fields [meagabeth] #3779
745
+ * Stripe Payment Intents: Add request_three_d_secure option [molbrown] #3787
746
+ * Decidir: Add support for csmdds fields [naashton] #3786
747
+ * RuboCop: Fix Performance/StringReplacement [leila-alderman] #3782
748
+ * RuboCop: Fix Naming/HeredocDelimiterCase & Naming [leila-alderman] #3781
749
+ * BlueSnap: Add address fields to contact info [naashton] #3777
750
+ * RuboCop: Fix Layout/SpaceInsideHashLiteralBraces [leila-alderman] #3780
751
+ * RuboCop: Fix Style/AndOr [leila-alderman] #3783
752
+ * Checkout V2: Support ability to pass attempt_n3d 3ds field [naashton] #3788
753
+ * Elavon: Upgrade to `processxml.do` [therufs] #3784
754
+ * Checkout V2: Support for attempt_n3d 3DS field [naashton] #3790
755
+ * Elavon: Strip ampersands [therufs] #3795
756
+ * Paybox: Add support for 3DS 1.0 values [jcpaybox] #3335
757
+ * Decidir: Add additional fraud_detection options [cdmackeyfree] #3812
758
+
759
+ == Version 1.114.0
760
+ * BlueSnap: Add address1,address2,phone,shipping_* support #3749
761
+ * BlueSnap: Protect against `nil` metadata [carrigan] #3752
762
+ * Cybersource: [CyberSource] Ensure the default address doesn't override `ActionController::Parameters` [pi3r] #3755
763
+
764
+ == Version 1.113.0
765
+ * Orbital: Add cardIndicators field [meagabeth] #3734
766
+ * Openpay: Add Colombia to supported countries [molbrown] #3740
767
+ * Mercado Pago: Update Device Id Header field [cdmackeyfree] #3741
768
+ * RuboCop: Fix Style/TrailingCommaInHashLiteral [leila-alderman] #3718
769
+ * RuboCop: Fix Naming/PredicateName [leila-alderman] #3724
770
+ * RuboCop: Fix Style/Attr [leila-alderman] #3728
771
+ * Payflow: Use application_id to set buttonsource [britth] #3737
772
+ * HPS: Enable refunds using capture transaction [britth] #3738
773
+ * Quickbooks: Omit empty strings in address [leila-alderman] #3743
774
+ * BlueSnap: Add transactionMetaData support #3745
775
+ * Orbital: Fix typo in PC3DtlLineTot field [naashton] #3736
776
+ * Credorax: Send first and last name parameters for CFT transactions [britth] #3748
777
+ * Orbital: Update CardIndicators field to fix bug [meagabeth] #3746
778
+ * CyberSource: Always send default address [leila-alderman] #3747
779
+ * Netbanx: Reject partial refund on pending status [rockyhakjoong] #3735
780
+
781
+ == Version 1.112.0
782
+ * Cybersource: add `maestro` and `diners_club` eci brand mapping [bbraschi] #3708
783
+ * Cybersource: Ensure Partner Solution Id placement conforms to schema [britth] #3715
784
+ * Adyen: Adyen: Pass `subMerchantId` as `additionalData` [naashton] #3714
785
+ * Litle: Omit checkNum when nil [leila-alderman] #3719
786
+ * PayU Latam: Improve error response [esmitperez] #3717
787
+ * Vantiv: Vantiv Express - CardPresentCode, PaymentType, SubmissionType, DuplicateCheckDisableFlag [esmitperez] #3730,#3731
788
+ * Cybersource: Ensure issueradditionaldata comes before partnerSolutionId [britth] #3733
789
+
790
+ == Version 1.111.0
791
+ * Fat Zebra: standardized 3DS fields and card on file extra data for Visa scheme rules [montdidier] #3409
792
+ * Realex: Change 3DSecure v1 message_version to a valid format [shuhala] #3702
793
+ * Ingenico/ GlobalCollect: Add field for installments [cdmackeyfree] #3707
794
+ * Cybersource: do not send 3DS fields if 'cavv` is missing and `commerceIndicator` is inferred [bbraschi] #3712
795
+
796
+ == Version 1.110.0
797
+ * FirstData e4 v27+: Strip linebreaks from address [curiousepic] #3693
798
+ * Adyen: Change shopper_email to email and shopper_ip to ip [rikterbeek] #3675
799
+ * FirstData e4 v27+ Fix strip_line_breaks method [carrigan] #3695
800
+ * Cybersource: Set authorization on the response even when in fraud review [pi3r] #3701
801
+ * Cybersource: Add fields to override stored creds [leila-alderman] #3689
802
+ * Cybersource: Conditionally find stored credentials [therufs] #3696 #3697
803
+ * Cybersource: Update logic to send cavv as xid for 3DS2 [douglas] #3699
804
+ * Credorax: Default 3ds_browsercolordepth to 32 when passed as 30 [britth] #3700
805
+
806
+ == Version 1.109.0
807
+ * Remove reference to `Billing::Integrations` [pi3r] #3692
808
+ * DLocal: Handle nil address1 [molbrown] #3661
809
+ * Braintree: Add travel and lodging fields [leila-alderman] #3668
810
+ * Stripe: strict_encode64 api key [britth] #3672
811
+ * Stripe PI: Implement verify action [leila-alderman] #3662
812
+ * Stripe, Stripe Payment Intents: Update supported countries [britth] #3684
813
+ * Forte: Use underscore for unused arguments in test [wsmoak] #3605
814
+ * Add Alia card type [therufs] #3673
815
+ * Element: Fix unit tests [leila-alderman] #3676
816
+ * PayU Latam: Fix store method [ccarruitero] #2590
817
+ * Adyen: Allow for executeThreeD to be passed as false [naashton] #3681
818
+ * WorldPay: Fix handling of `state` field for 3DS transactions [chinhle23] #3687
819
+ * Alia: Skip Luhn validation [therufs] #3673
820
+ * Diners Club: support 16 digit card numbers [therufs] #3682
821
+ * Cybersource: Update supported countries [britth] #3683
822
+ * Cybersource: pass reconciliation_id [therufs] #3688
823
+ * RuboCop: Fix Style/SpecialGlobalVars [leila-alderman] #3669
824
+ * RuboCop: Fix Style/StringLiteralsInInterpolation [leila-alderman] #3670
825
+ * RuboCop: Fix Layout/HeredocIndentation [leila-alderman] #3685
826
+ * RuboCop: Fix Gemspec/OrderedDependencies [leila-alderman] #3679
827
+ * RuboCop: Fix Style/TrailingUnderscoreVariable [leila-alderman] #3663
828
+ * RuboCop: Fix Style/WordArray [leila-alderman] #3664
829
+ * RuboCop: Fix Style/SymbolArray [leila-alderman] #3665
830
+ * Mercado-Pago: Notification url GSF [cdmackeyfree] #3678
831
+ * Credorax: Update logic for setting 3ds_homephonecountry [britth] #3691
832
+
833
+ == Version 1.108.0 (Jun 9, 2020)
834
+ * Cybersource: Send cavv as xid is xid is missing [pi3r] #3658
835
+ * Forte: Change default sec_code value to PPD [molbrown] #3653
836
+ * Elavon: Add merchant initiated unscheduled field [leila-alderman] #3647
837
+ * Decidir: Add aggregate data fields [leila-alderman] #3648
838
+ * Vantiv: Vantiv(Element): add option to send terminal id in transactions [cdmackeyfree] #3654
839
+ * Update supported Ruby and Rails versions [leila-alderman] #3656
840
+ * CI: Drop unused sudo: false Travis directive [olleolleolle] #3616
841
+ * PayU Latam: Prevent blank country in billing_address [britth] #3657
842
+ * DLocal: Fix address field names [molbrown] #3651
843
+
844
+ == Version 1.107.4 (Jun 2, 2020)
845
+ * Elavon: Implement true verify action [leila-alderman] #3610
846
+ * Vantiv Express: Implement true verify [leila-alderman] #3617
847
+ * Litle: Pass expiration data for basis payment method [therufs] #3606
848
+ * Stripe Payment Intents: Error handling and backwards compatibility within refund [britth] #3627
849
+ * HPS: Prevent errors when account_type or account_holder_type are nil [britth] #3628
850
+ * D Local: Handle invalid country code errors [curiousepic] #3626
851
+ * Stripe Payment Intents: Utilize execute_threed flag to determine success [britth] #3625
852
+ * Elavon: Add Level 3 fields [leila-alderman] #3632
853
+ * CyberSource: Stored Credential fixes [curiousepic] #3624
854
+ * CyberSource: Fix invalid and missing field tests [curiousepic] #3634
855
+ * CyberSource: Pass stored credentials with purchase [curiousepic] #3636
856
+ * Mercado Pago: Add payment_method_option_id field [schwarzgeist] #3635
857
+ * Stripe: Provide error when attempting an authorize with ACH [britth] #3633
858
+ * EBANX: Send original order id as merchant_payment_code metadata [miguelxpn] #3637
859
+ * Element: Add card_present_code field [schwarzgeist] #3623
860
+ * Orbital: Add support for Level 3 fields [leila-alderman] #3639
861
+ * Firstdata: Strip newline characters from address [bittercoder] #3643
862
+ * Forte: add sec_code attribute for echeck [wsmoak] #3640
863
+
864
+ == Version 1.107.3 (May 8, 2020)
865
+ * Realex: Ignore IPv6 unsupported addresses [elfassy] #3622
866
+ * Cybersource: Set partnerSolutionID after the business rules, fixes 500 error [pi3r] #3621
867
+
868
+ == Version 1.107.2 (May 7, 2020)
869
+ * Cybersource: Send a specific card brand commerceIndicator for 3DS [pi3r] #3620
870
+ * Cybersource: Send application_id as partnerSolutionID [pi3r] #3620
871
+ * Iridium: Localize zero-decimal currencies [chinhle23] #3587
872
+ * iVeri: Fix `verify` action [chinhle23] #3588
873
+ * Ixopay: Properly support three-decimal currencies [chinhle23] #3589
874
+ * Kushki: support `auth` and `capture` [therufs] #3591
875
+ * PaymentExpress: Update references to Windcave to reflect rebranding [britth] #3595
876
+ * Decidir: Improve handling of error responses from the gateway [naashton] #3594
877
+ * CyberSource: Added support for MerchantInformation CyberSource-specific fields [apfranzen] #3592
878
+ * ePay: Send unique order ids for remote tests [curiousepic] #3593
879
+ * Checkout V2: Send more informative error messages for 4xx errors [britth] #3601
880
+ * Elavon: Add ssl_dynamic_dba field [apfranzen] #3600
881
+ * iATS Payments: Update gateway to v3 and add support for additional GSFs [naashton] #3599
882
+ * Remove deprecated `rubyforge_project` attribute and tidy up unit test output [fatcatt316] #3598
883
+ * Elavon: Cleanup inadvertant field removal (avs_address) in #3600 [apfranzen] #3602
884
+ * EBANX: Fix transaction amount for verify transaction [miguelxpn] #3603
885
+ * iATS Payments: Update gateway to accept `email`, `phone`, and `country` fields [naashton] #3607
886
+ * Braintree: Fix response for failed refunds when falling back to voids [jasonwebster] #3608
887
+ * Worldpay: Fix response for failed refunds when falling back to voids [jasonwebster] #3609
888
+ * iATS Payments: Add support for Customer Code payment method [molbrown] #3611
889
+ * HPS: Add Google Pay support [MSmedal] #3597
890
+ * Adyen: Parse appropriate message for 3DS2 authorization calls [britth] #3619
891
+ * CyberSource: Add error details response fields [schwarzgeist] #3629
892
+
893
+ == Version 1.107.1 (Apr 1, 2020)
894
+ * Add `allowed_push_host` to gemspec [mdeloupy]
895
+
896
+ == Version 1.107.0 (Apr 1, 2020)
897
+ * Stripe Payment Intents: Early return failed `payment_methods` response [chinhle23] #3570
898
+ * Borgun: Support `passengerItineraryData` [therufs] #3572
899
+ * Ingenico GlobalCollect: support optional `requires_approval` field [fatcatt316] #3571
900
+ * CenPOS: Update failing remote tests [britth] #3575
901
+ * Realex: Update remote tests [britth] #3576
902
+ * FirstData e4 v27: Properly tag stored credential initiation field in request [britth] #3578
903
+ * Orbital: Fix stored credentials [chinhle23] #3579
904
+ * Acapture(Opp): Update gateway credentials [molbrown] #3574
905
+ * Ingenico GlobalCollect: support `requires_approval` field [fatcatt316] #3577
906
+ * CyberSource: Fix `void` for `purchase` transactions [chinhle23] #3581
907
+ * Checkout V2: Begin to add support for using network tokens for transactions. [arbianchi] #3580
908
+ * Opp: Update remote test fixtures [ccarruitero] #3582
909
+ * Optimal Payment: Add support for store [britth] #3585
910
+ * SecurePay Australia : Update test URL (#3586)
911
+
912
+ == Version 1.106.0 (Mar 10, 2020)
913
+ * PayJunctionV2: Send billing address in `auth` and `purchase` transactions [naashton] #3538
914
+ * Adyen: Fix some remote tests [curiousepic] #3541
915
+ * Redsys: Properly escape cardholder name and description fields in 3DS requests [britth] #3537
916
+ * RuboCop: Fix Style/HashSyntax [leila-alderman] #3540
917
+ * Paypal: Fix OrderTotal elements in `add_payment_details` [chinhle23] #3544
918
+ * Stripe Payment Intents: Add tests for "Idempotency-Key" header [fatcatt316] #3542
919
+ * Paypal: Fix RuboCop Style/HashSyntax violations [chinhle23] #3547
920
+ * Rubocop corrections for space around operators [cdmackeyfree] #3543
921
+ * Fat Zebra: Add `is_billing` in post for `store` call [chinhle23] #3551
922
+ * SafeCharge: Adds four supported countries [carrigan] #3550
923
+ * Ixopay: Support stored credentials [leila-alderman] #3549
924
+ * BlueSnap: Adds localized currency support [carrigan] #3552
925
+ * CheckoutV2: Use status as message for 3DS txns in progress [britth] #3545
926
+ * Stripe Payment Intents: Prevent idempotency key errors for compound actions [britth] #3554
927
+ * Adyen: Add tests for voiding with idempotency keys [jknipp] #3553
928
+ * Fat Zebra: Fix `store` call [chinhle23] #3556
929
+ * Update README to include Adyen [haolime] #3452
930
+ * PayJunctionv2: Fix billing address fields [leila-alderman] #3557
931
+ * Adyen: Fail unexpected 3DS responses [curiousepic] #3546
932
+ * Merchant Warrior: Add support for setting soft descriptors [daBayrus] #3558
933
+ * Adyen: Fix stored credentials [chinhle23] #3560
934
+ * Update BIN ranges for Alelo and Maestro cards [leila-alderman] #3559
935
+ * EBANX: Fix declines if order id is bigger than 40 chars [miguelxpn] #3563
936
+ * Moneris US: Remove gateway [chinhle23] #3561
937
+ * Decidir: Decidir: Improving the response message when encountering errors [naashton] #3564
938
+ * PayBox: Added USERTrust RSA Certification Authority and Sectigo RSA Organization Validation Secure Server CA [baldowl] #3567
939
+
940
+ == Version 1.105.0 (Feb 20, 2020)
941
+ * Credorax: Fix `3ds_transtype` setting in post [chinhle23] #3531
942
+ * Bambora Apac: Send void amount in options [leila-alderman] #3532
943
+ * RuboCop: Fix Layout/IndentHash [leila-alderman] #3529
944
+ * Stripe: Add connected account support [Carrigan] #3535
945
+ * Redsys: Update scrub method to account for 3DS error responses [britth] #3534
946
+ * Authorize.Net: Pass `account_type` to `check` payment types [chinhle23] #3530
947
+ * Merchant Warrior: Send void amount in options [leila-alderman] #3525
948
+ * Stripe: Add support for `statement_descriptor_suffix` field [Carrigan] #3528
949
+ * Decidir: Add support for fraud_detection, site_id, and establishment_name [fatcatt316] #3527
950
+ * HPS: support eCheck [therufs] #3500
951
+ * EBANX: Add metadata information in post [miguelxpn] #3522
952
+ * Worldpay: Add `riskData` GSF [fatcatt316] #3514
953
+ * EBANX: Fix `scrub` [chinhle23] #3521
954
+ * Worldpay: Remove unnecessary .tag! methods [leila-alderman] #3519
955
+ * BPoint: Remove amount from void requests [leila-alderman] #3518
956
+ * Authorize.net: Trim supported countries to AU, CA, US [fatcatt316] #3516
957
+ * Credorax: Allow optional 3DS 2 fields [jeremywrowe] #3515
958
+ * Stripe: Remove outdated 'customer options' deprecation [alexdunae] #3401
959
+ * Added support for fraud review in CyberSource gateway [greg-burgoon] #3536
960
+
961
+ == Version 1.104.0 (Jan 29, 2020)
962
+ * Adyen: add `recurring_contract_type` GSF [therufs] #3460
963
+ * Credorax: Only pass `3ds_version` parameter when required [britth] #3458
964
+ * EBANX: Include Peru in supported countries [Ruanito] #3443
965
+ * Bluesnap: include fraud data in response message [therufs] #3459
966
+ * Ingenico GlobalCollect: support `airline_data` and related GSFs [therufs] #3461
967
+ * Add UnionPay card type [leila-alderman] #3464
968
+ * Braintree: Fix add_credit_card_to_customer in Store [molbrown] #3466
969
+ * EBANX: Default to not send amount on capture [chinhle23] #3463
970
+ * Latitude19: Convert money format to dollars [molbrown] #3468
971
+ * Adyen: Fix response success for unstore [kheang] #3470
972
+ * CyberSource: add several GSFs [therufs] #3465
973
+ * Adyen: add `recurring_contract_type` GSF to auth [therufs] #3471
974
+ * Stripe Payment Intents: Use localized_amount on capture [molbrown] #3475
975
+ * dLocal: Add support for installments [kdelemme] #3456
976
+ * Merchant Warrior: Add void operation [leila-alderman] #3474
977
+ * Decidir: Update payment method IDs [leila-alderman] #3476
978
+ * Adyen: Add delivery address [leila-alderman] #3477
979
+ * Authorize.net: Correctly parse direct_response field with quotation marks [britth] #3479
980
+ * Decidir: Add debit card payment method IDs [leila-alderman] #3480
981
+ * CyberSource: Add issuer data+MDD to credit & void [leila-alderman] #3481
982
+ * Credorax: add `authorization_type` and `multiple_capture_count` GSFs [therufs] #3478
983
+ * CardStream: use localized_amount to correctly support zero-decimal currencies [britth] #3473
984
+ * EBANX: Add additional data in post [Ruanito] #3482
985
+ * Credorax: Omit phone when nil [leila-alderman] #3490
986
+ * TransFirst TrExp: Remove hyphens from zip [leila-alderman] #3483
987
+ * Mundipagg: Return acquirer code as the error code [leila-alderman] #3492
988
+ * Braintree Blue: Remove customer hash when using a payment_method_nonce #3495
989
+ * Credorax: Update non-standard currencies list [chinhle23] #3499
990
+ * Redsys: Update production URL [britth] #3505
991
+ * Moneris: include AVS and CoF fields when storing vault records [alexdunae] #3446
992
+ * Moneris: Add support for temporary vault storage [alexdunae] #3446
993
+ * Clearhaus: Update currencies without fractions list [chinhle23] #3506
994
+ * Merchant Warrior: Add recurringFlag to purchase & authorize [carrigan] #3504
995
+ * CardConnect: Remove domain port validation [leila-alderman] #3494
996
+ * Paymentez: Correct refund and void message parsing [carrigan] #3509
997
+ * Mercado Pago: Add taxes and net_amount gateway specific fields [carrigan] #3512
998
+ * Moneris: use dedicated card_verification methods [alexdunae] #3428
999
+ * Authorize.net: Trim down supported countries [fatcatt316] #3511
1000
+ * Stripe: Add support for `statement_descriptor_suffix` field [carrigan] #3528
1001
+ * Stripe: Add connected account support [carrigan] #3535
1002
+
1003
+ == Version 1.103.0 (Dec 2, 2019)
1004
+ * Quickbooks: Mark transactions that returned `AuthorizationFailed` as failures [britth] #3447
1005
+ * Credorax: Add referral CFT transactions [leila-alderman] #3432
1006
+ * DLocal: Updates for version 2.1 [molbrown] #3449
1007
+ * CyberSource: Send MDD on capture [leila-alderman] #3453
1008
+ * Ixopay: Include extra_data gateway specific field [therufs] #3450
1009
+ * CyberSource: Fix XML error on capture [leila-alderman] #3454
1010
+ * Adyen: Add gateway specific field for splits [leila-alderman] #3448
1011
+ * Adyen: Add `unstore` and `storeToken` actions with '/Recurring' endpoint [deedeelavinder][davidsantoso] #3438
1012
+ * Barclaycard Smartpay: Add functionality to set 3DS exemptions via API [britth] #3457
1013
+ * Use null@cybersource.com when option[:email] is an empty string [pi3r] #3462
1014
+
1015
+ == Version 1.102.0 (Nov 14, 2019)
1016
+ * Quickbooks: Make token refresh optional with allow_refresh flag [britth] #3419
1017
+ * Paymentez: Update supported countries [curiousepic] #3425
1018
+ * Ixopay: Add new gateway [jasonxp] #3426
1019
+ * Ixopay: Add support for currency option to refund method #3433
1020
+ * Ixopay: Remove default callback URL #3436
1021
+ * Ixopay: Refactor capture #3431
1022
+ * Update supported countries list. Add currencies without fractions / with 3 decimal places #3424
1023
+ * RuboCop: Fix Layout/EndAlignment [leila-alderman] #3427
1024
+ * RuboCop: Fix Layout/ExtraSpacing [leila-alderman] #3429
1025
+ * RuboCop: Fix Layout/MultilineOperationIndentation [leila-alderman] #3439
1026
+ * Worldpay: Update logic to set cardholderName for 3DS transactions [britth] #3444
1027
+ * Adopt new enrolled key for 3DS1 transactions. enrolled contains the 3… #3442
1028
+
1029
+ == Version 1.101.0 (Nov 4, 2019)
1030
+ * Add UYI to list of currencies without fractions [curiousepic] #3416
1031
+ * Quickbooks: Add OAuth 2.0 support and void action [britth] #3397
1032
+ * Credorax: Stop always sending r1 parameter [molbrown] #3415
1033
+ * Rubocop: Layout/RescueEnsureAlignment fix [leila-alderman] #3411
1034
+ * CyberSource: Send issuer data on capture [leila-alderman] #3404
1035
+ * Rubocop: Style/IfUnlessModifier [nfarve] #3390
1036
+ * Redsys: Updates to parse method for non-3DS responses [britth] #3391
1037
+ * Netbanx: Add 3DS2 Support [Jujhar] #3394
1038
+
1039
+ == Version 1.100.0 (Oct 16, 2019)
1040
+ * Stripe: Restore non-auto capture behaviour for card present transactions [PatrickFang] #3258
1041
+ * Revert "Revert "Worldpay: Switch to Nokogiri"" [curiousepic] #3373
1042
+ * Adyen: Fix `authorise3d` message for refusals [jeremywrowe] #3374
1043
+ * Redsys: Set authorization field for 3DS transactions [britth] #3377
1044
+ * Adyen: Add capture_delay_hours GSF [therufs] #3376
1045
+ * Credorax: Add support for stored credentials [chinhle23] #3375
1046
+ * BlueSnap: Add remote tests for Cabal and Naranja [leila-alderman] #3382
1047
+ * WorldPay: Add Cabal and Naranja remote tests [leila-alderman] #3378
1048
+ * Rubocop: Indentions [nfarve] #3383
1049
+ * Worldpay: Handle parse errors gracefully [curiousepic] #3380
1050
+ * BluePay: Add ability to pass doc_type in refunds and credits [britth] #3386
1051
+ * Stripe Payment Intents: Fix fallback for Store [waaux] #3343
1052
+ * Update Securionpay supported countries [hossamhossny] #2472
1053
+ * Visanet Peru: Add amount argument to Capture [curiousepic] #3389
1054
+ * Rubocop: Layout/MultilineHashBraceLayout [nfarve] #3385
1055
+ * CardConnect: Always include additional_data in purchase [therufs] #3387
1056
+ * CardConnect: Add user_fields GSF [therufs] #3388
1057
+ * Moneris: Add support for stored credentials [chinhle23] #3384
1058
+
1059
+ == Version 1.99.0 (Sep 26, 2019)
1060
+ * Adyen: Add functionality to set 3DS exemptions via API [britth] #3331
1061
+ * Adyen: Send "NA" instead of "N/A" [leila-alderman] #3339
1062
+ * Stripe Payment Intents: Set application fee or transfer amount on capture [britth] #3340
1063
+ * TNS: Support Europe endpoint [curiousepic] #3346
1064
+ * Redsys: Add 3DS support to gateway [britth] #3336
1065
+ * Worldpay: Allow multiple refunds per authorization [jknipp] #3349
1066
+ * MercadoPago: Add remote and unit tests for Naranja card [hdeters] #3345
1067
+ * CyberSource: Pass commerce indicator if present [curiousepic] #3350
1068
+ * Worldpay: Add 3DS2 Support [nfarve] #3344
1069
+ * Credorax: Add 3DS 2.0 [nfarve] #3342
1070
+ * TNS: Update verison and support pay mode [curiousepic] #3355
1071
+ * Stripe: Add supported countries [therufs] #3358
1072
+ * Stripe Payment Intents: Add supported countries [therufs] #3359
1073
+ * Mundipagg: Append error messages to the message response field [jasonxp] #3353
1074
+ * Redsys: Add ability to pass sca_exemption and moto fields to request exemptions [britth] #3354
1075
+ * Credorax: Add A Mandatory 3DS field [nfarve] #3360
1076
+ * CyberSource: Support 3DS2 pass-through fields [curiousepic] #3363
1077
+ * Credorax: Add support for MOTO flagging [britth] #3366
1078
+ * Credorax: Enable selecting a processor [leila-alderman] #3302
1079
+ * Adyen: Add Cabal card [leila-alderman] #3361
1080
+ * Decidir: Add remote tests for Cabal and Naranja [leila-alderman] #3337
1081
+ * Payflow: Pass correct field in Status for 3DS in Payflow [nebdil] #3362
1082
+ * CyberSource: Use 3DS hash for enrolled field [curiousepic] #3371
1083
+
1084
+ == Version 1.98.0 (Sep 9, 2019)
1085
+ * Stripe Payment Intents: Add new gateway [britth] #3290
1086
+ * Stripe: Send cardholder name and address when creating sources for 3DS 1.0 [jknipp] #3300
1087
+ * Checkout_v2: Support for native 3DS2.0 [nfarve] #3303
1088
+ * Adds new Maestro BINs [tanyajajodia] #3305
1089
+ * eWAY Rapid: If no address is available, default to the name associated with the payment method when setting the Customer fields [jasonxp] #3306
1090
+ * eWAY Rapid: Fix a bug in which the email was not set in Customer fields if no address was provided [jasonxp] #3306
1091
+ * eWAY Rapid: Support both `phone` and `phone_number` fields under the `shipping_address` option [jasonxp] #3306
1092
+ * PayU Latam: Add support for the `merchant_buyer_id` field in the `options` and `buyer` hashes [jasonxp] #3308
1093
+ * Update Braintree Gem [curiousepic] #3311
1094
+ * Fat Zebra: Send metadata for purchase and authorize [montdidier] #3101
1095
+ * TrustCommerce: Add support for custom fields [jasonxp] #3313
1096
+ * Stripe Payment Intents: Support option fields `transfer_destination` and `transfer_amount` and remove `transfer_data` hash [britth] #3317
1097
+ * Barclaycard Smartpay: Add support for `shopperStatement` gateway-specific field [jasonxp] #3319
1098
+ * Stripe Payment Intents: Add support for billing_details on payment methods [britth] #3320
1099
+ * BlueSnap: add standardized 3DS 2 auth fields [bayprogrammer] #3318
1100
+ * Barclaycard Smartpay: Add app based 3DS requests for auth and purchase [britth] #3327
1101
+ * Stripe Payment Intents, Checkout V2: Add support for `MOTO` flagging [britth] #3323
1102
+ * Braintree Blue: Adding 3DS2 passthru support [molbrown] #3328
1103
+ * Global Collect: Add Cabal card [leila-alderman] #3310
1104
+ * WorldPay: Add Cabal card [leila-alderman] #3316
1105
+ * Decidir: Add Cabal card [leila-alderman] #3322
1106
+ * PayU Latam: Add Cabal card [leila-alderman] #3324
1107
+ * dLocal: Add Cabal card [leila-alderman] #3325
1108
+ * BlueSnap: Add Cabal card [leila-alderman] #3326
1109
+ * Adyen: added 3DS support through external [rikterbeek] #3294
1110
+ * Worldpay: Add support for MOTO flagging [britth] #3329
1111
+ * ePay: 3DS support [AllaWLie] #3321
1112
+ * Checkout.com: added options[:metadata][:manual_entry] support for MOTO transactions [filipebarcos] #3330
1113
+
1114
+ == Version 1.97.0 (Aug 15, 2019)
1115
+ * CyberSource: Add issuer `additionalData` gateway-specific field [jasonxp] #3296
1116
+ * PayU Latam: Add Naranja card type [hdeters] #3299
1117
+ * Adyen: Add app based 3DS requests for auth and purchase [jeremywrowe] #3298
1118
+ * MercadoPago: Add Cabal card type [leila-alderman] #3295
1119
+ * MONEI: Add external MPI 3DS 1 support [jimmyn] #3292
1120
+ * Bambora formerly Beanstream: Pass card owner when storing tokenized cards [alexdunae] #3006
1121
+ * Realex: Prevent error calculating `refund_hash` or `credit_hash` when the secret is nil [jasonxp] #3291
1122
+ * Orbital: Add external MPI support for 3DS1 [pi3r] #3261
1123
+ * Paymill: Add currency and amount to store requests [jasonxp] #3289
1124
+ * Realex: Re-implement credit as general credit [leila-alderman] #3280
1125
+ * Braintree Blue: Support for stored credentials [hdeters] #3286
1126
+ * CardConnect: Move domain from gateway specific to gateway field [hdeters] #3283
1127
+
1128
+ == Version 1.96.0 (Jul 26, 2019)
1129
+ * Bluesnap: Omit state codes for unsupported countries [therufs] #3229
1130
+ * Adyen: Pass updateShopperStatement, industryUsage [curiousepic] #3233
1131
+ * TransFirst Transaction Express: Fix blank address2 values [britth] #3231
1132
+ * WorldPay: Add support for store method [bayprogrammer] #3232
1133
+ * Adyen: Support for additional AVS code mapping [jknipp] #3236
1134
+ * Adyen: Update message for AVS result code 'A' to generically cover postal code mismatches [jknipp] #3237
1135
+ * CyberSource: Update CyberSource SOAP documentation link [vince-smith] #3204
1136
+ * USAePay: Handle additional error codes and add default error code [estelendur] #3167
1137
+ * Braintree: Add `skip_avs` and `skip_cvv` gateway specific fields [leila-alderman] #3241
1138
+ * NAB Transact: Update periodic test url [mengqing] #3177
1139
+ * NMI: Add level 3 gateway-specific fields tax, shipping, and ponumber [jasonxp] #3239
1140
+ * Checkout V2: Update stored card flag [curiousepic] #3247
1141
+ * NMI: Add support for stored credentials [bayprogrammer] #3243
1142
+ * Spreedly: Consolidate API requests and support bank accounts [lancecarlson] #3105
1143
+ * BPoint: Hook up merchant_reference and CRN fields [curiousepic] #3249
1144
+ * Checkout V2: Stop sending phone number to Checkout V2 integration [filipebarcos] #3248
1145
+ * Barclaycard Smartpay: Add support for 3DS2 [britth] #3251
1146
+ * Adyen: Add support for non-fractional currencies [molbrown] #3257
1147
+ * Decidir: Add new gateway [jknipp] #3254
1148
+ * Checkout V2: Reapply Update stored card flag [curiousepic]
1149
+ * CyberSource: Update supported countries [molbrown] #3260
1150
+ * Credorax: Update supported countries [molbrown] #3260
1151
+ * Kushki: Update supported countries [molbrown] #3260
1152
+ * Paypal: Update supported countries [molbrown] #3260
1153
+ * BlueSnap: Send amount in capture requests [jknipp] #3262
1154
+ * Mundipagg: Add Alelo card support [jasonxp] #3255
1155
+ * Adyen: Remove temporary amount modification for non-fractional currencies [molbrown] #3263
1156
+ * Adyen: Set blank state to N/A [therufs] #3252
1157
+ * MiGS: Add tx_source gateway specific field [leila-alderman] #3264
1158
+ * NMI: Correct password scrubber to scrub symbols [hdeters] #3267
1159
+ * Global Collect: Only add name if present [curiousepic] #3268
1160
+ * HPS: Add Apple Pay raw cryptogram support [slogsdon] #3209
1161
+ * CardConnect: Fix parsing of level 3 fields [hdeters] #3273
1162
+ * TrustCommerce: Support void after purchase [jknipp] #3265
1163
+ * Payflow: Support arbitrary level 2 + level 3 fields [therufs] #3272
1164
+ * BlueSnap: Default to not send amount on capture [molbrown] #3270
1165
+ * Spreedly: extra fields, remove extraneous check [montdidier] #3102 #3281
1166
+ * Cecabank: Update encryption to SHA2 [leila-alderman] #3278
1167
+ * Checkout V2: Fix 3DS 1&2 integration [nicolas-maalouf-cko] #3240
1168
+ * Credorax: add 3DS2 MPI auth data support [bayprogrammer] #3274
1169
+ * Add Kosovo to the list of countries [AnotherJoSmith] #3226
1170
+ * Realex: Adds 3DS 1&2 support through external MPI [filipebarcos] #3284
1171
+ * PayPal: Adds 3DS 1 support through external MPI [nebdil] #3279
1172
+
1173
+ == Version 1.95.0 (May 23, 2019)
1174
+ * Adyen: Constantize version to fix subdomains [curiousepic] #3228
1175
+ * Qvalent: Adds support for standard stored credential framework [molbrown] #3227
1176
+ * Cybersource: Send tokenization data when card is :master [pi3r] #3230
1177
+
1178
+ == Version 1.94.0 (May 21, 2019)
1179
+ * Mundipagg: Fix number lengths for both VR and Sodexo [dtykocki] #3195
1180
+ * Stripe: Support show and list webhook endpoints [jknipp] #3196
1181
+ * CardConnect: Add frontendid parameter to requests [gcatlin] #3198
1182
+ * Adyen: Correct formatting of Billing Address [nfarve] #3200
1183
+ * Stripe: Stripe: Show payment source [jknipp] #3202
1184
+ * Checkout V2: Checkout V2: Correct success criteria [curiousepic] #3205
1185
+ * Adyen: Add normalized hash of 3DS 2.0 data fields from web browsers [davidsantoso] #3207
1186
+ * Stripe: Do not attempt application fee refund if refund was not successful [jasonwebster] #3206
1187
+ * Elavon: Send transaction_currency if currency is provided [gcatlin] #3201
1188
+ * Elavon: Multi-currency support [jknipp] #3210
1189
+ * Adyen: Support preAuths and Synchronous Adjusts [curiousepic] #3212
1190
+ * WorldPay: Support Unknown Card Type [tanyajajodia] #3213
1191
+ * Mundipagg: Make gateway_affiliation_id an option [curiousepic] #3219
1192
+ * CyberSource: Adds Elo Card Type [tanyajajodia] #3220
1193
+ * CyberSource: Support standalone credit for cards [curiousepic] #3225
1194
+
1195
+ == Version 1.93.0 (April 18, 2019)
1196
+ * Stripe: Do not consider a refund unsuccessful if only refunding the fee failed [jasonwebster] #3188
1197
+ * Stripe: Fix webhook creation for connected account [jknipp] #3193
1198
+ * Adyen: Upgrade to v40 API version [davidsantoso] #3192
1199
+
1200
+ == Version 1.92.0 (April 8, 2019)
1201
+ * BluePay: Send customer IP address when provided [jknipp] #3149
1202
+ * PaymentExpress: Use ip field for client_info field [jknipp] #3150
1203
+ * Bambora Asia-Pacific: Adds Store [molbrown] #3147
1204
+ * Orbital: Pass normalized stored credential fields [curiousepic] #3148
1205
+ * Adds Elo card type in general and specifically to Adyen [deedeelavinder] #3153
1206
+ * Mercado Pago: Adds Elo card type [deedeelavinder] #3156
1207
+ * Litle: Add support for stored credentials [bayprogrammer] #3155
1208
+ * Adyen: Correctly process risk_data option [bayprogrammer] #3161
1209
+ * Paymentez: Adds Elo card type [deedeelavinder] #3162
1210
+ * WorldPay: Adds Elo card type [deedeelavinder] #3163
1211
+ * Adyen: Idempotency for non-purchase requests [molbrown] #3164
1212
+ * FirstData e4 v27: Support v28 url and stored creds [curiousepic] #3165
1213
+ * WorldPay: Fix element order for 3DS + stored cred [bayprogrammer] #3172
1214
+ * Braintree: Add risk data to returned response [jknipp] #3169
1215
+ * Adyen: Support idempotency on purchase [molbrown] #3168
1216
+ * Adyen: Pass phone, statement, device_fingerprint [curiousepic] #3178
1217
+ * Adyen: Fix adding phone from billing address [curiousepic] #3179
1218
+ * Fix partial or missing address exceptions [molbrown] #3180
1219
+ * Adyen: Update to support normalized stored credential fields [molbrown] #3182
1220
+ * VisaNet Peru: Always include DSC_COD_ACCION [bayprogrammer] #3174
1221
+ * Adyen: Support adjust action [curiousepic] #3190
1222
+ * CyberSource: Add support for stored credentials [therufs] #3185
1223
+
1224
+ == Version 1.91.0 (February 22, 2019)
1225
+ * WorldPay: Pull CVC and AVS Result from Response [nfarve] #3106
1226
+ * Worldpay: Add AVS and CVC Mapping [nfarve] #3107
1227
+ * Paymentez: Fixes extra_params field [molbrown] #3108
1228
+ * Improved support for account_type using Check class's account_type instead [lancecarlson] #3097
1229
+ * USA Epay: Allow quantity to be passed and check custom fields [lancecarlson] #3090
1230
+ * Fix usaepay transaction invoice [lancecarlson] #3093
1231
+ * Adyen: Handles blank state address field [molbrown] #3113
1232
+ * Braintree: Send all country fields [curiousepic] #3112
1233
+ * Braintree: Account for empty string countries [curiousepic] #3115
1234
+ * Orbital: Support for stored credentials framework [jknipp] #3117
1235
+ * Openpay: Fix for marking successful transaction(s) as failed [jknipp] #3121
1236
+ * Braintree: Adds support for transaction_source [molbrown] #3120
1237
+ * Moneris: Remove redundant card on file guard clause [davidsantoso] #3123
1238
+ * Switch order of Romania country codes [molbrown] #3125
1239
+ * Blue Snap: Supports Level 2/3 data [molbrown] #3126
1240
+ * Blue Snap: Support personal_identification_number [jknipp] #3128
1241
+ * ProPay: Send 9 digit zip code without dash [molbrown] #3129
1242
+ * Adyen: Extend AVS code mappings [therufs] #3119
1243
+ * NMI: Add customer id to authorization on store [curiousepic] #3130
1244
+ * Trans First Express: Don't pass blank name field [curiousepic] #3133
1245
+ * TrustCommerce: Send full name on ACH transactions [jknipp] #3132
1246
+ * Qvalent: Map CVV Result to responses [curiousepic] #3135
1247
+ * Card Connect: Handle 401s as responses [curiousepic] #3137
1248
+ * Worldpay: Introduce normalized stored credential options [davidsantoso] #3134
1249
+ * Worldpay: Adjust use of normalized stored credentials hash [davidsantoso] #3139
1250
+ * Adyen: Enable Dynamic 3DS [molbrown] #3138
1251
+ * Fat Zebra: Support voids [curiousepic] #3142
1252
+ * Blue Snap: Support ACH/ECP payments [jknipp] #3143
1253
+ * Blue Snap: Fix Card-on-File field typo [jknipp] #3143
1254
+ * Add Bambora gateway [InfraRuby] #3145
1255
+ * Bambora Asia-Pacific: Updates Gateway [molbrown] #3145
1256
+ * PaymentExpress: Support ClientInfo field [jknipp] #3131
1257
+ * Pin Payments: Concatenate card and customer tokens when storing card [therufs] #3144
1258
+ * Update Discover regex to allow card numbers longer than 16 digits [prashcr] #3146
1259
+ * Merrco partial refunds fix [payfirma1] #3141
1260
+
1261
+ == Version 1.90.0 (January 8, 2019)
1262
+ * Mercado Pago: Support "gateway" processing mode [curiousepic] #3087
1263
+ * Braintree: Update gem to latest version [curiousepic] #3091
1264
+ * Adyen: Pass arbitrary riskData fields [curiousepic] #3089
1265
+ * Worldpay: Fix cookie header name [curiousepic] #3099
1266
+ * Paymentez: Adds support for extra_params optional field [molbrown] #3095
1267
+ * Braintree Blue: Support Level 2 and 3 data fields [curiousepic] #3094
1268
+ * Braintree Blue: Refactor line_items field [curiousepic] #3100
1269
+ * TrustCommerce: Use `application_id` [nfarve] #3103
1270
+ * Stripe: Add 3DS Support [nfarve] #3086
1271
+ * Cecabank: Append error text to message [therufs] #3127
1272
+
1273
+ == Version 1.89.0 (December 17, 2018)
1274
+ * Worldpay: handle Visa and MasterCard payouts differently [bpollack] #3068
1275
+ * QuickPay: update supported countries [ta] #3049
1276
+ * WorldPay: set cardholder name to "3D" for 3DS transactions [bpollack] #3071
1277
+ * Authorize.Net: Support refunds for bank accounts [nfarve] #3063
1278
+ * Stripe: support specifying a reason for refunds [yosukehasumi] #3056
1279
+ * Paybox Direct: add support for XPF currency [adam-stead] #2938
1280
+ * TrustCommerce: Add ACH Ability [nfarve] #3073
1281
+ * Payeezy: Support $0 for verify transactions [molbrown] #3074
1282
+ * USA ePay: add support for recurring transactions, custom fields, and line items [lancecarlson] #3069
1283
+ * Add dLocal gateway [curiousepic] #3709
1284
+ * dLocal: Require secret_key [curiousepic] #3080
1285
+ * Adyen: Implement 3DS [nfarve] #3076
1286
+ * Adyen: Add 3DS Fix [nfarve] #3081
1287
+ * Payeezy: Add `stored_credentials` [nfarve] #3083
1288
+ * Fix CVC validation for 0 length CVC [filipebarcos] #3082
1289
+ * NMI: Supports vendor_id and processor_id fields [molbrown] #3085
1290
+
1291
+ == Version 1.88.0 (November 30, 2018)
1292
+ * Added ActiveSupport/Rails master support [Edouard-chin] #3065
1293
+
1294
+ == Version 1.87.0 (November 29, 2018)
1295
+ * Barclaycard Smartpay: Improves Error Handling [deedeelavinder] #3026
1296
+ * Braintree: Fix passing phone-only billing address [curiousepic] #3025
1297
+ * Litle: Capitalize check account type [curiousepic] #3028
1298
+ * Braintree: Account for nil billing address fields [curiousepic] #3029
1299
+ * Realex: Add verify [kheang] #3030
1300
+ * Braintree: Actually account for nil address fields [curiousepic] #3032
1301
+ * Mercado Pago: do not infer card type [bpollack] #3038
1302
+ * Credorax: allow sending submerchant ID (h3 parameter) [bpollack] #3040
1303
+ * Worldpay: Pass stored credential option fields [curiousepic] #3041
1304
+ * Make behavior of nil CC numbers more consistent [guaguasi] #3010
1305
+ * Moneris: Adds Credential on File logic [deedeelavinder] #3042
1306
+ * Adyen: Return AVS and CVC Result [nfarve] #3044
1307
+ * Paymentez: Supports phone field, does not send if empty [molbrown] #3043
1308
+ * Braintree: Account for nil address with existing customer [curiousepic] #3047
1309
+ * Optimal Payment: Add verify capabilities #3052
1310
+ * Moneris: Allows cof_enabled gateway to process non-cof transactions [deedeelavinder] #3051
1311
+ * Cenpos: update supported countries [bpollack] #3055
1312
+ * CyberSource: update supported countries [bpollack] #3055
1313
+ * MiGS: update supported countries [bpollack] #3055
1314
+ * Clearhaus: update submission data format [bpollack] #3053
1315
+ * Forte: Allow void on capture [nfarve] #3059
1316
+
1317
+ == Version 1.86.0 (October 26, 2018)
1318
+ * UsaEpayTransaction: Support UMcheckformat option for echecks [dtykocki] #3002
1319
+ * Global Collect: handle internal server errors [molbrown] #3005
1320
+ * Barclaycard Smartpay: allow third-party payouts for credits [bpollack] #3009
1321
+ * RuboCop: AlignHash [nfarve] #3004
1322
+ * Beanstream: Switch `recurringPayment` flag from boolean to integer [dtykocki] #3011
1323
+ * Update Swipe HQ endpoint [bdewater] #3013
1324
+ * Braintree: Adds device_data [deedeelavinder] #3012
1325
+ * Payflow Express: Add phone to returned Response [filipebarcos] #3003
1326
+ * Authorize.Net: Pass some level 3 fields [curiousepic] #3022
1327
+ * Add state to the netbanx payload [Girardvjonathan] #3024
1328
+
1329
+ == Version 1.85.0 (September 28, 2018)
1330
+ * Authorize.Net: Support custom delimiter for cim [curiousepic] #3001
1331
+
1332
+ == Version 1.84.0 (September 27, 2018)
1333
+ * PayU Latam: support partial captures [bpollack] #2974
1334
+ * Braintree: Reflect correct test mode in Braintree responses [elfassy] #2980
1335
+ * FirstPay: Expose error code [curiousepic] #2979
1336
+ * Barclaycard Smartpay: Pass device_fingerprint when specified [dtykocki] #2981
1337
+ * Komoju: remove no-longer-relevant sandbox URL [miyazawadegica] #2987
1338
+ * [POSSIBLE BREAKAGE] Determine credit cards via functions [bpollack] #2983
1339
+ * Drop support for Laser cards [bpollack] #2983
1340
+ * Improve Maestro card detection [bpollack] #2983
1341
+ * Add ROU alpha3 code for Romania [dtykocki] #2989
1342
+ * [POSSIBLE BREAKAGE] Drop support for Solo and Switch cards [bpollack] #2991
1343
+ * Add support for Carnet cards [bpollack] #2992
1344
+ * Stripe: support a reason for voiding a transaction [whitby3001] #2378
1345
+ * Payeezy: Add reversal_id in support of timeout reversals [dtykocki] #2997
1346
+ * Stripe: support Level 3 transaction fields [bpollack] #2996
1347
+ * Conekta: support Carnet cards [bpollack] #2999
1348
+ * Openpay: support Carnet cards [bpollack] #2999
1349
+ * Adyen: Add support for GooglePay [dtykocki] #2971
1350
+
1351
+ == Version 1.83.0 (August 30, 2018)
1352
+ * CT Payment: Update How Address is Passed [nfarve] #2960
1353
+ * Adyen: Add RecurringProcessingModel [nfarve] #2951
1354
+ * Optimal Payments: update country list [bpollack] #2961
1355
+ * Ebanx: update sandbox and production URLs [vnbrs] #2949
1356
+ * Ebanx: support additional countries [vnbrs] #2950
1357
+ * Gateway generator: fix a typo that would cause the script to crash [bpollack] #2962
1358
+ * Clearhaus: use $0 for verify transactions [bpollack] #2964
1359
+ * Global Collect: properly handle partial captures [bpollack] #2967
1360
+ * Braintree: Add support for GooglePay [dtykocki] #2966
1361
+ * Adyen: allow overriding card brands [bpollack] #2968
1362
+ * Adyen: allow custom routing [bpollack] #2969
1363
+ * First Pay: Adds scrubbing [deedeelavinder] #2972
1364
+
1365
+ == Version 1.82.0 (August 13, 2018)
1366
+ * FirstData: add support for WalletProviderID in v27 gateway [bpollack] #2946
1367
+ * BlueSnap: Handle 403 responses [curiousepic] #2948
1368
+ * BlueSnap: Add StoreCard Field [nfarve] #2953
1369
+ * Worldpay: support installments [bpollack] #2957
1370
+ * Paymentez: support partial refunds [bpollack] #2959
1371
+ * Payflow: allow support for partial captures [pi3r] #2952
1372
+
1373
+ == Version 1.81.0 (July 30, 2018)
1374
+ * GlobalCollect: Don't overwrite contactDetails [curiousepic] #2915
1375
+ * Pin Payments: Pass reference for statement desc [curiousepic] #2919
1376
+ * FirstData: introduce v27 gateway [shasum] #2912
1377
+ * Stripe: Fix contactless magstripe support [abhiin1947] #2917
1378
+ * ANET: Expose full response code [curiousepic] #2924
1379
+ * Global Collect: Fix customer data field structure [curiousepic] #2929
1380
+ * Adyen: Set Default Name for Apple Pay Transactions [nfarve] #2930
1381
+ * Beanstream: Update to use api key with login credentials [nfarve] #2934
1382
+ * CT Payments: Fix a typo in the live URL scheme [bpollack] #2936
1383
+ * CyberSource: Don't throw exceptions on HTML responses [bpollack] #2937
1384
+ * CyberSource: Remove extraneous parameter blocking echecks [chriscz] #2861
1385
+ * FirstPay: Update Fields For Recurring Payments [nfarve] #2940
1386
+ * Remove unused handle_response method [bl] #2309
1387
+ * Barclaycard Smartpay: bump API version to v30 [bpollack] #2941
1388
+ * Safecharge: Remove duplicate supported country [curiousepic]
1389
+ * Payflow Express: Use SHIPTONAME instead of `full_name` for shipping address [filipebarcos] #2945
1390
+
1391
+ == Version 1.80.0 (July 4, 2018)
1392
+ * Default SSL min_version to TLS 1.1 to comply with June 30 PCI DSS deadline [bdewater] #2909
1393
+ * Paymentez: return a Result object even when the upstream server 500s [bpollack] #2871
1394
+ * Drop support for Ruby versions older than 2.3 [bpollack] #2863
1395
+ * Bridge Pay: don't throw an exception when bank account type is omitted [bpollack] #2873
1396
+ * Avoid making actual connections in Blue Snap and Mundipagg unit tests [bpollack] #2875
1397
+ * Avoid making actual connections in the connection unit tests [bpollack] #2876
1398
+ * Openpay: support payment installments [bpollack] #2865
1399
+ * First Pay: support recurring charges [bpollack] #2877
1400
+ * Bridge Pay: pass full name of account type for echeck transactions [bpollack] #2878
1401
+ * Kushki: do not send 0 for tax values if tax values are not provided [bpollack] #2886
1402
+ * Payflow: Update ACH tests [curiousepic] #2887
1403
+ * Credorax: support passing billing description [bpollack] #2889
1404
+ * MiGS: scrub 3DS fields [abarrak] #2771
1405
+ * Forte: avoid crashing when location_id or account_id have spaces [bpollack] #2890
1406
+ * Adyen: Support Network Tokenization Cards via mpiData fields [curiousepic] #2891
1407
+ * Moneris US: Add ACH [nfarve] #2888
1408
+ * Realex: Pass amount for captures [curiousepic] #2895
1409
+ * Card Connect: support storing cards [bpollack] #2896
1410
+ * Avoid mutating headers passed in for Active Merchant connections [grantbdev] #2892
1411
+ * Forte: add support for refunds [bpollack] #2898
1412
+ * Forte: fix a bug in logic for selecting billing names [whitby3001] #2381
1413
+ * Paymentez: allow capture amount to exceed authorization amount [bpollack] #2900
1414
+ * JetPay: fix typo in error messages [reynhout] #2749
1415
+ * Braintree: add support for Maestro cards [matthewheath] #2571
1416
+ * Visanet Peru: Refund on unsettled transactions [nfarve] #2772
1417
+ * Remove iDeal offsite gateway references [bdewater] #2807
1418
+ * Conekta: Allow customer application in headers [curiousepic] #2908
1419
+ * Payment Express: use testing URLs when testing [oklas] #2231
1420
+ * Redsys: Fix payments with cc token [Leonardo Diez] #2586
1421
+ * Redsys: Missing cardnumber params in xml_signed_fields [nerburish] #2628
1422
+ * Bogus: allow authorizing with a tokenized card [Azdaroth] #2703
1423
+ * CT Payment: Add new gateway [nfarve] #2911
1424
+
1425
+ == Version 1.79.2 (June 2, 2018)
1426
+ * Fix Gateway#max_version= overwriting min_version [bdewater]
1427
+
1428
+ == Version 1.79.1 (May 31, 2018)
1429
+ * Fix Net::HTTP connections defaulting to connection: keep-alive instead of close since #2862 [bpollack] #2868
1430
+ * Mundipagg: allow passing holder_document for credit card purchases [bpollack] #2864
1431
+ * Conekta: support monthly_installments [bpollack] #2866
1432
+ * Authorize.net: allow sending email_customer set to false [bpollack] #2867
1433
+
1434
+ == Version 1.79.0 (May 30, 2018)
1435
+ * Allow setting min/max SSL version for a connection on Ruby 2.5 [bdewater] #2775
1436
+ * Add `gateways:ssl:min_version` rake task to test upcoming TLS 1.0 deprecation deadline [bdewater] #2775
1437
+ * Log negotiated SSL version and cipher [bdewater + methodmissing] #2862
1438
+ * Remove support for Rails < 4.2, add support for Rails 5.2 and Ruby 2.5 [bdewater]
1439
+ * Spreedly: Support verify and find transactions [abarrak] #2798
1440
+ * Adyen: Support merchant-specific subdomains [curiousepic] #2799
1441
+ * Fix ENV based configuration of Net::Http for proxies [bbergstrom] #2800
1442
+ * ANET: Withhold cryptogram for credit [curiousepic] #2804
1443
+ * Borgun: Remove batch from request parameters [deedeelavinder] #2805
1444
+ * WorldPay: Remove Inquiry requests in verify transactions [nfarve] #2802
1445
+ * Credorax: Update tests [curiousepic] #2809
1446
+ * Braintree: Remove decimal for non-fractional currencies [nfarve] #2806
1447
+ * Realex: Add documented country support for US and CA [a-salty-strudel] #2810
1448
+ * Paymentez: Add `tax_percentage` optional parameter [deedeelavinder] #2814
1449
+ * Braintree: Add `skip_advanced_fraud_checking` optional parameter [deedeelavinder] #2811
1450
+ * SafeCharge: Additional gateway options [dtykocki] #2816
1451
+ * FirstPay: Handle missing billing addresses [dtykocki] #2822
1452
+ * Realex: Add ApplePay Support [nfarve] #2820
1453
+ * Checkout V2: Additional gateway options [dtykocki] #2821
1454
+ * CyberSource: Support 3ds validate request [curiousepic] #2823
1455
+ * Paymentez: Remove card tokenization step from authorize [dtykocki] #2825
1456
+ * WorldPay: Add 3DS [nfarve] #2819
1457
+ * EBANX: Interpolate authorization string [curiousepic] #2830
1458
+ * CyberSource: Support 3DS validation for authorize [curiousepic] #2832
1459
+ * Redsys: Fix ISO code for PLN [chopenhauer] #2831
1460
+ * Merchant E Solutions: Support transcript scrubbing [curiousepic] #2836
1461
+ * Paystation: Support transcript scrubbing [curiousepic] #2837
1462
+ * Psigate: Support transcript scrubbing [curiousepic] #2835
1463
+ * Braintree: Adding 3D Secure pass thru capabilities [filipebarcos] #2843
1464
+ * Authorize.net: Add flexibility for 3D Secure Parameters [filipebarcos] #2844
1465
+ * Elavon: Update Country List [nfarve] #2840
1466
+ * WorldPay: Update Country List [nfarve] #2841
1467
+ * Merchant Warrior: Support transcript scrubbing [curiousepic] #2845
1468
+ * NAB Transact: Pass nonfractional amounts correctly [curiousepic] #2843
1469
+ * Realex: Update Country List [nfarve] #2842
1470
+ * QBMS: Support transcript scrubbing [curiousepic] #2849
1471
+ * Adyen: Add support for installments [nfarve] #2839
1472
+ * Paymentez: Read messages on Failure with no error [nfarve] #2850
1473
+ * Paymentez: Fix response message conditional [curiousepic] #2851
1474
+ * Add ability to send email receipt [nfarve] #2852
1475
+ * Barclaycard Smartpay: Pass shopper_interaction [curiousepic] #2853
1476
+ * Stripe: Treat UGX as a zero-decimal currency [bpollack] #2857
1477
+ * Mundipagg: Remove Billing Address if no Address Sent [nfarve] #2855
1478
+ * Paypal: Support more robust scrubbing [curiousepic] #2858
1479
+ * Stripe: Report internal Stripe errors as failures [bpollack] #2859
1480
+ * Authorize.net: Add ability to pass `customer_payment_profile_id` [nfarve] #2854
1481
+
1482
+ == Version 1.78.0 (March 29, 2018)
1483
+ * Litle: Add store for echecks [nfarve] #2779
1484
+ * Litle: Add Support for Echeck [nfarve] #2776
1485
+ * Orbital: Correct level 2 tax handling [deedeelavinder] #2729
1486
+ * Payeezy: Change determination method of endpoint for store request [deedeelavinder] #2731
1487
+ * Adyen: Return refusal_reason_raw when present [curiousepic] #2728
1488
+ * Payeezy: Update Store method [nfarve] #2733
1489
+ * CenPOS: Remove gzip encoding header [curiousepic] #2735
1490
+ * Mercado Pago: Allow binary_mode to be changed [nfarve] #2736
1491
+ * Stripe: Accept strings for refund_fee_amount [curiousepic] #2738
1492
+ * Orbital: Complete scrub test coverage [curiousepic] #2739
1493
+ * MIGS: Scrub sensitive data [curiousepic] #2740
1494
+ * Worldpay US: Scrub sensitive data [curiousepic] #2742
1495
+ * WorldPay: Remove Israel from supported country list [dtykocki] #2746
1496
+ * Optimal Payments: Scrub sensitive data [curiousepic] #2743
1497
+ * USA Epay Transaction: Scrub sensitive data [curiousepic] #2745
1498
+ * MIGS: Add unit test for scrub [curiousepic] #2747
1499
+ * Worldpay US: Fix bank account scrub [curiousepic] #2748
1500
+ * Litle: Add support for merchantData elements [dtykocki] #2751
1501
+ * Paymentez: Add support for purchasing and authorizatin with tokens [bpollack] #2753
1502
+ * Ingenico: Remove Trinidad and Tobego from supported country list [bpollack] #2754
1503
+ * Barclaycard Smartpay: Remove Georgia from supported country list [bpollack] #2755
1504
+ * Merchant Warrior: Remove requirement for state field [joshnuss] #2638
1505
+ * Wirecard: Adding missing DigiCert Global Root G2 Cert [filipebarcos] #2759
1506
+ * Redsys: Add support for CNY, IDR, INR, KRW and TWD [chopenhauer] #2761
1507
+ * Optimal Payments: Fix scrub for double escaping [curiousepic] #2763
1508
+ * Orbital: Scrub profile transactions [curiousepic] #2762
1509
+ * BlueSnap: Fix currency passing [curiousepic] #2765
1510
+ * Stripe: Support pickup_card decline code [dtykocki] #2764
1511
+ * Improve scrub testing for five gateways [curiousepic] #2767
1512
+ * Payflow: Support scrub [curiousepic] #2768
1513
+ * SecureNet: Support scrub [curiousepic] #2769
1514
+ * Payeezy: Update transaction method when using stored cards [dtykocki] #2770
1515
+ * Citrus Pay, DIBS, 1stPayGateway, Global Transport, NETbilling, Ogone, TNS: remove TLS 1.0 requirement [bdewater] #2774
1516
+ * CardStream: Default IP and customer country [dtykocki] #2773
1517
+ * Stripe: Support destination amount [dtykocki] #2777
1518
+ * GlobalCollect: Update supported country list [dtykocki] #2783
1519
+ * Adyen: Support store action [curiousepic] #2784
1520
+ * Psigate: Update Test URL and Card [nfarve] #2785
1521
+ * USA ePay Transaction: Support ACH/eChecks [curiousepic] #2786
1522
+ * PayU Latam: Support language parameter [dtykocki] #2787
1523
+ * Payflow: Pass OrderDesc field [curiousepic] #2789
1524
+ * Global Collect: Add arbitrary fraudField params [curiousepic] #2790
1525
+ * Paystation: Support verify action [curiousepic] #2793
1526
+ * Checkout V2: Return error codes in response [curiousepic] #2791
1527
+ * CardStream: Change refund to use REFUND_SALE [dtykocki] #2795
1528
+ * Spreedly: Scrub sensitive transaction data [abarrak] #2781
1529
+ * Stripe: Add `exchange_rate` parameter [WilsonChiang] #2796
1530
+ * Mundipagg: New Gateway Implementation [nfarve] #2791
1531
+
1532
+ == Version 1.77.0 (January 31, 2018)
1533
+ * Authorize.net: Allow Transaction Id to be passed for refuds [nfarve] #2698
1534
+ * Forte: ensure unit tests are local-only [bpollack] #2696
1535
+ * Moneris US: ensure unit tests are local-only [bpollack] #2696
1536
+ * Payflow: Change Verify Method for Amex Cards [nfarve] #2693
1537
+ * Safe Charge: fix an issue with variable shadowing in the adapter [bpollack] #2697
1538
+ * Crashnet: add scrubbing support [bpollack] #2695
1539
+ * Barclays EPDQ: add scrubbing support [bpollack] #2695
1540
+ * Fat Zebra: add remote scrubbing test [bpollack] #2695
1541
+ * Clearhaus: add remote scrubbing test [bpollack] #2695
1542
+ * Borgun: add remote scrubbing test [bpollack] #2695
1543
+ * Stripe: Added support for the quickchip entry mode option [rbalsdon]
1544
+ * Ogone: Add tests for scrubbing [bpollack] #2700
1545
+ * Global Transport: Add scrubbing support [bpollack] #2700
1546
+ * HPS: Add scrubbing support [bpollack] #2700
1547
+ * FirstData E4: Improve scrubbing and add remote scrubbing test [bpollack] #2700
1548
+ * Elavon: Add scrubbing support [bpollack] #2700
1549
+ * Data Cash: Add scrubbing support [bpollack] #2700
1550
+ * Litle: Fix testing URL [wsmoak] #2673
1551
+ * Barclays ePDQ Extra Plus: Add missing Entrust root certificates [pacso] #2614
1552
+ * Moneris US: Add scrubbing support [bpollack] #2702
1553
+ * Mercury: Add scrubbing support [bpollack] #2702
1554
+ * Fat Zebra: Tweak remote scrubbing test [bpollack] #2704
1555
+ * Card Connect: Add new gateway [nfarve] #2706
1556
+ * Payeezy: Ensure store calls are properly scrubbed [dtykocki] #2709
1557
+ * Payeezy: Add unit test for scrubbing store call [dtykocki] #2710
1558
+ * Element: Correct URL used by store transactions [dtykocki] #2711
1559
+ * Borgun: Add support for specifying TerminalID [bpollack] #2712
1560
+ * Barclaycard Smartpay: 3DS Implementation [nfarve] #2714
1561
+ * Payeezy: Surface gateway_message on failure [curiousepic] #2717
1562
+ * Payment Express: Scrub merchant password [curiousepic] #2723
1563
+ * Stripe: Fix Partial Application Fee Refunds [curiousepic] #2713
1564
+ * GooglePay: Support network tokenized cards [joshnuss] #2725
1565
+
1566
+ == Version 1.76.0 (January 3, 2018)
1567
+ * PayU Latam: Change default text for description [nfarve] #2669
1568
+ * Checkout V2: Allows AVS and CVV result details to come through on authorizations [deedeelavinder] #2650
1569
+ * Global Collect: Adds boolean option for pre_authorization [deeedeelavinder] #2651
1570
+ * Credorax: Pass Transaction Type field [curiousepic] #2653
1571
+ * Add CardProcess Gateway [bpollack] #2659
1572
+ * Safe Charge: Provision 3DS option for approved merchants [deedeelavinder] #2661
1573
+ * PayU Latam: Require payment_country on initialize [curiousepic] #2663
1574
+ * Adyen: Remove CVV as Required Field and Determines shopperInteraction [nfarve] #2665
1575
+ * SafeCharge: add support for VendorID, WebsiteID, and IP logging [bpollack] #2667
1576
+ * Safe Charge: Adds 3DS flag [deedeelavinder] #2668
1577
+ * CardProcess: Fix success? to always return true or false [bpollack] #2674
1578
+ * SagePay: Correct CVV, AVS codes for Sagepay [singhai0] #2670
1579
+ * PayU Latam: Count pending Voids as successful [curiousepic] #2677
1580
+ * Mercado Pago: Ensure acess tokens are URL escaped [bpollack] #2675
1581
+ * MiGS: Update hash format to SHA256 and restore remote tests [bpollack] #2676
1582
+ * MiGS: Support verify calls [bpollack] #2664
1583
+ * iATS: Fix Messages with Failure on iATS Server [nfarve] #2680
1584
+ * Barclaycard Smartpay: Correct repsonse for fraud rejects #2683
1585
+ * Adyen: Allow incomplete addresses in some situations [bpollack] #2684
1586
+ * Paymentez: Add new gateway [bpollack] #2685
1587
+ * PayU Latam: Provide a mechanism to override the amount in verify [dtykocki] #2688
1588
+ * Mercado Pago: Support X-Device-Session-ID Header [bpollack] #2689
1589
+ * Mercado Pago: Support arbitrary additional_info JSON [bpollack] #2691
1590
+ * FirstData E4: Override ECI value for Apple Pay transactions with Discover [jasonwebster] #2671
1591
+ * Quickbooks: Add payment context to Quickbooks charges and refunds [bdewater] #2694
1592
+
1593
+ == Version 1.75.0 (November 9, 2017)
1594
+ * Barclaycard Smartpay: Clean up test options hashes [bpollack] #2632
1595
+ * Barclaycard Smartpay: Extra data fields for credits [bpollack] #2631
1596
+ * Cyber Source: Correctly passes subscriptionID for store [deedeelavinder] #2633
1597
+ * Ebanx: Pass fields for business person responsible [curiousepic] #2635
1598
+ * Ebanx: Support Colombian transactions [bpollack] #2636
1599
+ * FirstData E4 (Payeezy): Ensure numeric ECI values are zero padded [jasonwebster] #2630
1600
+ * Netbanx: Only send currency and billing_details for auths and sales [anotherjosmith] #2643
1601
+ * Netbanx: Revert "Fixes basic auth for netbanx by sending the account_number and api_key" [anotherjosmith] #2644
1602
+ * PayU Latam: Adds `partnerID`, adjusts phone preferences, allows empty `ip_address`, and adjusts for no `cvv` [deedeelavinder] #2634
1603
+ * Sage Payment Solutions: Scrub check info [curiousepic] #2639
1604
+ * Worldbank US: Allow using the backup URL [bpollack] #2641
1605
+ * Worldbank US: Allow using the backup URL per-request [bpollack] #2645
1606
+
1607
+ == Version 1.74.0 (October 24, 2017)
1608
+ * Adyen: Update list of supported countries [dtykocki] #2600
1609
+ * Authorize.net CIM: Handle multiple error messages [amandapuff] #2537
1610
+ * Barclaycard Smartpay: Pass street and house_number fields, in addition to standard address [deedeelavinder] #2603
1611
+ * Barclaycard Smartpay: Use authorization pspReference for refunds [davidsantoso] #2599
1612
+ * Beanstream: Pass email fields without address [curiousepic] #2615
1613
+ * Beanstream: Support recurringPayment for auth, capture, and purchase transactions [dtykocki] #2617
1614
+ * Borgun: Add support for USD transactions [dtykocki] #2602
1615
+ * Borgun: Include currency code from split authorization for voids [dtykocki] #2605
1616
+ * Checkout V2: Expose AVS and CVV results for purchases [dtykocki] #2619
1617
+ * Credorax: Update response codes [curiousepic] #2595
1618
+ * CyberSource: Support 3DSecure requests [curiousepic] #2624
1619
+ * Ebanx: Pass person_type and name for stored cards [curiousepic] #2621
1620
+ * Ebanx: Support Store and person_type option [curiousepic] #2604
1621
+ * Elavon: Update endpoint URLs [curiousepic] #2608
1622
+ * Netbanx: Fix basic auth by sending the account_number and api_key [anotherjosmith] #2616
1623
+ * Payeezy: Adds support for store [deedeelavinder] #2591
1624
+ * PayU Latam: Set payment_country gateway attribute [curiousepic] #2611
1625
+ * Redsys: Support the DKK currency type [bpollack] #2618
1626
+ * WePay: Only send ip and device for non-recurring transactions [dtykocki] #2597
1627
+
1628
+ == Version 1.73.0 (September 28, 2017)
1629
+ * Adyen: Use original authorization pspReference on Refunds [lyverovski] #2589
1630
+ * Braintree Blue: Explicitly require braintree-ruby version 2.78 [anotherjosmith]
1631
+ * FirstData E4: Scrub 3DS cryptogram [jasonwebster] #2596
1632
+ * PayHub: Replace single quotes with double quotes in error message [matthewheath] #2572
1633
+ * Wirecard: Format non-fractional currency amounts correctly [bdewater] #2594
1634
+
1635
+ == Version 1.72.0 (September 20, 2017)
1636
+ * Adyen: Fix failing remote tests [dtykocki] #2584
1637
+ * Authorize.net: Remove numeric restriction on customer ID [dtykocki] #2579
1638
+ * Authorize.net: Restore default state value for non-US addresses [jasonwebster] #2563
1639
+ * Beanstream: Do not default state and zip with empty country [dtykocki] #2582
1640
+ * Braintree Blue: Add eci_indicator field for Apple Pay [davidsantoso] #2565
1641
+ * Conekta: Add guard clause for details fallbacks [curiousepic] #2573
1642
+ * Conekta: Pull required details from billing address [nfarve] #2568
1643
+ * DataCash: Enable refunding recurring transactions [davidsantoso] #2560
1644
+ * Ebanx: Adds Brazil Specific Parameters [nfarve] #2559
1645
+ * Kushki: Add support for refunds [dtykocki] #2575
1646
+ * MercadoPago: Additional tweaks for transaction requests [davidsantoso]
1647
+ * MercadoPago: Default to alphanumeric order_id [davidsantoso]
1648
+ * MercadoPago: Send diners_club cards as diners [davidsantoso] #2585
1649
+ * PayU Latam: Correctly condition buyer element fields [curiousepic] #2578
1650
+ * PayU Latam: Pass unique buyer fields and country requirements [curiousepic] #2570
1651
+ * Qvalent: Support general credit [curiousepic] #2558
1652
+ * SafeCharge: Update to Version 4.1.0 [nfarve] #2556
1653
+ * WePay: Don't default API version header [curiousepic] #2567
1654
+ * WePay: Don't require email for Store [curiousepic] #2588
1655
+
1656
+ == Version 1.71.0 (August 22, 2017)
1657
+ * Bambora formerly Beanstream: Change casing on customerIp variable [aengusbates] #2551
1658
+ * Checkout V2: Add localized_amount support to add_invoice function [nicolas-maalouf-cko] #2452
1659
+ * Checkout V2: Add UAE to country list [shasum] #2548
1660
+ * Checkout V2: Fix success response code validation [nicolas-maalouf-cko] #2452
1661
+ * CreditCall: Only allow AVS when specified [curiousepic] #2549
1662
+ * CreditCall: Parse additional params from responses [nfarve] #2552
1663
+ * CreditCall: Parse more response params [nfavre] #2543
1664
+ * MercadoPago: Small tweaks to building requests [davidsantoso] #2555
1665
+ * Orbital: Support Network Tokenization Credit Cards [curiousepic] #2553
1666
+ * Orbital: Updgrade schema version to 7.1 [curiousepic] #2546
1667
+ * Remove HUF from default non-fractional currencies [curiousepic] #2538
1668
+ * Stripe: Add support for statement_address parameters for EMV transactions [malcolm-mergulhao] #2524
1669
+ * TransFirst Express: Don't send address2 without value [nfarve] #2545
1670
+ * TransFirst Express: Fix Optional Fields Being Passed Blank [nfarve] #2550
1671
+ * TransFirst: Fix partial refund [nfarve] #2541
1672
+ * Vantiv (Litle): Pass 3DS fields [curiousepic] #2536
1673
+ * Braintree Blue: Add phone to options [deedeelavinder] #2564
1674
+
1675
+ == Version 1.70.0 (August 4, 2017)
1676
+ * Barclaycard Smartpay: Provider a default billing address house number [nfarve] #2520
1677
+ * FirstData E4: Fix duplicate XID and CAVV values in tokenized transactions [jasonwebster] #2529
1678
+ * FirstData E4: Loose XSD validation for Payeezy (FirstData E4) [jasonwebster] #2529
1679
+ * GlobalTransport: Support partial authorizations [dtykocki] #2511
1680
+ * Litle: Update schema and certification tests to v9.12 [curiousepic] #2522
1681
+ * Litle: Update urls and name to Vantiv [curiousepic] #2531
1682
+ * Mercado Pago: Add gateway support [davidsantoso] #2518
1683
+ * Orbital: Add support for level 2 data [dtykocki] #2515
1684
+ * PayU Latam: Pass DNI Number [curiousepic] #2517
1685
+ * Qvalent: Pass 3dSecure fields [curiousepic] #2508
1686
+ * SafeCharge: Correct UserID field name [curiousepic]
1687
+ * SafeCharge: Pass UserID field [curiousepic] #2507
1688
+ * AuthorizeNet: Allow Response Code 4 to be returned as successful [nfarve] #2530
1689
+ * Forte: Remove order number from captures in Forte Gateway [nfarve] #2532
1690
+ * PayU Latam: Add additional mandatory fields [deedeelavinder] #2528
1691
+
1692
+ == Version 1.69.0 (July 12, 2017)
1693
+ * WePay: Add payer_rbits and transaction_rbits optional fields [davidsantoso]
1694
+ * Adyen: Use Active Merchant standard order_id option for reference [jasonwebster] #2483
1695
+ * Correct calculation for three-exponent currencies [curiousepic] #2486
1696
+ * SagePay: Use VPSTxId from authorization for refunds [dtykocki] #2489
1697
+ * Payflow: Move PAYPAL-NVP header option to a class attribute on the payment gateway [deuxpi] #2492
1698
+ * Optimal Payments: Pass CVD indicator accurately [curiousepic] #2491
1699
+ * SagePay: Make Repeat purchase if payment is a past authorization [curiousepic] #2495
1700
+ * Netbanx: map response errorCodes onto standard error code [iirving] #2456
1701
+ * Netbanx: Update supported countries and cardtypes [iirving] #2456
1702
+ * Barclaycard Smartpay: Support 0- and 3-exponent currencies [curiousepic] #2498
1703
+ * CyberSource: Fix XSD schema validation issues [jasonwebster] #2497
1704
+ * WorldPay: Support three-decimal currencies [curiousepic] #2501
1705
+ * NMI: Add first and lastname to echeck transactions [dtykocki] #2499
1706
+ * PayFlow: Add optional email field [davidsantoso] #2505
1707
+ * Worldpay: Support Credit on CFT-enabled merchant IDs [curiousepic] #2503
1708
+ * FirstPay: Add processor_id field [davidsantoso] #2506
1709
+ * Authorize.Net: Use two character default for billing state [dtykocki] #2496
1710
+
1711
+ == Version 1.68.0 (June 27, 2017)
1712
+ * Authorize.Net: Return failed response if forced refund settlement fails [bizla] #2476
1713
+ * Authorize.net: Concatenate address1 and address2 [dtykocki] #2479
1714
+ * Braintree Blue: Braintree Blue: Add ECI indicator to Android Pay transactions [davidsantoso] #2474
1715
+ * Credorax: Support 0- and 3-exponent currencies [curiousepic]
1716
+ * Cybersource: update supported card types [bdewater] #2477
1717
+ * FirstData: Add a default network tokenization strategy for FirstData E4 [krystosterone] #2473
1718
+ * FirstPay: FirstPay: Update hostname and force TLSv1 minimum [davidsantoso] #2478
1719
+ * JetPay V2: Support store transactions and token based payments [shasum] #2475
1720
+ * Moneris: Add 3DS fields for decrypted Apple and Android Pay data [davidsantoso] #2457
1721
+ * Openpay: Send customer name and email in authorize and purchase [dtykocki] #2468
1722
+ * Payflow: Moved to name value pair (NVP) with payflow [jusleg] #2462
1723
+ * Payflow: Set PAYPAL_NVP header as optional [davidsantoso] #2480
1724
+ * QuickPay V10: Return last response for purchase and authorize [curiousepic] #2461
1725
+ * SafeCharge: Map billing address fields [davidsantoso] #2464
1726
+ * SafeCharge: Track currency from original transaction [davidsantoso] #2470
1727
+ * Support three-decimal currencies [curiousepic] #2466
1728
+ * Trexle: Add gateway support [hossamhossny] #2351
1729
+
1730
+ == Version 1.67.0 (June 8, 2017)
1731
+ * Acapture: Pass 3D Secure fields [davidsantoso] #2451
1732
+ * Authorize.net: Pass Level 2 Data Fields [curiousepic] #2444
1733
+ * Credorax: Add 3D Secure authentication fields [davidsantoso] #2446
1734
+ * Ebanx: Add gateway support [davidsantoso] #2447
1735
+ * Ebanx: Reduce supported countries to Brazil and Mexico [davidsantoso]
1736
+ * FirstData Payeezy: Set default ECI value for auth/purchase transactions [jasonwebster] #2448
1737
+ * JetPay V2: Add new gateway [shasum] #2442
1738
+ * JetPay V2: Add optional tax data to capture calls [shasum] #2445
1739
+ * NMI: Add Network Tokenization support [shasum] #2431
1740
+ * Orbital: Pass soft descriptors from options hash [curiousepic]
1741
+ * Orbital: Update test and production urls [jcowhigjr] #2436
1742
+ * Payeezy: Add client_email field for telecheck [davidsantoso] #2455
1743
+ * Payeezy: Add customer_id_type and customer_id_number fields [davidsantoso] #2454
1744
+ * Quickpay V10: Fix store and token use for recurring payments [wsmoak] #2180
1745
+ * Elavon: Support custom fields [curiousepic] #2416
1746
+ * WePay: Support risk headers [shasum] #2419
1747
+ * WePay: Add Canada as supported country [shasum] #2419
1748
+ * Fat Zebra: Fix xid 3D Secure field [curiousepic]
1749
+ * SafeCharge: Mark support for European countries [curiousepic]
1750
+ * Checkout V2: Pass customer ip option [curiousepic]
1751
+ * Realex: Map AVS and CVV response codes [davidsantoso] #2424
1752
+ * Opp: Send disable3DSecure custom parameter if present [davidsantoso] #2432
1753
+ * SafeCharge: Map standard Active Merchant order_id field [davidsantoso] #2434
1754
+ * Payeezy: Default check number to 001 if not present [davidsantoso] #2439
1755
+ * Opp: Fix incorrect customParameter key to disable 3DS [davidsantoso]
1756
+
1757
+ == Version 1.66.0 (May 4, 2017)
1758
+ * Support Rails 5.1 [jhawthorn] #2407
1759
+ * ProPay: Add Canada as supported country [davidsantoso]
1760
+ * ProPay: Add gateway support [davidsantoso] #2405
1761
+ * SafeCharge: Support credit transactions [shasum] #2404
1762
+ * WePay: Add scrub method [shasum] #2406
1763
+ * iVeri: Add gateway support [curiousepic] #2400
1764
+ * iVeri: Support 3DSecure data fields [davidsantoso] #2412
1765
+ * Opp: Fix transaction success criteria and clean up options [shasum] #2414
1766
+
1767
+ == Version 1.65.0 (April 26, 2017)
1768
+ * Adyen: Add Adyen v18 gateway [adyenpayments] #2272
1769
+ * Authorize.Net: Force refund of unsettled payments via void [bizla] #2399
1770
+ * Barclays ePDQ: removed because it has been replaced by a new API [bdewater] #2331
1771
+ * Beanstream: Map ISO province codes for US and CA [shasum] #2396
1772
+ * Braintree Blue: Change :full_refund option to :force_full_refund_if_unsettled [bizla] #2403
1773
+ * Braintree Blue: Force refund of unsettled payments via void [bizla] #2398
1774
+ * Checkout V2: Fix sandbox URL [nicolas-maalouf-cko] #2391
1775
+ * Checkout V2: Fix success_from not properly checking two possible success codes [davidsantoso]
1776
+ * Cybersource: Rescue XML parse exception [shasum] #2380
1777
+ * GlobalCollect: Make message and error reporting more robust [curiousepic] #2370
1778
+ * GlobalCollect: Set REJECTED refunds as unsuccessful transactions [davidsantoso] #2365
1779
+ * GlobalCollect: Truncate firstName field to 15 characters [davidsantoso]
1780
+ * JetPay: Pass down authorization payment method token to refund a capture [davidsantoso]
1781
+ * Openpay: Support card points [shasum] #2401
1782
+ * Orbital: Don't send CVV indicator if CVV is not present [curiousepic] #2368
1783
+ * PayU LATAM: Fix incorrect capture method definition [davidsantoso]
1784
+ * Payeezy: Support dynamic soft descriptors [shasum] #2384
1785
+ * Pin: Add metadata optional field [shasum] #2363
1786
+ * Qvalent: Add soft descriptor fields. Add authorize, capture, and void [davidsantoso]
1787
+ * SafeCharge: Add gateway [davidsantoso]
1788
+ * SagePay: Support Repeat transactions [curiousepic] #2395
1789
+ * Stripe: Support custom application in X-Stripe-Client-User-Agent header [davidsantoso]
1790
+ * TransFirst Transaction Express: Support ACH [curiousepic] #2389
1791
+ * WePay: Support unique_id for idempotent transactions [shasum] #2367
1792
+ * Worldpay: Force refund of unsettled payments via void [bizla] #2402
1793
+
1794
+ == Version 1.64.0 (March 6, 2017)
1795
+ * Authorize.net: Allow settings to be passed for CIM purchases [fwilkins] #2300
1796
+ * Authorize.net: Use new `unsupported_feature` standard error code [jasonwebster] #2322
1797
+ * Base Gateway: Add new `unsupported_feature` standard error code [jasonwebster] #2322
1798
+ * Braintree Blue: Pass cardholder_name with card [curiousepic] #2324
1799
+ * Braintree: Add Android Pay meta data fields [jknipp] #2347
1800
+ * CardStream: Add additional of currencies [shasum] #2337
1801
+ * Credorax: Return failure response reason [shasum] #2341
1802
+ * Digitzs: Add gateway [davidsantoso]
1803
+ * Digitzs: Remove merchant_id from gateway credentials [davidsantoso]
1804
+ * GlobalCollect: Pass options to Refund [curiousepic] #2330
1805
+ * Kushki: Add new gateway [shasum] #2326
1806
+ * Kushki: Remove body from void call [shasum] #2348
1807
+ * Linkpoint: Raise ArgumentError when trying to instantiate without `:pem` [jasonwebster] #2329
1808
+ * Omise: Enable Japan, JPY and JCB support [zdk] #2284
1809
+ * PayU LATAM: Count pending refunds as succeeded [curiousepic] #2336
1810
+ * PayU LATAM: Let Refund take amount value [curiousepic] #2334
1811
+ * Paymill: Send new required fields on tokenization requests [tschelabaumann] #2279
1812
+ * Revert "Authorize.net: Allow settings to be passed for CIM purchases" [curiousepic] #2339
1813
+ * Sage: Default billing state when outside US [shasum] #2340
1814
+ * Stripe: Remove idempotency key from verify [shasum] #2335
1815
+ * TransFirst Transaction Express: Don't send order_id with refunds [curiousepic] #2350
1816
+ * TransFirst Transaction Express: Fix improper AVS and CVV response code mapping [shasum] #2342
1817
+ * WePay: Update API version [shasum] #2349
1818
+ * USA ePay Advanced: Add quick_update_customer action [joshreeves] #2229
1819
+
1820
+ == Version 1.63.0 (February 2, 2017)
1821
+ * Authorize.net: Add #unstore support [jimryan] #2293
1822
+ * AuthorizeNet: Fix line items quirk [shasum]
1823
+ * CardStream: Add dynamic descriptor option fields [curiousepic]
1824
+ * CardStream: Support PEN currency [shasum]
1825
+ * Culqi: Add new gateway [shasum]
1826
+ * CyberSource: Add Lebanon to supported countries [shasum]
1827
+ * Element: Add AVS and CVV codes to response [shasum]
1828
+ * Firstdata E4 (Payeezy): Set correct ECI value for card present swipes [jasonwebster] #2318
1829
+ * GlobalCollect: On purchase skip capture if not required [davidsantoso]
1830
+ * PaymentExpress: Update supported countries [shasum]
1831
+ * Remove leading or trailing whitespace from credit card name [davidsantoso]
1832
+ * Remove support for Ruby 2.0 [jasonwebster]
1833
+ * Secure Pay AU: Add scrubbing support to Secure Pay AU [bruno] #2253
1834
+ * Stripe: Fix error in handling of track-only contactless EMV data [jasonwebster]
1835
+ * Vanco: Update test URL [davidsantoso]
1836
+ * WePay: Build fee structure correctly [curiousepic]
1837
+ * WePay: Remove null address fields from request [davidsantoso]
1838
+ * WePay: Update WePay to API version 2016-12-07 [davidsantoso]
1839
+ * Wirecard: Send customer data in requests [davidsantoso]
1840
+ * Worldpay: Add session id attribute [shasum]
1841
+ * Worldpay: Do not default address when not provided [shasum]
1842
+
1843
+ == Version 1.62.0 (December 5, 2016)
1844
+ * AuthorizeNet: Map to standard AVSResult codes [shasum]
1845
+ * CitrusPay: Add 3DSecureId field [davidsantoso]
1846
+ * CyberSource: Only get alpha2 country code when it's a known country [bruno] #2238
1847
+ * Fat Zebra: Add scrubbing to Fat Zebra gateway [bruno] #2037
1848
+ * Monei: Add US and CA as new supported countries [davidgf] #2209
1849
+ * NAB Transact: Add scrubbing to NAB Transact [bruno] #2038
1850
+ * iATS: Add scrubbing support to iATS [bruno] #2228
1851
+ * Stripe: Ensure ECI values for tokenized cards are padded [jasonwebster] #2250
1852
+ * Forte: Fix incorrect authorization_code response mapping [davidsantoso]
1853
+ * maxiPago: Send currency with request [curiousepic]
1854
+ * Credorax: Map order_id to field H9 [curiousepic]
1855
+ * Authorize.net: Remove duplicate country GB [shasum]
1856
+ * PayU Latam: Add processWithoutCvv2 field [shasum]
1857
+ * Fat Zebra: De-nest soft descriptor fields [curiousepic]
1858
+ * Credorax: Only pass c5 field for billing address1 [davidsantoso]
1859
+ * Orbital: Add support for CLP currency [curiousepic]
1860
+ * Authorize.net: Add line item fields and additional transaction settings [shasum]
1861
+ * Authorize.net: Pass through `header_email_receipt` [shasum]
1862
+ * Stripe: Scrub additional network tokenization related sensitive data [jasonwebster] #2251
1863
+ * Applying: Worldpay: Format non-fractional currency amounts correctly [jasonwebster] #2267
1864
+
1865
+ == Version 1.61.0 (November 7, 2016)
1866
+ * Add codes AQ, BQ, SX, and SS to list of countries and update SD numeric code [zxlin]
1867
+ * AuthorizeNet: Update supported countries list [shasum]
1868
+ * Barclay SmartPay: Add support for credit [shasum]
1869
+ * Barclaycard SmartPay: Update supported countries [shasum]
1870
+ * BluePay: Add Canada to supported countries list [shasum]
1871
+ * BlueSnap: Update countries list [shasum]
1872
+ * Braintree Blue: Add Android Pay support [mrezentes]
1873
+ * Braintree Blue: Add remote test to verify card token [shasum]
1874
+ * Braintree Blue: Get Android Pay tx id from payment method, not options [mrezentes]
1875
+ * CardStream: Add MXN currency code [curiousepic]
1876
+ * CardStream: Set captureDelay to zero on purchase [davidsantoso]
1877
+ * CitrusPay: Add gateway [duff]
1878
+ * CitrusPay: Update URL to current API version [davidsantoso]
1879
+ * Clearhaus: Fix refund of captures [duff]
1880
+ * Clearhaus: Update list of non fractal currencies [curiousepic]
1881
+ * Clearhaus: Use localized amount [curiouspic]
1882
+ * Conekta: Add void action [MauricioMurga]
1883
+ * Credorax: Add gateway support [davidsantoso]
1884
+ * CyberSource, Paymill, Payflow: Add verify_credentials [duff]
1885
+ * CyberSource: Combine auth_reversal with Void [curiousepic]
1886
+ * CyberSource: Increase merchant defined data fields [davidsantoso]
1887
+ * CyberSource: Look up alpha2 country code [curiousepic]
1888
+ * CyberSource: Use localized_amount [curiousepic]
1889
+ * Element: Pass order_id and shipping address [curiousepic]
1890
+ * Fat Zebra: Add cavv, xid, and sli fields [curiousepic]
1891
+ * Fat Zebra: Fix improper descriptor nesting [curiousepic]
1892
+ * Find countries if they are differently cased [curiousepic]
1893
+ * GlobalCollect: Update credit card brand list [curiousepic]
1894
+ * Jetpay: Support endpoint for Canada [shasum]
1895
+ * Linkpoint: Clean whitespace from PEM [curiousepic]
1896
+ * Litle: Retain amount to send in auth reversals [curiousepic]
1897
+ * Litle: add scrubbing support [bruno]
1898
+ * MONEI: Update supported countries list [davidgf]
1899
+ * MiGS: Handle IDR currency [curiousepic]
1900
+ * Migs: Add support for void [mohsenottello]
1901
+ * Migs: Support some additional fields [duff]
1902
+ * Moneris: Fix unit test stubs [shasum]
1903
+ * Moneris: add scrubbing support [bruno]
1904
+ * NMI, FirstData: Support verify_credentials [curiousepic]
1905
+ * Openpay: Add support for verify [duff]
1906
+ * PayJunctionV2: Add gateway support [shasum]
1907
+ * PayU Latam: Add new gateway [shasum]
1908
+ * PayU Latam: Update supported countries list [shasum]
1909
+ * Payflow: Update supported countries list [shasum]
1910
+ * PaypalExpress: Add SoftDescriptor field [talyssonoc]
1911
+ * Redsys: Added DOP and CRC currency [davidsantoso]
1912
+ * Sage: Add support for scrubbing [bruno]
1913
+ * SagePay: Fix truncation [duff]
1914
+ * SecurionPay: Update supported countries list [shasum]
1915
+ * Stripe: Increase authorize amount during verify [davidsantoso]
1916
+ * Stripe: Set minimum authorize amount depending on currency [davidsantoso]
1917
+ * Stripe: Support new network tokenization API params [methodmissing]
1918
+ * Stripe: Update supported countries list [shasum]
1919
+ * TNS and CitrusPay: Support scrub and verify_credentials [duff]
1920
+ * TNS and CitrusPay: Update to version 36 of the API [duff]
1921
+ * TNS: Try TLS v1 [duff]
1922
+ * Telr: Add gateway support [curiousepic]
1923
+ * TransFirsTransactionExpress: Remove blank cvv element [davidsantoso]
1924
+ * TransFirsTransactionExpress: Take into account blank string CVV [davidsantoso]
1925
+ * Vanco: Improve handling of success determination [duff]
1926
+ * Worldpay: Add hcgAdditionalData element [davidsantoso]
1927
+ * Worldpay: Report error code [curiousepic]
1928
+
1929
+ == Version 1.60.0 (July 4, 2016)
1930
+ * Orbital: Fix CC num leak on profile calls [drewblas]
1931
+ * VisaNetPeru: Add ability to refund [duff]
1932
+ * AuthorizeNet: Fix store using new profile [duff]
1933
+ * Clearhaus: Support private key for signature [curiousepic]
1934
+ * Clearhaus: Copy private_key when stripping [curiousepic]
1935
+ * CertoDirect: Remove gateway [shiroginne]
1936
+ * Braintree: Extra error messaging [jordan-brough]
1937
+ * AuthorizeNetCim: Set error code for AuthorizeNetCimGateway response [ka8725]
1938
+ * Quickpay v10: Remove amount requirement for store [curiousepic]
1939
+ * PSLCards: correct namespace in doc for Response object from ActiveRecord::Billing to ActiveMerchant::Billing [CJ Keeney]
1940
+ * Pagar.me: Add pagar.me [chrisenytc]
1941
+ * Stripe: Update Readme to show stripe support [rhlrjv]
1942
+ * Orbital: Add support for the BRL currency [duff]
1943
+ * GlobalTransport: Require TLSv1 [duff]
1944
+ * Openpay: Allow currency to be specified [darkaz]
1945
+ * DataCash: Use API version 2 [curiousepic]
1946
+ * Stripe: Support verify_credentials [duff]
1947
+ * AuthorizeNet: Support verify_credentials [duff]
1948
+ * BraintreeBlue: Support verify_credentials [duff]
1949
+ * Redsys: Added SAR currency [agseco]
1950
+ * QuickPay: Adding customer_ip for authorize action in quickpay [dinesh]
1951
+ * MaxiPago: add void and refund [shasum]
1952
+ * MaxiPago: Allow processor_id override [duff]
1953
+ * Stripe: Interpret string input to store method as token identifier [bizla]
1954
+ * MaxiPago: Add verify and scrub [shasum]
1955
+ * Stripe: Remove metadata restriction from EMV transactions [bizla]
1956
+ * SagePay: Add optional fields to SagePay requests [cristianstanescu]
1957
+ * CyberSource: Assign default with override for billing address and email [shasum]
1958
+ * CyberSource: Assign default order_id [duff]
1959
+ * TNS: Support asia_pacific endpoint [curiousepic]
1960
+ * TransFirsTransactionExpress: Fix exception [duff]
1961
+ * CyberSource: Add decision manager optional fields [shasum]
1962
+ * CyberSource: Add decision manager optional fields [shasum]
1963
+ * TNS: Add support for TLS v1.2 [curiousepic]
1964
+ * QuickpayV7: Default description field for store operation [duff]
1965
+ * Elavon: Support customer_number field [duff]
1966
+ * Map test_mode_live_card code to new standard error code [berkcaputcu]
1967
+ * Elavon: Pass customer_number correctly [duff]
1968
+ * Stripe: add SG to supported_countries attribute [timbeiko]
1969
+
1970
+ == Version 1.59.0 (May 18, 2016)
1971
+ * Orbital: Allow AVS parts to be sent sans country [duff]
1972
+ * SecureNet: Return the right error message for declines [duff]
1973
+ * Moneris: Add verify [anellis]
1974
+ * Moneris: Add verify [anellis]
1975
+ * Jetpay: Add support for origin field[anellis]
1976
+ * Jetpay: Don't default origin field [duff]
1977
+ * GlobalCollect: New gateway support [curiousepic]
1978
+ * Openpay: Use strict_encode64 [duff]
1979
+ * Sage: Always pass along the billing state [duff]
1980
+ * VisaNet Peru: New gateway support [shasum]
1981
+ * Worldpay: Allow installationId to be specified at transaction time [duff]
1982
+ * SecurionPay: Support store [shasum]
1983
+ * Barclaycard Smartpay: Proper AVS return codes [curiousepic]
1984
+ * VisaNetPeru: Pass through CVV [duff]
1985
+ * Barclaycard Smartpay: Use strict_encode64 [duff]
1986
+ * VisaNetPeru: Fix error when billing address empty [shasum]
1987
+ * Vanco: Update live_url [duff]
1988
+ * Cardstream: Reference purchase [curiousepic]
1989
+ * Paymill: Fix error handling [methodmissing]
1990
+ * Latitude19: New gateway support [shasum]
1991
+ * BraintreeBlue: remove invalid test assertions [prburke]
1992
+ * Merchant e-Solutions: Pass order_id with capture [curiousepic]
1993
+ * CyberSource: Add rescue for ResponseErrors [curiousepic]
1994
+ * AuthorizeNet: Always pass recurringBilling flag if present [curiousepic]
1995
+ * S5: Pass order_id to TransactionID [curiousepic]
1996
+ * NMI: Set ACH sec_code from options if present [curiousepic]
1997
+ * VisaNet Peru: Refactor merchant_id and purchase_number handling [shasum]
1998
+ * Braintree Blue: Pass descriptor_url field [curiousepic]
1999
+ * VisaNet Peru: Add merchant_define_data option [duff]
2000
+ * Merchant e-Solutions: pass optional 3Dsecure params [curiousepic]
2001
+ * NMI: Fix refunds and voids of echecks [duff]
2002
+ * VisaNet Peru: Pass dummy email when not present [curiousepic]
2003
+ * PayU India: Add Maestro as supported card [curiousepic]
2004
+ * Cashnet: Don't retry [duff]
2005
+ * CardStream: Make Void call Cancel instead of Refund [curiousepic]
2006
+ * Remove AN and KV country codes as they're not recognized by ISO-3166-1 [apdunston]
2007
+ * Worldpay: Pass unchanged amount with correct currency exponent [curiousepic]
2008
+ * Improve our handling of currencies sans fractions [duff]
2009
+ * Stripe: Added support for the contactless magstripe entry mode option [rbalsdon]
2010
+ * VisaNet Peru: Change money format to dollars [shasum]
2011
+ * BlueSnap: Add gateway [duff]
2012
+ * VisaNet Peru: Select the most meaningful gateway error message [shasum]
2013
+ * SecurionPay: Update country list [duff]
2014
+ * Support for BIN 2 MasterCard brand detection [rbalsdon]
2015
+ * CardStream: Fix signature calculation [duff]
2016
+ * CyberSource: Update test and live URL [marquisong]
2017
+ * AuthorizeNet: Truncate nameOnAccount field [duff]
2018
+ * Tns: Fix ipAddress field [duff]
2019
+ * WorldNet: New gateway support [varyonic]
2020
+ * BraintreeBlue: Allow channel override [duff]
2021
+ * MerchantWarrior: Use Truncated Order Id [ThereExistsX]
2022
+
2023
+
2024
+ == Version 1.58.0 (March 1, 2016)
2025
+ * Move Electron check out of CreditCard into CreditCardMethods [ThereExistsX]
2026
+ * CardStream: Add AED and NZD currencies [sdball]
2027
+ * App55: Remove Gateway [ThereExistsX]
2028
+ * Mercury: Stripping the start and end sentinels on card-present track data for max-length track1 requests [ryanbalsdon]
2029
+ * SagePay: Update VISA Electron ranges [sdball]
2030
+ * Clearhaus: Make request signing more transparent & robust [sdball]
2031
+ * NCRSecurePay: Fix production URL [rwdaigle]
2032
+ * Add ACH support to Stripe [sdball]
2033
+ * PayPal Express: Fixing list of currencies without fractions [Krystosterone]
2034
+ * Cashnet: Default custcode option and proper redirect handling [rwdaigle]
2035
+ * TransFirst: Fix missing address and remove CC only fields for ACH [davidsantoso]
2036
+ * More prominent links to contribution docs [rwdaigle]
2037
+
2038
+
2039
+ == Version 1.57.0 (February 1, 2016)
2040
+ * AuthorizeNetCim: Add unmaskExpirationDate option [RamilGilmanov]
2041
+ * Element: Add gateway support [davidsantoso]
2042
+ * Cardstream: 3D-secure capture fix [duff]
2043
+ * Auth.net: Update store to create payment profiles [davidsantoso]
2044
+ * CyberSource: Add support for mdd_fields [duff]
2045
+ * Worldpay: Add support for verify [davidsantoso]
2046
+ * Element: Add guard clause to handle undocumented errors [davidsantoso]
2047
+ * Clearhaus: Add tests for signed requests [anellis]
2048
+ * Stripe: Support adding cards to account [anellis]
2049
+ * Clearhaus: Add text_on_statement option [anellis]
2050
+ * Payeezy: Void and verify support [davidsantoso]
2051
+ * Creditcall: Use ecommerce rather than cnp [duff]
2052
+ * Payeezy: Add support for echecks [davidsantoso]
2053
+ * Bridgepay: Add ability to store cards and pay with token [anellis]
2054
+ * Initial support for Android Pay network tokenization cards [mrezentes]
2055
+ * Transfirst: Fix exception when not all eCheck information is present [davidsantoso]
2056
+ * Auth.net: Add tests for echeck refunds [davidsantoso]
2057
+ * Transfirst: use default values for some eCheck data [davidsantoso]
2058
+ * Element: Update the live URL endpoint [davidsantoso]
2059
+ * Element: Parse responses from unexpected API errors [davidsantoso]
2060
+ * Transfirst: Remove unused fields for echeck [davidsantoso]
2061
+ * Sage: Internal refactoring into a single gateway class w/ common http conn [anellis]
2062
+ * Cardstream: Adjust authorize and capture transactions [anellis]
2063
+ * NCRSecurePay: New gateway support (Monetra white-label) [rwdaigle]
2064
+ * Element: Map ReferenceNumber to order_id [duff]
2065
+ * Element: Use a better MotoECICode default [duff]
2066
+ * BraintreeBlue: Return transaction id for failed transactions when available [prburke]
2067
+ * PayPal: Add InContextPaypalExpressGateway [xuorig]
2068
+ * TransFirst: CVV is a required tag [duff]
2069
+ * Checkout V2: Add Descriptor Name and City Options [anellis]
2070
+ * Forte: Pass order_id [anellis]
2071
+ * Merchant ESolutioins: Truncate order_id [anellis]
2072
+ * Transfirst Transaction Express: New gateway support [sdball]
2073
+ * Stripe: Add `stripe_account` header option [anellis]
2074
+ * Cardstream: Add AVS code and message [anellis]
2075
+ * Barclaycard Smartpay: New gateway support [curiousepic]
2076
+ * Transfirst: Fix missing address and remove CC only fields for ACH [davidsantoso]
2077
+ * Stripe: Support ACH payments [sdball]
2078
+ * NCRSecurePay: Fix production URL [rwdaigle]
2079
+ * Clearhaus: Make request signing more transparent & robust [sdball]
2080
+ * SagePay: Properly detect Electron brand [sdball]
2081
+ * Mercury: Fix for max-length track 1 [ryanbalsdon]
2082
+
2083
+
2084
+ == Version 1.56.0 (December 1, 2015)
2085
+ * Add Cardknox gateway [dlehren]
2086
+ * Mercury: Add support for card present track 2 [ryanbalsdon]
2087
+ * Cardstream: Improve default currency handling [duff]
2088
+ * Mercury: Strip start and end sentinels on track 2 [ryanbalsdon]
2089
+ * Redsys: Support new SHA256 authentication method [davidsantoso]
2090
+ * Cashnet: Allow custcode override [duff]
2091
+ * Add Rails 5 support [rafaelfranca]
2092
+ * Set required Ruby version for install to 2 or greater [rafaelfranca]
2093
+ * JetPay: Pass ud_fields in capture too [duff]
2094
+ * Stripe: Correctly detect test mode refunds [aprofeit]
2095
+ * Fix variables in remote gateways test template [sdball]
2096
+ * Micropayment: Update fieldnames for new API [duff]
2097
+ * Fix CreditCard#valid_number? erroring on non-digit characters [PatrickTulskie]
2098
+ * Stripe: Correctly detect test mode voids [methodmissing]
2099
+ * Garanti: Add test mode URL and update remote test credentials [cbilgili]
2100
+ * Cashnet: Allow custcode override on refund [duff]
2101
+ * Omise: Add a new optional api_version config [zdk]
2102
+ * Elavon: Include IP address in purchase and authorize requests [aprofeit]
2103
+ * TransFirst: Add support for ACH and more operations [davidsantoso]
2104
+ * FirstData_e4: Fix void for even dollar transactions [duff]
2105
+
2106
+ == Version 1.55.0 (November 9, 2015)
2107
+ * CyberSource: send customer IP address when provided [fastjames]
2108
+ * Braintree: Simplify Braintree scrubbing when no transcript [duff]
2109
+ * AuthorizeNet: Allow market_type override [duff]
2110
+ * FirstData_e4: Support level_2 data [duff]
2111
+ * FirstData_e4: Fix level_2 and level_3 [duff]
2112
+ * MerchantWareFour: Use Void not PreAuthorizationVoid [duff]
2113
+ * JetPay: Allow partial captures [duff]
2114
+ * Creditcall: Fix production url [duff]
2115
+ * FirstData_e4: Fix float error in Void [duff]
2116
+ * Micropayment: Upgrade to new API [mrezentes]
2117
+ * Netbilling: Add order_id to user_info [mrezentes]
2118
+ * Stripe: scrub swipe/track, EMV data out of gateway transcripts [girasquid]
2119
+ * Remove integration_mode [mattfawcett]
2120
+ * Allow setting CVV requirement at instance level [fabiokr]
2121
+ * Add SecurionPay gateway [szajbus]
2122
+ * AuthorizeNet: Don't send currency to void [duff]
2123
+ * Add Komoju gateway [k2nr]
2124
+ * Replace Connection magic numbers with constant references [larrylv]
2125
+ * Add CAMS gateway [trevorgrayson]
2126
+ * PayPal Express: Fix AllowedPaymentMethod [edclements]
2127
+ * Litle: Store credit card from PayPage [dontmatta]
2128
+ * Orbital: Deprecate profile management API [ntalbott]
2129
+ * FirstData e4: Honor currency when supplied [tchill]
2130
+ * Authorize.net: Add config_error standard error code [andrewpaliga]
2131
+ * PayPal Express: Add support for TotalType in SetExpressCheckout [gingerhendrix]
2132
+ * eWay Rapid: Add :invoice option [DylanFM]
2133
+ * Braintree: Add nonce payment method [eric1234,cwoodcox]
2134
+ * Payflow: Allow passing of 3D Secure details via options [marquisong]
2135
+ * Elavon: Support capture via CCCOMPLETE without credit card [marquisong]
2136
+ * Securenet: Allow setting test_mode independently [wedstar]
2137
+ * Replace Base.integration_mode and Base.gateway_mode with just Base.mode [aprofeit]
2138
+ * Micropayment: Allow specification of a project [duff]
2139
+ * QuickpayV10: Truncate order_id [duff]
2140
+ * FirstData_e4: Fix Level 2 data [duff]
2141
+ * Remove some duplication around name handling [duff]
2142
+ * FirstData_e4: Support Tax1Number [duff]
2143
+ * Add Transact Pro gateway [varyonic]
2144
+ * Add Payeezy gateway [huoxito]
2145
+ * USAePay: Add test mode setting via options [marquisong]
2146
+ * Add Clearhaus gateway [dinesh]
2147
+ * WorldpayOnlinePayments: Fix logic to determine success [ao]
2148
+ * Paymill: store order_id in description field [nikoloff]
2149
+ * TWD isn't a zero decimal currency [duff]
2150
+ * PaypalExpress: Use custom zero decimal currencies [duff]
2151
+ * Stripe: Migrate from /refund to /refunds [matthelm]
2152
+ * Bogus: Adding basic EMV support [ryanbalsdon]
2153
+ * PayBox Direct: Refunds and working test credentials [ivanfer]
2154
+ * Vanco: Handle case of no billing_address [duff]
2155
+ * BluePay: Add support for CUSTOM_ID2 field [ajporterfield]
2156
+ * Creditcall: Handle no verification_value [duff]
2157
+
2158
+ == Version 1.54.0 (October 2, 2015)
2159
+ * Beanstream: Add Network Tokenization support [girasquid]
2160
+ * CenPOS: Allow order_id on void [duff]
2161
+ * Provide better insight to CVV usage in requests [davidsantoso]
2162
+ * Ogone: Add verify [duff]
2163
+ * Beanstream: Add verify [mrezentes]
2164
+ * PayPal: Map standard error codes [JakeCataford]
2165
+ * Checkout.com: Fix an issue with empty phone numbers. [anotherjosmith]
2166
+ * Quickpay: Edit store and add ability to purchase with stored card [anellis]
2167
+ * Stripe: Set `receipt_email` to Stripe request if receipt delivery is requested [miccheng]
2168
+ * Worldpay US: Add eCheck support [mrezentes]
2169
+ * FirstData_e4: add level_3 data [mrezentes]
2170
+ * Vanco: Support passing ip address [duff]
2171
+ * Paybox Direct: Currency parsing fix [ivanfer]
2172
+ * QuickpayV10: Remove currency requirement from store. [anellis]
2173
+ * Raven: Use TLS 1.2 endpoint [bslobodin]
2174
+
2175
+ == Version 1.53.0 (September 1, 2015)
2176
+
2177
+ * Redsys: Add a number of currencies [agseco]
2178
+ * Raven: update description, test url, and routing; fix tests [bslobodin]
2179
+ * Raven: do not pass default (incorrect) PaymentType to #void [bslobodin]
2180
+ * Add scrubbing to a number of gateways [anellis]
2181
+ * BluePay: Add scrubbing [anellis]
2182
+ * BraintreeBlue: Allow custom logger [duff]
2183
+ * MerchantWareFour: Truncate invoiceNumber [duff]
2184
+ * S5: Pass recurrence_mode in store [duff]
2185
+ * QuickPay: Support 2-letter country codes in V10 API [girasquid]
2186
+ * Stripe: Support validate:false field on store [anellis]
2187
+ * CheckoutV2: Use correct live_url [duff]
2188
+ * QuickPay: strip # from Order IDs before submission [girasquid]
2189
+ * Litle: Use schema version 9.4 rather than 8.18 [anellis]
2190
+ * Litle: Add decrypted apple_pay [anellis]
2191
+ * QuickPay: fix method signature on #void [girasquid]
2192
+ * Forte: Add gateway [davidsantoso]
2193
+ * Stripe: return refund id for refund authorization [anellis]
2194
+ * Paypal: Update api version [anellis]
2195
+ * TNS: Translate countries to alpha3 codes [anellis]
2196
+ * TNS: Handle non existent country [duff]
2197
+ * TNS: Rescue Errors [anellis]
2198
+ * CenPOS: Support avs_result and cvv_result [tjstankus]
2199
+ * Stripe: Add application fee only on non-EMV transactions [bizla]
2200
+ * Stripe: don't send blank, non-nil values [girasquid]
2201
+ * Ogone: Send different auth type for mastercard [anellis]
2202
+ * Cardstream: Add "type" field support [rwdaigle]
2203
+ * Cardstream: 3dsecure transaction option [rwdaigle]
2204
+ * Paystation: Map order_id to non-unique merchant reference field [anellis]
2205
+ * Cardstream: Check for nil street address [anellis]
2206
+ * Checkout.com and CheckoutV2.com: Update country list [duff]
2207
+ * Cardstream: Handle nil addresses [rwdaigle]
2208
+ * MiGS: Allow passing in currency [alovak]
2209
+ * [POSSIBLE BREAKAGE] NMI: No longer use auth.net emulator [rwdaigle]
2210
+ * SecureNet: Add DEVELOPERID if supplied [wedy]
2211
+ * Braintree: Update country list [duff]
2212
+ * NMI: Don't include dup_seconds if nil [rwdaigle]
2213
+ * QuickPay: Make all operations to v10 platform synchronous [ta]
2214
+ * QuickPay: Handle issue where no operations exists on payment [ta]
2215
+ * NMI: Support merchant_defined_fields [duff]
2216
+ * QuickpayV10: Add verify [anellis]
2217
+ * BraintreeBlue: Use wiredump_device for logging only if present [braintreeps]
2218
+ * QuickpayV10: Add scrubbing [anellis]
2219
+ * QuickPayV10: Change tests to point to proper gateway [anellis]
2220
+ * Monei: Add default options argument [davidgf]
2221
+ * Ogone: Add additional 3d-secure parameters [ntalbott]
2222
+ * Ogone: Refactor signature calculation [ntalbott]
2223
+ * Add Creditcall gateway [davidsantoso]
2224
+ * Redsys: Fix scrubbing for failed transactions [davidsantoso]
2225
+ * Micropayment: Support Micropayment gateway [rwdaigle]
2226
+ * USAePay: Use names from the given billing and shipping address [marquisong]
2227
+ * Stripe: Add application fee on EMV authorize calls [bizla]
2228
+
2229
+ == Version 1.52.0 (July 20, 2015)
2230
+
2231
+ * Authorize.Net: Add device type to authorize.net retail requests [abecevello]
2232
+ * Vanco: Change transaction type to WEB for echecks [duff]
2233
+ * PayPal: Allow soft descriptor to be specified [davidsantoso]
2234
+ * Authorize.net: Add disable_partial_auth field [anellis]
2235
+ * SagePay: Add apply_avscv2 field [anellis]
2236
+ * S5: Add Store [anellis]
2237
+ * Merchant Ware v4: Add support for verify [davidsantoso]
2238
+ * Mercury: No longer default to allow partial auth [duff]
2239
+ * PayPal: Fix soft_descriptor and support soft_descriptor_city [duff]
2240
+ * Merchant Ware: Add scrubbing [davidsantoso]
2241
+ * Stripe: Make purchase via vaulted card consistent [duff]
2242
+ * Moneris: Add network tokenization support [andrewpaliga]
2243
+ * Ogone: Allow specifying a timeout value for requests [tomhipkin]
2244
+ * PayU India: Increase allowed txnid to 30 characters [ntalbott]
2245
+ * Authorize.Net: Allow passing device type through options, make wireless POS the default [abecevello]
2246
+ * Authorize.Net: Update to new Akamai URL [taf2]
2247
+ * Braintree: Add hold_in_escrow [anellis]
2248
+ * Stripe: Allow purchases with tokens without customer specification [bizla]
2249
+
2250
+ == Version 1.51.0 (July 2, 2015)
2251
+
2252
+ * Garanti: Illegal character '&' parsing response [masaruhoshi]
2253
+ * Stripe: Revert force USD for verify [duff]
2254
+ * Litle: Surface XML validation errors in the response [jasonbosco]
2255
+ * Litle: Pass the credit card verification value for tokenization (#store) requests, if one is set. [jasonbosco]
2256
+ * S5: Make scrubbing regex less greedy [duff]
2257
+ * CardStream: Add support for verify [anellis]
2258
+ * Authorize.net: UTF-8 encode requests [duff]
2259
+ * Banwire: Add default email [anellis]
2260
+ * PayU India: Handle bad JSON [ntalbott]
2261
+ * Dibs: Pass CVC param only if there's a value [bruno]
2262
+ * Sage: Credit really is credit not refund [duff]
2263
+ * Sage: Add ability to refund [duff]
2264
+ * Cardstream: Add scrubbing [anellis]
2265
+ * Litle: Add debt_repayment_flag [duff]
2266
+ * iATS: Support ACH [rwdaigle]
2267
+ * CheckoutV2: Add Gateway [anellis]
2268
+ * CenPOS: Fix refund amount issue [duff]
2269
+ * Add error_code mapping and error_code_from to gateway generator [jnormore]
2270
+ * Stripe: Parse EMV ARC from error response [bizla]
2271
+ * Redsys: Add MYR currency [agseco]
2272
+ * Add "contactless" flag to credit card model [davidseal]
2273
+ * Stripe: Add "contactless" flag support to gateway [davidseal]
2274
+ * Add encrypted_pin data to credit card model [ryanbalsdon]
2275
+ * Stripe: Add encrypted_pin support to gateway [ryanbalsdon]
2276
+ * Stripe: Support mapping advanced decline codes to standard codes [abecevello]
2277
+ * Epay: filter out invalid characters in returned URLs [dwradcliffe]
2278
+ * Redsys: Strip leading zeroes from currency codes [agseco]
2279
+ * Authorize.net: Add invoice information to refund [marquisong]
2280
+ * Authorize.net: Add store ability [duff]
2281
+ * Paystation: Add refund [mrezentes]
2282
+ * Paystation: No longer require order_id everywhere [duff]
2283
+ * Checkout: Support descriptor_name and descriptor_city [duff]
2284
+ * Add supports_network_tokenization? to gateways [jnormore]
2285
+ * Bpoint: Handle message for invalid login [anellis]
2286
+ * TransFirst: Add scrubbing [davidsantoso]
2287
+ * TransFirst: Add back a few request fields [davidsantoso]
2288
+
2289
+
2290
+ == Version 1.50.0 (June 1, 2015)
2291
+
2292
+ * Vanco: Add gateway [duff]
2293
+ * Conekta: Move device fingerprint to root [MauricioMurga]
2294
+ * Conekta: Change default language to Spanish [MauricioMurga]
2295
+ * Vanco: Improve authentication handling [duff]
2296
+ * Vanco: Allow specification of fund_id [duff]
2297
+ * S5: Add gateway [davidsantoso]
2298
+ * SecureNet: Truncate order_id [duff]
2299
+ * [POSSIBLE BREAKAGE] Stripe: Be explicit about API version [duff]
2300
+ * Dibs: Add gateway [mrezentes]
2301
+ * Dibs: Rubyize merchant_id and secret_key [mrezentes]
2302
+ * Stripe: Add support for reverse_transfer [duff]
2303
+ * USA ePay: Add support for manual entry indicator [AnotherJoSmith]
2304
+ * Authorize.Net: Add support for manual entry indicator [AnotherJoSmith]
2305
+ * CenPOS: Change description to invoice_detail [mrezentes]
2306
+ * BPoint: Add gateway [tjstankus]
2307
+ * S5: Remove address requirement for purchase and authorize [davidsantoso]
2308
+ * Vanco: Add support for eChecks [duff]
2309
+ * Remove Adyen support [ntalbott]
2310
+ * CenPOS: Use ProcessCreditCard action [duff]
2311
+ * CASHnet: uri encode the merchant gateway name [mrezentes]
2312
+ * S5: Include card brand in request body [davidsantoso]
2313
+ * Vanco: Handle multiple error responses [duff]
2314
+ * Merchant Partners gateway support [rwdaigle]
2315
+ * BPoint: Update params to contain all response data [tjstankus]
2316
+ * BPoint: Support biller_code in options [tjstankus]
2317
+ * Sagepay: Add Verify [anellis]
2318
+ * S5: Build XML with UTF-8 encoding [tjstankus]
2319
+ * Cashnet: Handle unparsable response body [duff]
2320
+ * CenPOS: Allow specification of customer_code [duff]
2321
+ * Allied Wallet: Add gateway [anellis]
2322
+ * S5: set Regex closure on scrubbing method [davidsantoso]
2323
+ * Dibs: Require TLSv1 [duff]
2324
+ * Optimal: Handle case of no billing address [duff]
2325
+ * Omise: Add gateway [zdk]
2326
+ * CenPOS: Simplify currency handling [duff]
2327
+ * Beanstream: Don't treat redirect as success [aprofeit]
2328
+ * Add PayU India gateway [ntalbott]
2329
+ * NetBilling: Require TLSv1 [duff]
2330
+ * S5: Handle recurring transactions without CVV [davidsantoso]
2331
+ * Stripe: Force USD for verify [duff]
2332
+ * PayU India: Prevent shadowing in response parsing [ntalbott]
2333
+ * QuickPay: Add support for v10 API [ta]
2334
+ * Fat Zebra: Fix refund and store signatures [duff]
2335
+ * Fat Zebra: Allow transactions without a CVV [duff]
2336
+
2337
+ == Version 1.49.0 (May 1, 2015)
2338
+
2339
+ * Braintree: Add support for AVS error codes [ivanvfer]
2340
+ * MerchantWarrior: Truncate description field [duff]
2341
+ * Braintree: Add service_fee_amount option [duff]
2342
+ * SecureNet: Allow shipping_address[:name] [duff]
2343
+ * MonerisUS: Add verify [mrezentes]
2344
+ * Ezic: Add gateway [duff]
2345
+ * Stripe: Add destination field [cwise]
2346
+ * SecureNet: Fix ordering of shipping field names [duff]
2347
+ * SecurePayAu: Update API URL [girasquid]
2348
+ * Stripe: Add EMV "chip & sign", "chip & offline PIN" and Maestro support [bizla]
2349
+ * Add Errno::EHOSTUNREACH to NetworkConnectionRetries::DEFAULT_CONNECTION_ERRORS [randito78]
2350
+ * Stripe: Add support for idempotency keys [michaelherold]
2351
+ * WePay: Handle JSON::ParserError exceptions [duff]
2352
+ * Borgun: Update country list and homepage url [mrezentes]
2353
+ * AuthorizeNet: Add cvv to request only if it's valid [tjstankus]
2354
+ * Stripe: Bug fix: add amounts only on non-EMV transactions, temporarily omit EMV testcases [bizla]
2355
+ * Ezic: Add support for void [duff]
2356
+ * iATS: Update supported countries [mrezentes]
2357
+ * Ezic: Update supported countries [duff]
2358
+ * AuthorizeNet: Truncate card number [tjstankus]
2359
+
2360
+ == Version 1.48.0 (April 8, 2015)
2361
+
2362
+ * Clean up `rake gateways:hosts` output [ntalbott]
2363
+ * Add Axcess MS gateway [timtait]
2364
+ * Add PayHub gateway [grepruby]
2365
+ * Orbital: Improve data formatting [boone]
2366
+ * [POSSIBLE BREAKAGE] USAePay Transaction: Make "void release" the default [dppcode]
2367
+ * Redsys: Add rudimentary vaulting [varyonic]
2368
+ * Exact: Handle 401 failures better [jefflaporte]
2369
+ * SagePay: make `VPSProtocol` user-configurable [boxofrad]
2370
+ * Netbilling: Add store support [cshepherd]
2371
+ * Add Qvalent gateway [markabe]
2372
+ * Expose proxy address and port to gateways [arkes]
2373
+ * Remove Ruby 1.9 [j-mutter]
2374
+ * Qvalent: Do not sent order.ipAddress when storing [markabe]
2375
+ * Qvalent: Fix argument name [bruno]
2376
+ * Qvalent: map card storage reference to authorization [markabe]
2377
+ * Qvalent: Fix scrub replacement, it was too greedy [markabe]
2378
+ * PayConex: Add gateway [duff]
2379
+ * AuthorizeNet: Add credit support [duff]
2380
+ * CenPOS: Add gateway [markabe]
2381
+ * Stripe: Update country list [markabe]
2382
+ * Add Monei.net gateway [leolara]
2383
+ * MerchantWarrior: Fix refund and capture signatures [duff]
2384
+ * CenPOS: Add support for capture and refund [markabe]
2385
+ * Authorize.net: Add support for network tokenization credit cards [jnormore]
2386
+ * Stripe: Add support for passing in metadata for auths and purchases [kitt]
2387
+ * Pin: Pass amount param for captures [ab9]
2388
+ * NAB Transact: Improve store functionality [duff]
2389
+ * Add Worldpay Online Payments [ao]
2390
+ * Fat Zebra: Add multi-currency support [nagash]
2391
+ * Fat Zebra: Add auth/capture capability [nagash]
2392
+ * Fat Zebra: Add soft descriptor support [nagash]
2393
+
2394
+ == Version 1.47.0 (February 25, 2015)
2395
+
2396
+ * Authorize.Net: Properly send name in shipping address line, when shipping address is provided [girasquid]
2397
+ * Payflow: Add verify support [ntalbott]
2398
+ * Capture ConnectionError#triggering_exception [ntalbott]
2399
+ * Flo2Cash: Map Reference->:order_id (not :invoice) [ntalbott]
2400
+ * Flo2Cash: Fix card brand handling [ntalbott]
2401
+ * Flo2Cash: Improve error handling & simplify "Simple" gateway [ntalbott]
2402
+ * Remove Vindicia gateway [mutemule]
2403
+ * Firstdata E4: Support other mastercard string [jcbantuelle]
2404
+ * Checkout: Disallow altering endpoint via options [markabe]
2405
+
2406
+ == Version 1.46.0 (January 20, 2015)
2407
+
2408
+ * CHANGE: drop `offsite_payments` and `active_utils` as dependencies. [wvanbergen]
2409
+ * CHANGE: remove `OffsitePaymentShim`. You will have to add offsite_payments as a dependency,
2410
+ and update any mentions of `ActiveSupport::Billing::Integration` to
2411
+ `OffsitePayments::Integrations`. [wvanbergen]
2412
+ * QuickBooks Payments: Add adapter [ivanfer, bizla]
2413
+ * Quickbooks: Remove requirement of oauth gem.
2414
+ * PayGate: Add support for refunds [StephanAtG2]
2415
+ * PayPal: Add #scrub for scrubbing PCI information out of HTTP transcripts [girasquid]
2416
+ * Stripe: Add #scrub for scrubbing PCI information out of HTTP transcripts [girasquid]
2417
+ * Cybersource: Add ability to verify a card [duff]
2418
+ * BraintreeBlue: Expose the error code in the response params [duff]
2419
+ * eWay Rapid: Update supported countries and card types [incarnate]
2420
+ * PayPal: Allow specifying ButtonSource at init [ntalbott]
2421
+ * Payflow: Add fraud_review support [ntalbott]
2422
+ * Add IPP gateway [InfraRuby]
2423
+ * Redsys: Fix order_id truncation [duff]
2424
+ * AuthorizeNet: Improve duplicate_window handling [duff]
2425
+ * PayPal: Fix ButtonSource bug [ntalbott]
2426
+ * Checkout: Prevent multiple trackids from being passed [markabe]
2427
+ * Pin: Handle JSON parsing exception in response [duff]
2428
+ * Improve test suite to test against multiple ActiveSupport versions [wvanbergen]
2429
+ * Misc. code cleanup [wvanbergen]
2430
+ * Add Flo2Cash gateway [markabe]
2431
+ * Litle: Allow order_source override [duff]
2432
+ * Quickpay: Add ability to finalize a capture [askehansen]
2433
+ * AuthorizeNet: Prevent test mode using live gateway [duff]
2434
+ * Add Flo2Cash Simple gateway [markabe]
2435
+
2436
+ == Version 1.45.0 (December 1, 2014)
2437
+
2438
+ * HPS: Always pass CardHolderData element [SecureSubmit, ntalbott]
2439
+ * PayJunction: Include 'track' parameter if provided [hron]
2440
+ * WebPay: Fix API calls [tomykaira]
2441
+ * Moneris US: Add store, unstore, and update [AntoineInsa]
2442
+ * Moneris US: Add CVV and AVS [AntoineInsa]
2443
+ * Stripe: Add support for statement_description [markabe]
2444
+ * CASHNet: Add support for fname and lname [markabe]
2445
+ * Orbital: Fix customer profile auth/purchase [denis]
2446
+ * Payex: Fix expiry month to allow 4 digit year [duff]
2447
+ * Cashnet: Allow overriding custcode [hoenth]
2448
+ * Cashnet: Fix overridding item_code per transaction [ntalbott]
2449
+ * Add Checkout.com gateway [ravish-ramrakha-cko]
2450
+ * HPS: Add verify support [SecureSubmit]
2451
+ * Add Bank Frick gateway [varyonic]
2452
+ * Add Global Transport gateway [duff]
2453
+ * iATS: Add #store and #unstore [duff]
2454
+ * Authorize.Net: Fix amount formatting [ntalbott]
2455
+ * Authorize.Net: Truncate order_id to 20 characters [ntalbott]
2456
+ * Authorize.Net: Truncate more fields [duff]
2457
+ * Authorize.Net: Truncate invoiceNumber [ntalbott]
2458
+ * Adyen: Add support for verify operation [duff]
2459
+ * USAePay: Add track_data support [louiskearns]
2460
+ * Payex: Use the right url for the purchase call [duff]
2461
+ * Braintree: Allow dynamic descriptors [duff]
2462
+ * Openpay: Add support for device session id [guillermo-delucio, ismaelem]
2463
+ * Redsys: Add support for verify [duff]
2464
+ * Redsys: Handle unknown currencies [duff]
2465
+ * Stripe: Make #unstore signature consistent [duff]
2466
+ * Remove defunct Samurai gateway [ntalbott]
2467
+ * eWay Rapid: Tweak authorization support [duff]
2468
+ * Litle: Add support for dynamic descriptors [duff]
2469
+ * Add TNS gateway [markabe]
2470
+ * TNS: Update countries and supported card types [markabe]
2471
+ * Conekta: Add AMEX as a supported card type [MauricioMurga]
2472
+ * Checkout: pass through currency type [markabe]
2473
+ * Bogus: return standard error codes [jpcaissy]
2474
+ * Add PaymentToken and ApplePayPaymentToken objects for token-based transactions [bizla]
2475
+ * Authorize.Net: Add ApplePay in-app transaction support [bizla]
2476
+ * Stripe: Add ApplePay in-app transaction support [bizla]
2477
+ * eWAY Rapid: Add PartnerID param [j-mutter]
2478
+ * GlobalTransport: Truncate order_id [duff]
2479
+ * Redsys: Allow a description to be specified [duff]
2480
+ * NetworkMerchants: Fix currency [j-mutter]
2481
+ * Redsys: Improve handling of order_id [duff]
2482
+ * Checkout: Add support for void, refund, and verify [markabe]
2483
+
2484
+ == Version 1.44.1 (Aug 28, 2014)
2485
+
2486
+ * Allow SSLv3 for PsiGate [mutemule]
2487
+ * Set default :state to n/a for NetworkMerchants [cjoudrey]
2488
+
2489
+ == Version 1.44.0 (Aug 21, 2014)
2490
+
2491
+ * Moneris: Add :avs_enabled option [bslobodin]
2492
+ * Stripe: Populate authorization in failed responses, when available [bslobodin]
2493
+ * Moneris: Use the name on the card [duff]
2494
+ * Balanced: More 1.1 API fixes and mappings [ntalbott]
2495
+ * Balanced: Handle "pending" refunds [duff]
2496
+ * Immediately convert credit card date fields to integers [ntalbott]
2497
+ * Balanced: Handle outside card tokens [ntalbott]
2498
+ * Balanced: Do not pass address if zip is missing [ntalbott]
2499
+ * Float active_utils at the patch version instead of the minor version [nwjsmith]
2500
+ * Wirecard: Fix CVV & AVS response handling [alevett]
2501
+ * Consolidate deprecation handling [ntalbott]
2502
+ * Authorize.Net CIM: Do not send x_test_request [danrabinowitz]
2503
+ * Authorize.Net CIM: Pass delimiter through [jsoma]
2504
+ * HPS: Add support for track data [SecureSubmit]
2505
+ * HPS: Fix processing without an address [SecureSubmit]
2506
+ * Balanced: Do not pass address if zip is blank [duff]
2507
+ * Do CreditCard attribute cleanup at assignment [ntalbott]
2508
+ * eWay Rapid: Add auth/capture/void support [ntalbott]
2509
+ * [POSSIBLE BREAKAGE] Remove dependency on active_utils Validateable [ntalbott]
2510
+ * Make all active_utils requires explicit [ntalbott]
2511
+ * Balanced: Handle legacy card tokens [ntalbott]
2512
+ * Braintree Blue: Default verification merchant id [speric]
2513
+ * [POSSIBLE BREAKAGE] Extract integrations into an offsite_payments gem [ntalbott]
2514
+ * [POSSIBLE BREAKAGE] Drop stated/tested compatibility with Rails < 3.2 [ntalbott]
2515
+ * Stop requiring unused CurrencyCode class from active_utils [ntalbott]
2516
+ * Move ActiveMerchant::Error into ActiveMerchant [ntalbott]
2517
+ * Inline RequiresParameters in Gateway & move Country from active_utils [ntalbott]
2518
+ * Quickpay v7: Fix passing acquirers field [moklett]
2519
+ * Quickpay v7: Pass an amount when storing cards [ta & moklett]
2520
+ * Quickpay: Expand list of supported countries [ta]
2521
+ * Validate CreditCard verification value [mnoack]
2522
+ * Authorize.Net CIM: Allow updating a payment profile without a full credit card number [speric]
2523
+ * Wirecard: Add optional CommerceType element [timtait]
2524
+ * Add Borgun gateway [markabe]
2525
+ * [POSSIBLE BREAKAGE] NAB Transact: Allow timeout customization [duff]
2526
+ * Wirecard: Add card store and purchase/authorize by reference [speric]
2527
+ * Worldpay: Add support for Switch cards [dougal]
2528
+ * FirstData e4: Send correct card type [npverni]
2529
+ * Elavon: Add store/update support [npverni]
2530
+ * Wirecard: Catch an empty ERROR <Message> Element [timtait]
2531
+ * Finansbank (CC5): Add void/refund/credit support [muhammetdilek]
2532
+ * Wirecard: Use authorization_check for Amex store [npverni]
2533
+ * Elavon: Make void work for authorizations [duff]
2534
+ * Add Commercegate gateway [vitaliyvasin]
2535
+ * Wirecard: Fix "amex" references [mendable]
2536
+ * HPS: Do not pass empty elements [SecureSubmit]
2537
+ * Paymill: Add more supported card types [nikoloff]
2538
+ * Paymill: Add source [nikoloff]
2539
+ * Paymill: Add description for preauthorizations [nikoloff]
2540
+ * Paymill: Add remote tests using tokens [nikoloff]
2541
+ * HPS: Add developer, version number and site trace options [SecureSubmit]
2542
+ * Update 1stPayGateway.Net gateway [rwdaigle]
2543
+ * Payflow: Add verbosity option [doppler]
2544
+ * Allow ignoring the result of any MultiResponse step [ntalbott]
2545
+ * Stripe: Add ability to verify a card [duff]
2546
+ * Paypal: Add ability to verify a card [duff]
2547
+ * Authorize.net: Add ability to verify a card [duff]
2548
+ * Braintree: Add ability to verify a card [duff]
2549
+ * Enhance gateway generator to support verify [duff]
2550
+ * PayPal Express: Add funding source support [baraabourghli]
2551
+ * Optimal: Add IP address to requests [justinplouffe]
2552
+ * Pin: Add authorize & capture support [keithpitt]
2553
+ * Pin: Add update support [keithpitt]
2554
+ * Vindicia: Stop using the vindicia-api gem [ntalbott]
2555
+ * Clean up the warnings fog [ntalbott]
2556
+ * Quickpay: Map options[:ip] for fraud analysis [ta]
2557
+ * SagePay: Truncate fields [duff]
2558
+ * First Data E4: Add ability to verify a card [duff]
2559
+ * Elavon: Add ability to verify a card [duff]
2560
+ * Worldpay: Pass email and IP address [duff]
2561
+ * Worldpay: Use updated address format [duff]
2562
+ * Moneris: Fix address splitting [ntalbott]
2563
+ * FirstData E4: Allow passing CAVV through [Senjai]
2564
+ * Braintree Blue: Remember the capture transaction id [duff]
2565
+ * Eway Rapid: Truncate some fields [duff]
2566
+ * Optimal Payment: Make account mandatory field [rwdaigle]
2567
+ * Worldpay: Improve address defaulting [duff]
2568
+ * Authorize.Net: Add maestro as a supported card type [vparihar01]
2569
+ * Worldpay: Improve address defaults [duff]
2570
+ * Braintree Blue: Pass cardholder_name when tokenizing [radar]
2571
+ * Wirecard: Improve error handling [mendable]
2572
+ * Litle: Add verify support [markabe]
2573
+ * USAePay: Add verify support [markabe]
2574
+ * BridgePay: Add verify support [duff]
2575
+ * Braintree Blue: Add payment_method_token flag [JDutil]
2576
+ * SagePay: Add optional FI fields [rob-anderson]
2577
+ * Iridium: Add AVS and CVV results [X0Refraction]
2578
+ * NAB Transact: Add credit support [nagash]
2579
+ * Braintree Blue: Add application_id support [npverni]
2580
+ * Realex: Add maestro mapping [uriklar]
2581
+ * Add Worldpay US gateway [markabe]
2582
+ * Cybersource: Add shipping address [pkoppula]
2583
+
2584
+ == Version 1.43.2 (May 12, 2014)
2585
+
2586
+ * Remove 2Checkout's #line_item due to conflict with Klarna/Shopify [edward]
2587
+ * Auth.Net CIM: Fix ordering of order/trans_id [pdamer]
2588
+ * Add PagoFacil gateway [bhserna, abisosa]
2589
+ * [POSSIBLE BREAKAGE] Stripe: Allow for updating of stored card [speric]
2590
+ * Authorize.Net: Deprecate ARB [ntalbott]
2591
+ * Authorize.Net CIM: Add recurring billing flag [gabealmer]
2592
+ * Spreedly: Add support for :ip [megamoose]
2593
+ * PayPal Express: Improve received_at handling [jwarchol]
2594
+ * PayPal Express: Add ReqBillingAddress flag [johnb-razoo]
2595
+ * Beanstream: Add support for Legato single use tokens [tylerrooney]
2596
+ * PayPal Digital Goods: Allow mobile [tomprats]
2597
+ * Maxipago: Add installment support [alexandremcosta]
2598
+ * Deprecate recurring API support [ntalbott]
2599
+ * NMI: fix CreditCard check [bslobodin]
2600
+ * SagePay: Add tokenization support [kernow]
2601
+ * PayPal Express: Reference transaction details [lrostovsky]
2602
+ * Balanced: Update to API 1.1 [steveklabnik]
2603
+ * Add Cashnet gateway [hoenth]
2604
+ * Conekta: Standardize address options [MauricioMurga]
2605
+ * Wirecard: Add support for reference purchases [timtait]
2606
+ * Worldpay: Add support for external references [matsubo]
2607
+ * Balanced: Voiding a capture is not allowed [duff]
2608
+ * Add HPS gateway (Heartland Payment Systems) [SecureSubmit]
2609
+ * Balanced: Fix handling of 500 errors [ntalbott]
2610
+ * Universal: Remove all billing address fields [bslobodin]
2611
+ * Balanced: Stop creating a customer on each call [ntalbott]
2612
+ * Balanced: Refactor and handle legacy authorizations [ntalbott]
2613
+ * SagePay Form: Update to v3.00 [bslobodin]
2614
+ * GestPay: Use a more specific error class when parsing [odorcicd]
2615
+ * PagSeguro: Improve error handling [celsodantas]
2616
+ * PxPay: Support for newer, query-less redirect URLs [odorcicd, bslobodin]
2617
+ * eWAY Rapid: Update to 3.1 API [atomgiant]
2618
+ * Misc refactorings [justinplouffe]
2619
+ * Remove greedy rescue, and convert some errors to be user-facing [odorcicd]
2620
+ * PayPal Express: pass logo image for setup request [dimko]
2621
+ * Improve credit card validation [duff]
2622
+
2623
+ == Version 1.43.1 (May 1, 2014)
2624
+
2625
+ * Merchant Warrior: Scrub names [duff]
2626
+ * Validate Gateway.supported_countries [rwdaigle]
2627
+ * Stripe: Add recurring flag support [bslobodin]
2628
+ * Stripe: Use localized amounts for currencies w/o minor units [bslobodin]
2629
+ * WebPay: Leverage fixes to Stripe to remove duplicate code [bslobodin]
2630
+ * Klarna: Miscellanenous fixes [edward]
2631
+ * Mollie iDEAL: Use order's description [wvanbergen]
2632
+
2633
+ == Version 1.43.0 (April 24, 2014)
2634
+
2635
+ * PagSeguro: New offsite integration [celsodantas]
2636
+ * Sage Pay: Fix amount parsing in notifications [berkcaputcu]
2637
+ * Sage Pay: Use API v3.00 [bslobodin]
2638
+ * BridgePay: Switch method of success detection [markabe]
2639
+ * BridgePay: Use Return as TransType for refunds [markabe]
2640
+ * IATS: Complete rewrite using first class API [rwdaigle]
2641
+ * IATS: Fix invalid country code UK -> GB [rwdaigle]
2642
+ * DataCash: Fix refund processing using original authorization [bslobodin]
2643
+ * Transnational gateway renamed to Network Merchants [bslobodin]
2644
+ * PayMill: Handle non-JSON server responses [bslobodin]
2645
+
2646
+ == Version 1.42.9 (April 15, 2014)
2647
+
2648
+ * Spreedly: Add ip, description and gateway_specific_fields [faizalzakaria]
2649
+ * Sage (US): Support store/unstore of cards [rwdaigle]
2650
+ * Pin: Add american express to supported cards [nagash]
2651
+ * Raven: Update handling of CVV/AVS [bslobodin]
2652
+ * Raven: Use UUID for RequestID [bslobodin]
2653
+
2654
+ == Version 1.42.8 (April 4, 2014)
2655
+
2656
+ * Cecabank: Handle invalid xml response body [duff]
2657
+ * Wirecard: Capture error code in the response [duff]
2658
+ * Litle: Remove gem dependency [duff]
2659
+ * Litle: Fix case of missing address parts [duff]
2660
+ * Universal: Add universal offsite API implementation [bslobodin]
2661
+ * Iridium: Add more currencies [bslobodin]
2662
+ * iDeal: Add Mollie iDeal offsite implementation [wvanbergen, maartenvg]
2663
+
2664
+ == Version 1.42.7 (March 18, 2014)
2665
+
2666
+ * SagePay: Add support for ReferrerID [markabe]
2667
+ * Cecabank: Fix expiration date formatting [duff]
2668
+ * Add WePay gateway [faizalzakaria]
2669
+ * SmartPs: Add ECI option to SmartPs [odorcicd]
2670
+ * Rescue and re-raise ActionViewHelperError when offsite helpers raise an error [odorcicd]
2671
+ * Add FirstGiving gateway [faizalzakaria]
2672
+ * FirstGiving: Fix refunds [ntalbott]
2673
+ * Samurai: Handle server errors [ntalbott]
2674
+ * WePay: Fix refund [duff]
2675
+
2676
+ == Version 1.42.6 (February 24, 2014)
2677
+
2678
+ * Litle: Truncate order_id [duff]
2679
+ * Conekta: Fix #refund; respect :currency [leofischer]
2680
+ * SagePay: Truncate description field [duff]
2681
+ * Add Cecabank gateway [molpe]
2682
+ * Add Openpay [darkaz]
2683
+ * Openpay: Simplify test versus production mode [duff]
2684
+ * Wirecard: Handle a utf-8 description [duff]
2685
+ * Litle: Partial capture support [ttdonovan]
2686
+ * Ogone: Allow D3D for alias purchases [pwoestelandt]
2687
+ * USAePay Advanced: Fix verification_value mapping [dppcode]
2688
+ * Orbital: Add additional success conditions [boone]
2689
+ * Orbital: Handle special CVV responses [boone]
2690
+ * Balanced: Allow working with balanced.js [michaelherold]
2691
+ * Balanced: Allow passing customer name [michaelherold]
2692
+ * Balanced: Add support for meta [michaelherold]
2693
+ * Improve gateway generator [ntalbott]
2694
+ * Add maxiPago gateway [alexandremcosta]
2695
+ * Authorize.Net: Remove x_test_request support [ntalbott]
2696
+ * Conekta: Add default description [bslobodin]
2697
+ * Add PayDollar integration [bslobodin]
2698
+
2699
+ == Version 1.42.5 (February 7th, 2014)
2700
+
2701
+ * Add Doku Indonesia [bizla]
2702
+ * Cardstream: Update gateway to use latest API [odorcicd]
2703
+
2704
+ == Version 1.42.4 (January 8th, 2014)
2705
+
2706
+ * DataCash: Set 'ecomm' as capturemethod [DavidGeukers]
2707
+ * Cybersource: Fix subscriptions with a setup fee [ntalbott]
2708
+ * Stripe: Do not pass customer details to the /cards endpoint [michellebu]
2709
+ * Stripe: Allow Stripe API version to be initialized with the gateway [odorcicd]
2710
+
2711
+ == Version 1.42.3 (December 18th, 2013)
2712
+
2713
+ * Balanced: Add support for appears_on_statement_as [duff]
2714
+ * Authorize.Net: Make already actioned responses failures [odorcicd]
2715
+ * Add Payex gateway [atomgiant]
2716
+ * Paymill: Fix authorizations [duff]
2717
+ * Braintree Blue: Allow specifying the credit card token [ntalbott]
2718
+ * Braintree Blue: Allow specifying the customer id [ntalbott]
2719
+ * Braintree Blue: Scrub invalid emails and zips [ntalbott]
2720
+ * Braintree Blue: Return :credit_card_token as a top level param [ntalbott]
2721
+ * Braintree Blue: Allow unstoring just a credit card [ntalbott]
2722
+ * Braintree Blue: #store adds cards to existing customers [ntalbott]
2723
+ * USA ePay Advanced: Fix check handling [nearapogee]
2724
+ * USA ePay Advanced: Fix credit card expiration handling [nearapogee]
2725
+ * USA ePay Advanced: Fix handling of custom transaction responses for single items [nearapogee]
2726
+ * USA ePay Advanced: Fix capture amount [nearapogee]
2727
+ * NAB Transact: Fix merchant descriptor with capture/refund requests [nagash]
2728
+ * Braintree Blue: Add custom_fields & device_data parameters [parallel588]
2729
+ * Webpay: Add authorize & capture [keikubo]
2730
+ * MerchantWarrior: Pass description [duff]
2731
+ * Stripe: Separate email from description [duff]
2732
+ * Add Payscout gateway [llopez]
2733
+ * Merchant Warrior: Use billing_address [duff]
2734
+ * Add SoEasyPay gateway [ir-soeasycorp]
2735
+ * Bogus: Add check support [npverni]
2736
+ * Payflow: Add Check support [crazyivan]
2737
+ * Stripe: Allow expanding objects inline [odorcicd]
2738
+
2739
+ == Version 1.42.2 (November 13th, 2013)
2740
+
2741
+ * Renew public certificate
2742
+
2743
+ == Version 1.42.1 (November 13th, 2013)
2744
+
2745
+ * Signed version of 1.42.0
2746
+
2747
+ == Version 1.42.0 (November 13th, 2013)
2748
+
2749
+ * Fix NoMethodError "tr" for params with dash [TimothyKlim]
2750
+ * Authorize.Net: Add cardholder authentication options (CAVV) support [structure]
2751
+ * CardStreamModern: Added better checks on inputs from the gateway [ExxKA]
2752
+ * Stripe: Send :ip to the gateway instead of :browser_ip [f3ndot]
2753
+ * Wirecard Page: new offsite gateway [mbretter]
2754
+ * Mercury: Add support for requesting a token [kcdragon]
2755
+ * Add App55 gateway [ianbutler55]
2756
+ * UsaEpayTransaction: Support for split payments [GBH]
2757
+ * Add Swipe Checkout gateway [matt-optimizerhq]
2758
+ * Spreedly Core: Allow overriding the gateway token when running a transaction [hoenth]
2759
+ * Spreedly Core: Add order_id [hoenth]
2760
+ * Spreedly Core: Allow store without retain [hoenth]
2761
+ * Stripe: Support multiple cards on account [pierre]
2762
+ * Stripe: Add card_id parameter to unstore call [pierre]
2763
+ * Remove usage of `uname -a` [ntalbott]
2764
+ * Litle: Allow easier access to the response code [duff]
2765
+ * Stripe: Add the option to pass a version header [odorcicd]
2766
+ * Elavon: Update supported countries [duff]
2767
+ * Add Raven PacNet gateway [llopez]
2768
+ * BitPay: Fix BitPay issues and implement Notification#acknowledge [odorcicd]
2769
+
2770
+ == Version 1.41.0 (October 24th, 2013)
2771
+
2772
+ * Stripe: Payments won't fail when specifying a customer with a creditcard number [melari]
2773
+ * Add Conekta gateway [leofischer]
2774
+ * Wirecard: Add support for void and refund [duff]
2775
+ * Orbital: Mandatory field fix [juicedM3, jduff]
2776
+
2777
+ == Version 1.40.0 (October 18th, 2013)
2778
+
2779
+ * Paymill: Revert Add support for specifying the :customer [melari]
2780
+ * Quickpay: Make v7 of the API default [kvs]
2781
+ * Bitpay: Add return [tahnok]
2782
+
2783
+ == Version 1.39.2 (October 10th, 2013)
2784
+
2785
+ * Eway Rapid: Fix a bug with access codes that have equal signs in them [odorcic]
2786
+
2787
+ == Version 1.39.1 (October 9th, 2013)
2788
+
2789
+ * Bitpay: Invoice Fix [orenmazor]
2790
+
2791
+ == Version 1.39.0 (October 9th, 2013)
2792
+
2793
+ * Moneris: Add optional (off by default) verification_value support [duff]
2794
+ * Citrus: New Integration [viatechs, melari]
2795
+ * Payu Paisa: New Integration [melari]
2796
+ * Spreedly: Pass country with other address fields [hoenth]
2797
+ * SecureNet: Fix order of xml params [duff]
2798
+ * Paymill: Add support for void [duff]
2799
+ * Add MoneyMovers gateway [jeffutter]
2800
+ * Ogone: Add a :store_amount option [rymai]
2801
+ * Ogone: Require TLSv1 [ntalbott]
2802
+ * Moneris: Add support for purchasecorrection [pgib]
2803
+ * Spreedly: Add ability to retain on success [duff]
2804
+ * Spreedly: Pass verification value [duff]
2805
+ * Paymill: Add support for specifying the :customer [Sbastien]
2806
+ * Realex: Correct AVS input format [ExxKA]
2807
+ * USAEpay Transaction: Use sandbox when in test mode [radar]
2808
+ * Braintree Blue: Do not use global config [rdj]
2809
+ * eWay Rapid: Add response messages [BenZhang]
2810
+ * Paysbuy: Add 'Pending' notification status [divineforest]
2811
+ * Cybersource: Use standard :phone field [cade]
2812
+ * Orbital: Fix/tweak AVS codes [boone]
2813
+ * Quickpay: Add v7 support [larspind]
2814
+ * Authorize.Net CIM: Add option to not mark transactions as test [alanandrade]
2815
+
2816
+ == Version 1.38.1 (September 16, 2013)
2817
+
2818
+ * Moneris: Remove verification_value support [melari]
2819
+
2820
+ == Version 1.38.0 (September 6, 2013)
2821
+
2822
+ * FirstData E4: Include missing address information for AVS and CVV [melari]
2823
+ * Litle: Deprecate credit method in favor of refund [melari]
2824
+ * Moneris: Add verification_value support [duff]
2825
+ * Webpay: Fixes issues with partial JPY currency [keikubo, melari]
2826
+ * SecureNet: Add INVOICENUM and INVOICEDESC optional fields [duff]
2827
+ * Balanced: Make BalancedGateway::Error inherit from ActiveMerchantError [duff]
2828
+ * Balanced: Fix #void interface [duff]
2829
+ * HiTrust: Return correct error message for positive retcodes [melari]
2830
+ * Moving to pessimistic versioning [davefp]
2831
+
2832
+ == Version 1.37.0 (August 20, 2013)
2833
+
2834
+ * MerchantWarrior: Fix handling of amounts [duff]
2835
+ * Ipay88: New gateway [kamal, siong1987, jduff]
2836
+ * IATS: New gateway [unkown, jduff]
2837
+ * MerchantWarrior: Send the CVV to the gateway [duff]
2838
+ * PayU: Fix a major bug with status types [melari]
2839
+ * SecureNet: Allow production transactions [duff]
2840
+ * Stripe: Allow a card_not_present_fee to be specified [melari]
2841
+
2842
+ == Version 1.36.0 (August 2, 2013)
2843
+
2844
+ * Fat Zebra: More consistent handling of tokens [adrianmacneil]
2845
+ * Add Platron integration [alexwl]
2846
+ * Litle: Support wiredump_device [pierre]
2847
+ * Litle: support paypage registrations [pierre]
2848
+ * SecureNet: Cleanup and refactoring [duff]
2849
+ * Mercury: Proper refund and void support [opendining]
2850
+ * PaymentExpress: Return token in authorization [ntalbott]
2851
+ * Stripe: Support for partial application fee refunds [melari, odorcicd]
2852
+ * NMI: Support for recurring flag [duff]
2853
+ * SecureNet: Use working live url [duff]
2854
+
2855
+ == Version 1.35.1 (July 22, 2013)
2856
+
2857
+ * Stripe: Allow application_fees to be refunded via the refund_application_fee flag [melari]
2858
+
2859
+ == Version 1.35.0 (July 17, 2013)
2860
+
2861
+ * Add Barclays ePDQ Extra Plus gateway [ntalbott]
2862
+ * PayPal: Add MassPay payment to recipients by UserID [damonmorgan]
2863
+ * Authorize.Net: Add authorization_code to response params [noahlh]
2864
+ * Make Rails 4 a supported version [sanemat]
2865
+ * CyberSource: Add pinless debit card support [JoshMcKin]
2866
+ * Verkkomaksut: Add item title field [kaapa]
2867
+ * Add MerchantWare V4 gateway [hron]
2868
+ * Eway Rapid: Add #store method [adrianmacneil]
2869
+ * Barclays ePDQ Extra Plus: Use correct PROD url [ntalbott]
2870
+ * Hitrust: update test & live urls [melari]
2871
+ * NAB Transact: Add auth & capture support [nagash]
2872
+ * Mercury: Support card-less capture and refund [ntalbott]
2873
+ * Mercury: Support void [ntalbott]
2874
+
2875
+ == Version 1.34.1 (June 28, 2013)
2876
+
2877
+ * WorldPay: Add dynamic return URL [jordanwheeler]
2878
+ * Merchant One: New gateway [coteyr, melari]
2879
+ * Balanced: Fix exception for invalid email [duff]
2880
+ * Update supported countries for Paymill & PaymentExpress [duff]
2881
+ * Worldpay: Add support for diners club [duff]
2882
+ * Stripe: Include address with card data [melari]
2883
+
2884
+ == Version 1.34.0 (June 20, 2013)
2885
+
2886
+ * PayPal Express gateway: Add unstore support [duff]
2887
+ * Stripe: Send application_fee with capture requests [melari]
2888
+ * Make #unstore method signature consistent across gateways [duff]
2889
+ * Dwolla: Major bug fixes. [capablemonkey, melari]
2890
+ * Stripe: Add support for including track data [melari]
2891
+
2892
+ == Version 1.33.0 (May 30, 2013)
2893
+
2894
+ * Netaxept: Completely revamped to use the "M" service type [rbjordan3, ntalbott]
2895
+ * Litle: Void authorizations via an auth reversal [jrust]
2896
+ * Add RBK Money integration [england]
2897
+ * Direcpay: Update test url [ashish-d]
2898
+ * PayPal Express gateway: Add support for creating billing agreements [fabiokr]
2899
+ * PayPal Express gateway: Add reference authorizations [fabiokr]
2900
+ * Add Cardstream Modern gateway [ExxKA]
2901
+ * Pin: Fix special headers [duff]
2902
+ * PayPal Express gateway: Remember the billing agreement id as Response#authorization [duff]
2903
+ * PayPal Express gateway: Allow an amount of 0 [duff]
2904
+ * PayPal Express gateway: Reduce parameter requirements [duff]
2905
+ * Quickpay integration: Update notification parser to handle API v6 [larspind]
2906
+ * Sage gateway: Deprecate #credit call [duff]
2907
+ * Update notification generator to better match current notification class [lulalala]
2908
+ * Paymill gateway: Change .com -> .de [louiskearns]
2909
+ * Quickpay integration: Fix v6 response parsing [larspind]
2910
+ * First Data e4: Add TransArmor store/tokenization support [gabetax]
2911
+ * MerchantWarrior: Format expiration month/year correctly [klebervirgilio]
2912
+ * Add iconv for ActiveSupport 2.3 under Ruby 2.0 [sanemat]
2913
+ * Add Transnational gateway [bvandenbos]
2914
+ * Authorize.Net: Add Check as payment method [andrunix]
2915
+ * Merchant e-Solutions: Add ref number and recurring support [carlaares]
2916
+ * Bogus gateway: Add authorization to purchase response [hron]
2917
+ * Bluepay gateway: Fix Check support; general cleanup [ntalbott]
2918
+ * Dwolla: Fix security issues and enable guest checkout [capablemonkey, schonfeld]
2919
+ * SagePay gateway: Per-transaction 3D-secure selection [ExxKA]
2920
+ * Barclays ePDQ: Handle incorrectly encoded response [jordanwheeler, aprofeit]
2921
+ * Orbital: Bug fixes; add CustomerEmail, Retry Logic, Managed Billing, and Destination Address [juicedM3
2922
+ * Distinguish invalid vs empty issue_numbers on CreditCards [drasch]
2923
+ * Float Gemfiles to latest Rails [sanemat]
2924
+ * USA ePay Advanced: Fix Check support [RyanScottLewis]
2925
+ * Authorize.Net: Match up Check fields better with eCheck.Net requirements [ntalbott]
2926
+ * Bluepay: Updated to bp20post api [cagerton, melari]
2927
+ * Net Registry: Deprecate credit method [jduff]
2928
+ * Sage: Don't include T_customer_number unless it is numeric [melari]
2929
+ * Auth.net: Don't include cust_id unless it is numeric [melari]
2930
+ * Epay: Deprecate credit method [melari]
2931
+ * New PayU.in Integration [PayU, melari]
2932
+
2933
+ == Version 1.32.1 (April 4, 2013)
2934
+
2935
+ * CC5 and Garanti: Remove $KCODE modifications [melari]
2936
+ * Paymill: Add support for store [ntalbott]
2937
+ * USA ePay: Fix misspelling of "Aduth" [joelvh, ntalbott]
2938
+ * Orbital: Fix nil address values throwing exceptions during truncation [melari]
2939
+
2940
+ == Version 1.32.0 (April 1, 2013)
2941
+
2942
+ * Optimal: Submit shipping address with requests [jduff]
2943
+ * Iridium: Enable reference transactions for authorize [ntalbott]
2944
+ * Stripe: Add authorize and capture methods [melari]
2945
+ * Pin: Add a default description if none is specified to fix failures [melari]
2946
+ * Litle: Add support for passing optional fields in token based transactions [forest]
2947
+ * Add Finansbank gateway [scamurcuoglu]
2948
+ * Paymill: Use .com instead of .de for save card url [besi]
2949
+ * Worldpay integration: Use more robust endpoint urls [nashbridges]
2950
+ * Braintree Blue: Return CC token in transaction hash [cyu]
2951
+ * Robokassa: Fix signature for empty amount [ukolovda]
2952
+ * Worldpay gateway: Fix error messages for some failures [duff]
2953
+ * Worldpay gateway: Allow settled payments to be refunded [dougal]
2954
+ * Spreedly: Update urls and terminology [duff]
2955
+ * Make card brand error more user friendly [oggy]
2956
+ * DataCash: Update test Mastercard number [jamesshipton]
2957
+ * DataCash: Update test response fixtures [jamesshipton]
2958
+ * Pin: Add Pin.js card token support [nagash]
2959
+ * PayPal Express gateway: Fix error when no address information is in response [pierre]
2960
+ * Ogone: Use BYPSP for ALIASOPERATION [ntalbott]
2961
+ * Paymill: Handle error storing card [duff]
2962
+ * SagePay integration: Add referrer field [melari]
2963
+ * Pin: Add extra headers [duff]
2964
+ * Paymill: Add support for store [ntalbott]
2965
+ * USA ePay Advanced: Fix typo in message credit card data options [joelvh]
2966
+
2967
+ == Version 1.31.1 (February 25, 2013)
2968
+
2969
+ * Cybersource: Bug fixes [natejgreene, jduff]
2970
+
2971
+ == Version 1.31.0 (February 20, 2013)
2972
+
2973
+ * Worldpay: XML encoding is required to be ISO-8859-1 [dougal]
2974
+ * Worldpay: Add card code for more supported card types [dougal]
2975
+ * Ogone: Add action option [pwoestelandt]
2976
+ * PayPal Express gateway: Add support for BuyerEmailOptInEnable [chrisrbnelson]
2977
+ * Add Paymill gateway [duff]
2978
+ * Add EVO Canada gateway [alexdunae]
2979
+ * Fixed credit card and check interface, used correct method for checking payment type [jduff]
2980
+
2981
+ == Version 1.30.0 (February 13, 2013)
2982
+
2983
+ * Add FirstData Global Gateway e4 [frobcode]
2984
+ * PaymentExpress: Add support for optional fields: ClientType and TxnData [moklett]
2985
+ * PaymentExpress: Limit MerchantReference/description to 64 chars [moklett]
2986
+ * Wirecard: description must be no more than 32 characters [moklett]
2987
+ * Litle: Add support for passing a token to the authorize and purchase methods [forest]
2988
+ * PayPal Common: Allow searching for transactions by ProfileID [aq1018]
2989
+ * Add Spreedly Core gateway [duff]
2990
+ * eWay Gateway: Return proper value for authorization [duff]
2991
+ * eWay Gateway: Add support for refunds [duff]
2992
+ * Quickpay: Add support for protocols 5 & 6 [twarberg]
2993
+ * Banwire gateway: Handle JSON::ParserError [duff]
2994
+ * Balanced gateway: Fix unspecified marketplace [duff]
2995
+ * QBMS gateway: Allow partial addresses [duff]
2996
+ * Authorize.Net CIM: Allow omitting card expiration date [shanebonham]
2997
+ * Authorize.Net CIM: Add support for extraOptions to createCustomerProfileTransaction [tpiekos]
2998
+ * Add NETPAY gateway [samlown]
2999
+ * Balanced gateway: Add amount to the refund method signature [ntalbott]
3000
+ * Orbital gateway: Fix void method signature [aprofeit, ntalbott]
3001
+ * Eway Managed: Add 'query_customer' API as #retrieve [cdaloisio]
3002
+ * NetPay: Fix the signature for void [duff]
3003
+ * Cybersource: Add check support [bowmande]
3004
+ * Moneris: Use a capture of $0 for void [ntalbott]
3005
+ * PayPal Express integration: Fix received_at time zone [ntalbott]
3006
+ * NAB Transact: Add refund capability [nagash]
3007
+ * Stripe: Add support for application_fee [duff]
3008
+ * SagePay: Add support for GiftAidPayment [duff]
3009
+ * Wirecard: Add support for partial captures [richardblair]
3010
+ * Add Pin gateway [madpilot]
3011
+ * Balanced: Added support for on_behalf_of_uri to capture [cwise]
3012
+ * Litle: Add support for passing an order_source [forest]
3013
+ * Add Merchant Warrior gateway [pronix, Fodoj, ntalbott]
3014
+ * Use v4 of the MerchantWare API for voiding transactions [melari]
3015
+ * Add support for Authorize.net in CA and GB [melari]
3016
+ * Send customer's IP to Beanstream for fraud review [melari]
3017
+
3018
+ == Version 1.29.3 (December 7, 2012)
3019
+
3020
+ * Braintree Blue: Better wiredump_device support [ntalbott]
3021
+ * Braintree: Store sets vault id as authorization [ntalbott]
3022
+ * WorldPay: Fix currencies without fractions like JPY and HUF by rounding down amount [Soleone]
3023
+
3024
+ == Version 1.29.2 (December 7, 2012)
3025
+
3026
+ * Moneris: fix issue with the default options not being merged [jduff]
3027
+ * Sage Pay: Make 0000 default post code for everyone if missing [BlakeMesdag]
3028
+
3029
+ == Version 1.29.1 (December 5, 2012)
3030
+
3031
+ * Add eWay Rapid 3.0 gateway [ntalbott]
3032
+ * Fix AVS responses missing attributes [jduff]
3033
+
3034
+ == Version 1.29.0 (November 30, 2012)
3035
+
3036
+ * Authorize.Net gateway: Support description and order_id for capture [ntalbott]
3037
+ * Add Mercury gateway [adr1anx, opendining]
3038
+ * Webmoney integration: Add gross, item_id, and amount accessors to notification [fr33z3]
3039
+ * Fix running tests under ActiveSupport 2.3.14 [ntalbott]
3040
+ * SagePay Form integration: Remove dependency on ActiveSupport's String#truncate [ntalbott]
3041
+ * Elavon gateway: Add support for the sales tax parameter [stevestmartin]
3042
+ * Add WebPay gateway [keikubo]
3043
+ * iTransact gateway: make void API consistent [frobcode]
3044
+ * Stripe gateway: Pass city in add_address [npverni]
3045
+ * Paypal gateway: Add option to change the outstanding balance of a recurring billing profile [mattwhite]
3046
+ * Mercury gateway: Fix authorizations API [ntalbott]
3047
+ * Mercury gateway: Support refund properly [ntalbott]
3048
+ * Braintree Blue gateway: Add support for the recurring flag [ntalbott]
3049
+ * Add HDFC gateway [ntalbott]
3050
+ * HDFC gateway: Add more supported currencies [ntalbott]
3051
+ * HDFC gateway: Add support for passing ECI value [ntalbott]
3052
+ * HDFC gateway: Allow setting test mode via options [ntalbott]
3053
+ * HDFC gateway: Pass phone number in UDF3 [ntalbott]
3054
+ * HDFC gateway: Fix unescaped '&' entity in XML [ntalbott]
3055
+ * HDFC gateway: More robust entity fixing [ntalbott]
3056
+ * Add A1Agregator integration [england]
3057
+ * Refactored handling of #test? and @options [ntalbott]
3058
+ * Realex gateway: Realex gateway: Fix billing address format [ntalbott]
3059
+ * Orbital gateway: handle custom AVS response codes [jonm-okc]
3060
+ * Orbital gateway: Fix infinite connection retry [jonm-okc, ntalbott]
3061
+ * PayPal integration: Add support for MassPay IPN notifications [damonmorgan]
3062
+ * Orbital gateway: Fix status of void result [jonm-okc]
3063
+ * Add Redsys gateway [samlown]
3064
+ * Cybersource gateway: Add support for subscription credit [fabiokr]
3065
+ * Use Thor for generators [ntalbott]
3066
+ * Psigate gateway: Add void support [samuelreh]
3067
+ * Add Liqpay integration [beorc]
3068
+ * Paypal Express gateway: Add shipping accessor to response [v-fedorov]
3069
+
3070
+ == Version 1.28.0 (August 10, 2012)
3071
+
3072
+ * PayPal Express: support non standard locale codes [Soleone]
3073
+ * Litle: allow setting test mode per transaction [jduff]
3074
+ * Add Banwire gateway [acolin]
3075
+ * Authorize.Net CIM gateway: Move cardCode after order to comply with the XSD [davetron5000]
3076
+ * Add WebMoney integration [Mehonoshin]
3077
+ * EasyPay: Make symmetric with other integrations [nashby]
3078
+ * Add Paysbuy integration [divineforest]
3079
+ * Bogus gateway: Use last digit for pass/fail [mipearson]
3080
+ * Elavon gateway: Separate from Viaklix, implement refund & void [duff]
3081
+ * Orbital gateway: Update to API version 5.6 and add support for profile requests [rbarazi]
3082
+
3083
+ == Version 1.27.0 (August 10, 2012)
3084
+
3085
+ * Add First Data integration [courtland]
3086
+ * Add WebPay integration [nashby]
3087
+ * Add Suomen Maksuturva integration [akonan]
3088
+ * Payway gateway: Fix card storage [BenZhang]
3089
+ * Payflow Pro gateway: Add MaxFailPayments support [gregwinn]
3090
+ * Add Paxum integration [Mehonoshin]
3091
+ * Add Balanced gateway [mjallday]
3092
+ * Plug'n Pay gateway: Add tests for partial capture [csaunders]
3093
+ * Braintree Blue gateway: Add credit card details to responses [dougbradbury]
3094
+ * PayPal gateway: Support for 'Full' refund type [kurenn]
3095
+ * Worldpay: fix refund [jduff/omh]
3096
+ * Add PxPay offsite integration [boourns]
3097
+ * Wirecard: always capture 'authorization' transaction [ntalbott]
3098
+ * Add rake task to verify ssl certs [boourns]
3099
+
3100
+ == Version 1.26.0 (July 6, 2012)
3101
+
3102
+ * Orbital gateway: fix broken requests by ensuring the order of XML elements matches their DTD [Soleone]
3103
+ * CyberSource gateway: clean up formatting [ntalbott]
3104
+ * Netbilling gateway: Add refund/credit/void support [ntalbott]
3105
+ * Add PayGate XML gateway [rubyisbeautiful]
3106
+ * Add PayWay gateway [BenZhang]
3107
+ * PayWay gateway: Tweaks to make more ActiveMerchant like [ntalbott]
3108
+ * Netbilling gateway: Fix error handling [ntalbott]
3109
+ * Netbilling gateway: Add refund/credit/void support [zenom, ntalbott]
3110
+
3111
+ == Version 1.25.0 (July 3, 2012)
3112
+
3113
+ * eWAY gateway: Add support for Diners Club cards [Soleone]
3114
+ * Orbital gateway: Never send country code for orders outside of US, CA and GB [Soleone]
3115
+ * Add EasyPay integration [nashby]
3116
+ * Updating LitleOnline requirement to 8.13.2 to take advantage of better validation and get bugfix for Username [GregDrake]
3117
+ * USAepay gateway: Add description support [ntalbott]
3118
+ * Add Paypal Payments Advanced integration [csaunders]
3119
+ * Authorize.Net gateway: Improve #refund docs [neerajdotname]
3120
+ * Wirecard gateway: Fix for missing address hash [ntalbott]
3121
+ * Clean up requires of RubyGems and JSON gems. Rename remote Litle test to match naming conventions [codyfauser]
3122
+ * Cybersource gateway: Fix updating address only [fabiokr]
3123
+ * Cybersource gateway: Move email requirement [fabiokr]
3124
+ * Add the Metrics Global gateway [DanKnox]
3125
+ * Braintree Blue gateway: Support wiredump_device [moklett]
3126
+ * Add Fat Zebra gateway [amasses]
3127
+ * Braintree Blue gateway: Always pass CVV on update [shayfrendt]
3128
+ * eWAY gateway: Update docs. Require address [juggler]
3129
+ * Cybersource gateway: Add support for subscriptions [fabiokr]
3130
+ * WePay: Use better endpoint for recurring with no CVV [davidsantoso]
3131
+
3132
+
3133
+ == Version 1.24.0 (June 8, 2012)
3134
+
3135
+ * PayPal gateway: Support for incomplete captures [mbulat]
3136
+ * Moneris gateway: Add support for vault [kenzie]
3137
+ * NAB Transact gateway: Add support for card descriptors [nagash]
3138
+ * SagePayForm: truncate long description fields [jnormore]
3139
+ * Paybox Direct: treat all response codes besides '00000' as failures
3140
+ [Soleone]
3141
+ * Deprecate CreditCard#type method in favor of CreditCard#brand [jduff]
3142
+ * Cybersource gateway: Add subscriptions support [fabiokr, jaredmoody]
3143
+ * eWay gateway: Improved docs, and more accurate required parameters [juggler]
3144
+ * Braintree Blue gateway: Always pass CVV on card update [shayfrendt]
3145
+ * Add Fat Zebra gateway [amasses]
3146
+ * Braintree Blue gateway: Add support for wiredump_device [moklett]
3147
+ * Add Metrics Global gateway [DanKnox]
3148
+ * Cybersource gateway: Do not require email address for subscription operations [fabiokr]
3149
+ * Cybersource gateway: Fix passing only an address when updating a subscription [fabiokr]
3150
+ * Wirecard gateway: Fix for missing address; general cleanup [ntalbott]
3151
+ * Authorize.Net gateway: Document ability to just pass the last four to #refund [neerajdotname]
3152
+ * Add EasyPay integration [nashby]
3153
+
3154
+ == Version 1.23.0 (May 23, 2012)
3155
+
3156
+ * Add Litle gateway [GregDrake]
3157
+ * PaymentExpress gateway: add support for BillingId and DpsBillingId for token [mikel]
3158
+ * 2checkout integration: Add ability to auto settle [craigchristenson]
3159
+ * 2checkout integration: Switch default mode to single page [craigchristenson]
3160
+ * Cybersource: Revert - Add retrieve method to pull details on a
3161
+ stored card [jduff]
3162
+ * Cybersource: Revert - Add recurring payment support [jduff]
3163
+ * PaymentExpress: add Cvc2Presence flag when submitting verification
3164
+ value [jduff]
3165
+ * SecurePayAU: fix CreditCard check [jduff]
3166
+ * Barclays: fix order capture [csaunders/ntalbott/jduff]
3167
+
3168
+ == Version 1.22.0 (May 17, 2012)
3169
+
3170
+ * Remove version restriction for money gem [ylansegal]
3171
+ * Add iTransact XML gateway [motske]
3172
+ * PayPal Express Gateway: add options[:landing_page] [markus]
3173
+ * USA ePay: Fix handling of AVS [duff]
3174
+ * Ogone: Add store method to create an alias without making a purchase [joelcogen]
3175
+ * Spelling fix: purcahse -> purchase [mnoack]
3176
+ * ePay: Added more useful results for authorization errors [Dennis O'Connor]
3177
+ * Add Robokassa integration [nashby]
3178
+ * PayPal Gateway: Add recurring API [dscataglini]
3179
+ * Braintree: Add support for :verify_card option on store [brentmc79]
3180
+ * Moneris: cannot void a preauthorization [eddanger]
3181
+ * Add Moneris US gateway [eddanger]
3182
+ * Add Dotpay integration [kacperix]
3183
+ * Payflow: Add description, comment and comment2 tags [ksnyder]
3184
+ * Dotpay: Fix field mapping [kacperix]
3185
+ * Authorize.Net CIM: Optionally add 'order' details to transactions [pote]
3186
+ * Braintree: Allow including billing address when storing a customer [brentmc79]
3187
+ * PayPal Gateway: Refactored PaymentDetails & PaymentDetailsItem common code [dscataglini]
3188
+ * Viaklix/Elavon: Separate "demo accounts" from "test transactions" [mltsy]
3189
+ * PayPal Gateway: Add transaction_details, balance, authorize_transaction, and manage_pending_transaction API calls [dscataglini]
3190
+ * PayPal Gateway: Add support for TransactionSearch & DoReferenceTransaction [dscataglini]
3191
+ * Cybersource: Add recurring payment support [jaredmoory]
3192
+ * Tidy up gateway lists [ashokak]
3193
+ * Paybox: remove Iconv usage [ntalbott]
3194
+ * Dotpay: Add amount mapping, pin setter, and support for test? [kacperix]
3195
+ * Braintree Blue: Make address country map to alpha2 [ntalbott]
3196
+ * Use GB as the alpha2 country code for the UK [ntalbott]
3197
+ * Realex: Handle XML response with unescaped ampersand [ntalbott]
3198
+ * Add Vindicia gateway [steved555]
3199
+ * Payment Express: use %w[] for country list [parndt]
3200
+ * Braintree Blue: Match remote test up with change to :country [braintreeps]
3201
+ * PayPal Integration: Fix received_at method time parsing [subbarao]
3202
+ * Add MiGS Gateway [mnoack, nagash]
3203
+ * Quickpay integration: Fix payment_service_for helper [TheMaster]
3204
+ * Braintree Blue gateway: Improve update method [brentmc79]
3205
+ * 2checkout integration: Add mode mapping & line items helper [AlexanderZaytsev]
3206
+ * USA ePay Advanced gateway: Fix expiration date format. [cctalbott]
3207
+ * Add ePay integration [ePay]
3208
+ * 2checkout integration: Add support for single page payment routine [AlexanderZaytsev]
3209
+ * Ogone: Add support for 3D Secure [rymai, ZenCocoon]
3210
+ * Stripe gateway: Remove authorize and capture methods since they are not supported [jduff]
3211
+ * Stripe gateway: default test to false if no livemode parameter is specified [jduff]
3212
+ * Paybox Direct gateway: 'card absent' and 'do not honour' should be considered failures, not fraudulent [jduff]
3213
+ * Add Verkkomaksut integration [akonan]
3214
+ * Remove trailing spaces from generator templates [akonan]
3215
+ * Payflow gateway: Allow modification of RetryNumDays [jrust]
3216
+ * Payflow gateway: Don't auto-set start_date on modification [jrust]
3217
+ * Bluepay gateway: Add ACH & recurring support [jslingerland]
3218
+ * Orbital gateway: Don't send AVS address details for any country besides US, CA, GB and UK [Soleone]
3219
+ * Payflow Express gateway: Better amount handling [jduff]
3220
+ * Barclays gateway: Allow American Express [duff]
3221
+ * Ogone gateway: Remove duplicated method [ntalbott]
3222
+ * Cybersource gateway: Add retrieve method to pull details on a stored card [fabiokr]
3223
+
3224
+ == Version 1.21.0 (March 7, 2012)
3225
+
3226
+ * Stripe: Add support for passing IP [collision]
3227
+ * Merchant e-Solutions: pass expiration date when purchasing with a stored credit card [chrisyoung]
3228
+ * Braintree: Fix passing custom processor ids to old accounts [maxsilver]
3229
+ * Authorize.net CIM: Add validation mode option to create_customer_profile_request [jwood]
3230
+ * eWay Managed: Include transaction number in response params [jamsi]
3231
+ * Fix various hash ordering issues exposed by Ruby 1.8 [ntalbott]
3232
+ * Authorize.Net CIM: Add WEB echeck type [deathbob]
3233
+ * Move Braintree from the gemspec to the Gemfile [ntalbott]
3234
+ * Add CertoDirect gateway [hron]
3235
+ * Authorize.Net CIM: Add option for setting a custom delimiter [bmorton]
3236
+ * Authorize.Net CIM: Add 3.1 response fields [bmorton]
3237
+ * Authorize.Net CIM: Misc fixes and doc improvements [bmorton]
3238
+ * Authorize.Net CIM: Fix error when order is blank [KeeperPat]
3239
+ * Beanstream: Add recurring payments support [castiglione]
3240
+ * Make ePay password optional [ePay]
3241
+ * Quickpay: skip testmode if transaction provided [brentmc79]
3242
+ * Payflow: add additional fields [thorstadt]
3243
+ * Authorize.Net CIM: Add get_customer_profile_ids [howaboutwe]
3244
+ * PayPal Express: Add support for BrandName and Custom fields [exviva]
3245
+ * Payflow: Handle dates with leading zeros [jcoleman]
3246
+ * Authorize.Net CIM: Add CCV code support & improve tests [tgarnett]
3247
+ * Add Authorize.Net SIM integration [courtland & rdp]
3248
+ * Secure Pay AU: Handle periodic payments [tommeier]
3249
+ * Viaklix: Add discover as a supported card type [waelchatila]
3250
+ * Improvements to testing infrastructure for integrations [jduff]
3251
+ * Add NAB Transact (AU) Gateway [tommeier]
3252
+ * PayPal Express: Add Support for Reference Transactions using BAIDs [kenmazaika]
3253
+ * Authorize.Net CIM: Add support for optional refund fields [nilmethod]
3254
+ * SecurePayTech: Fix EnableCSC parameter so CVV codes are checked. [tlconnor]
3255
+ * SecurePayTech: Add remote tests for CSC checking. [tlconnor]
3256
+ * Samurai: Add option to retain payment methods once stored [brentmc79]
3257
+ * PayPal Express Gateway: Add support for Digital Goods / Micropayments [kenmazaika]
3258
+
3259
+
3260
+ == Version 1.20.4 (February 22, 2012)
3261
+
3262
+ * Fix json dependency
3263
+
3264
+ == Version 1.20.3 (February 7, 2012)
3265
+
3266
+ * Various fixes to support Ruby 1.9 [wisq]
3267
+ * SkipJack: Fix partial capture [jduff]
3268
+ * Optimal Payments: submit region when outside North America [jduff]
3269
+ * USA ePay: Add void and refund support [duff/ntalbott]
3270
+ * Add first digits to credit card [codyfauser]
3271
+ * Orbital: fixes to authentication and order id [Soleone]
3272
+ * Stripe: fixes to purchase method [duff/ntalbott]
3273
+
3274
+ == Version 1.20.2 (January 16, 2012)
3275
+
3276
+ * Remove authorize/capture support for Stripe [gdb]
3277
+
3278
+ == Version 1.20.1 (December 22, 2011)
3279
+
3280
+ * PayflowExpressUk: Fix parsing street2 from response [odorcicd]
3281
+ * AuthorizeNet: Support tracking id [odorcicd]
3282
+ * SagePay Form: Map billing address to shipping address [jduff]
3283
+
3284
+ == Version 1.20.0 (November 14, 2011)
3285
+
3286
+ * Add support for USA ePay Advanced SOAP interface [matthewcalebsmith/jduff]
3287
+ * Beanstram: fix purchase with Secure Profile [pitr/jduff]
3288
+ * Orbital: various fixes [Soleone]
3289
+ * Add Samuari gateway by Fee Fighters [jkrall/odorcicd]
3290
+ * Lock money gem to 3.7.1 or less since newer versions break in 1.9 [jduff]
3291
+ * Braintree: handle gateway rejected transactions gracefully [braintreeps/jduff]
3292
+ * Ogone: support different signature encryptors, custom currency and eci [ZenCocoon/rymai/jduff]
3293
+ * Payflow Link: use secure token [jduff]
3294
+ * Added refund method to Exact, Pay Junction and Skip Jack gateways [jduff]
3295
+ * Elavon: added test url [kylekeesling/jduff]
3296
+ * Fix redundent errors when credit card is expired [castiglione/jduff]
3297
+ * Two Checkout: update service url [vampirechicken/jduff]
3298
+
3299
+ == Version 1.18.1 (September 23, 2011)
3300
+
3301
+ * Braintree: allow setting merchant_account_id on initialize [jduff]
3302
+ * Realex: only send letters and numbers in shipping code field [Soleone]
3303
+
3304
+ == Version 1.18.0 (September 23, 2011)
3305
+
3306
+ * NoChex: Update the URL that payment requests are posted to [caseywhalen/jduff]
3307
+ * QBMS: fixed test mode check [Soleone]
3308
+ * Realex: encode avs info with shipping address [Soleone]
3309
+ * Add Dwolla offsite gateway [armsteadj1/jduff]
3310
+ * Eway: pass email, customer, description and options to store [moklett/tobi]
3311
+ * New dependency: active_utils gem [odorcicd]
3312
+ * Optimal Payments: fix test mode check [jduff]
3313
+
3314
+ == Version 1.17.0 (August 23, 2011)
3315
+
3316
+ * Add Payflow Link integration [jduff]
3317
+ * Add CardSave gateway [MrJaba/jduff]]
3318
+ * Quickpay: Support protocal version 4 and fraud parameters [anderslemke/jduff]
3319
+ * Authorize.net: Add status_recurring [mm1/jduff]
3320
+ * Paypal Express: Support specifying :items with purchase [sivabudh/jduff]
3321
+ * ePay: Add Sweden and Norway to supported countries [ePay/jduff]
3322
+ * Brainreee: Support passing merchant_account_id parameter [braintreeps/jduff]
3323
+ * Paypal Express: Remove deprecated Address field in favor of ShipToAddress[jduff]
3324
+ * Add Optimal Payments gateway [jamie/jduff]
3325
+ * Documentation improvements [dasch/nhemsley/jstorimer/jduff]
3326
+ * Authorize.Net: Pass through first name, last name, and zip for refunds. [ntalbott]
3327
+
3328
+ == Version 1.16.0 (July 18, 2011)
3329
+
3330
+ * Bogus: Support referenced transactions for #authorize, #purchase, #recurring and
3331
+ #credit [dasch/jduff]
3332
+ * Payment Express: Update gateway url [bayan/titanous]
3333
+ * Moneybookers: Send country and account_name if provided [Soleone]
3334
+ * Moneris: Add Diners Club and Discover [Soleone]
3335
+ * Cybersource: add auth_reversal support [jeberly/titanous]
3336
+ * WorldPay: Update endpoint URLs for offsite gateway [Soleone]
3337
+ * Worldpay: Add JCB and add Maestro [Soleone]
3338
+ * Authorize.net: Add Diners Club and JCB [Soleone]
3339
+ * Quickpay: Add testmode for subscribe and authorize [dasch/jduff]
3340
+ * Orbital: fix handling of phone numbers. [ntalbott]
3341
+ * Braintree: Add Diners Club [cody]
3342
+ * Add ePaymentPlans offsite payment [robertomiranda/Soleone]
3343
+ * Add Stripe gateway [boucher/titanous]
3344
+ * Add Paystation gateway [nikz/jduff]
3345
+ * Bump minimum ActiveSupport version to 2.3.11 [titanous]
3346
+ * Use securerandom from stdlib not active_support [phlipper/jduff]
3347
+
3348
+ == Version 1.15.0 (May 12, 2011)
3349
+
3350
+ * DirecPay: Fix address to not include address2 twice in some cases [Soleone]
3351
+ * DirecPay: Send company if available [Soleone]
3352
+ * Realex: Fix hash signature [ntalbott/Soleone]
3353
+ * SecurePay AU: Update remote tests [ntalbott]
3354
+ * SecurePay AU: Fix method arity for #capture, #refund, #credit and #void [Soleone]
3355
+ * Barclays ePDQ: Make response parsing more robust [Soleone]
3356
+ * Payflow Express: Add line item support [wolframarnold]
3357
+ * Payflow Express: Add comment field support [wolframarnold]
3358
+ * Payflow: Add more optional fields [wolframarnold]
3359
+ * Beanstream/Paypal: Fix CREDIT_DEPRECATION_MESSAGE errors [Jonathan Rudenberg]
3360
+ * BraintreeBlue: Return a hash instead of a transaction object [braintreeps]
3361
+ * BraintreeBlue: Return proper AVS/CVV values [braintreeps]
3362
+ * Bogus: Add #recurring [trwomey]
3363
+ * Make Validateable compatible with ActiveModel [CodeMonkeySteve]
3364
+ * Add DirectEBanking offsite gateway [Gerwin Brunner/Soleone]
3365
+ * ActiveSupport 3.1 beta support [cgriego]
3366
+
3367
+ == Version 1.14.0 (Apr 29, 2011)
3368
+
3369
+ * SagePayForm: Implement #cancelled? for Return. [wisq]
3370
+ * Add #cancelled? to Integrations::Return [wisq]
3371
+ * Bogus gateway: Add refund support and better tests [wisq]
3372
+ * Beanstream: Add support for storing cards [duffomelia]
3373
+ * eWay: Add support for storing cards [duffomelia]
3374
+ * Add validation mode to update profile request [Ken Miller]
3375
+ * Authorize.net CIM: Add oldLiveMode [ntalbott]
3376
+ * Authorize.net CIM: Add extra transaction types [Ken Miller]
3377
+ * JetPay: gateway tweaks [ntalbott]
3378
+ * Deprecate a bunch more #credit methods [ntalbott]
3379
+ * RealEx: Add authorize/capture/credit/void [ntalbott]
3380
+ * SecurePay AU: Add authorize/capture/credit/void [ntalbott]
3381
+ * PayPal Express: Make response parsing more robust [ntalbott]
3382
+ * Test deprecation warnings; add deprecation line numbers [ntabott]
3383
+ * Add Orbital direct gateway [ntalbott]
3384
+ * Add WorldPay direct gateway [ntalbott]
3385
+
3386
+ == Version 1.13.0 (Apr 19, 2011)
3387
+
3388
+ * Add a Gemfile for optional bundler support [ssoroka]
3389
+ * Stop using has_rdoc= when rubygems version is 1.7.0 or greater, since it's deprecated [ssoroka]
3390
+ * Add tax field to braintree [wisq]
3391
+ * Quickpay: Also add Sweden as supported country [Soleone]
3392
+ * Adding refund method for gateways that are using the credit method for referenced based refunds, added deprecation worning to the credit method [John Duff]
3393
+ * Return the Braintree transaction id in the response for void and refund transaction calls [John Duff]
3394
+ * PayPal Express: Extract phone number from address if no contact phone was sent [Soleone]
3395
+ * Unify all offsite gateways that verify the signature of Returns or Notifications by always using the #acknowledge method and calling the secret :credential2 [Soleone]
3396
+ * Valitor: Change name of credential for Return and Notification from :password to :credential2 in symmetry with the other Integrations [Soleone]
3397
+ * Moneybookers: Add support for tracking token [Soleone]
3398
+ * Moneybookers: Require credential when creating Notifications instead of adding an argument to #acknowledge [Soleone]
3399
+ * Moneybookers: Fix Notification to return correct status [Soleone]
3400
+ * Support default Return class for all Integrations that don't use returns [Soleone]
3401
+ * Add support for passing additional options when creating a Notification to all Integrations [Soleone]
3402
+ * Update BraintreeBlue#refund to have consistent method signature [Jonathan Rudenberg]
3403
+ * Add rails/init.rb for gem campatability in Rails [R?dolfs O?i??]
3404
+ * Fix Paypal Express response parser [Jonathan Rudenberg]
3405
+ * Braintree/Transax: Add tax field [wisq]
3406
+
3407
+ == Version 1.12.1 (Mar 21, 2011)
3408
+
3409
+ * Ogone: Make sure response.params is a real Hash [Soleone]
3410
+ * WorldPay: Fix service_url in production mode [Soleone]
3411
+
3412
+ == Version 1.12.0 (Mar 1, 2011)
3413
+
3414
+ * DirecPay: Send phone number as mobile phone by default [Soleone]
3415
+ * Support sending line items for PayPal Express transactions [Jonathan Rudenberg]
3416
+ * Update PayPal Express XML format to latest version [Jonathan Rudenberg]
3417
+ * Fix custom image header for PayPal Express [mwagg]
3418
+ * Add InvoiceID and OrderDescription to PayPal Express Authorize and Capture [cody]
3419
+ * Add Moneybookers integration [Alex Diakov]
3420
+ * Add QBMS (Quickbooks Merchant Services) gateway [ntalbott]
3421
+ * Add NMI gateway [ntalbott]
3422
+ * Make fully compatible with Rails 2 & 3, and Ruby 1.8 & 1.9 [ntalbott]
3423
+ * Authorize.Net: Only return AVS message for AVS-related reason codes. [ntalbott]
3424
+ * Add Federated Canada gateway [ntalbott]
3425
+ * Garanti: Fix text normalization for nil values [Selem Delul]
3426
+ * Valitor: Always send amount without any decimal places [Soleone]
3427
+ * Add WorldPay integration [Soleone]
3428
+
3429
+ == Version 1.11.0 (Feb 11, 2011)
3430
+
3431
+ * Bump dependency for activesupport from 2.3.2 to 2.3.8 [Soleone]
3432
+ * Garanti: Normalize text in xml fields for non-standard characters [Selem Delul]
3433
+ * Garanti: Make sure order number does not contain illegal characters [Soleone]
3434
+ * Fix ActionView tests for ActiveSupport 3.0.4 [Soleone]
3435
+ * DirecPay: Make address information editable by default [Soleone]
3436
+ * Fix ePDQ credit to expect and handle full authorization [Nathaniel Talbott]
3437
+ * Add Barclays ePDQ Gateway [Nathaniel Talbott]
3438
+ * Add default fixture for Garanti and don't use fixture for Garanti [cody]
3439
+ * Add cms param for ePay [ePay]
3440
+ * Add Valitor Integration [Nathaniel Talbott]
3441
+
3442
+ == Version 1.10.0 (Jan 20, 2011)
3443
+
3444
+ * PayPal Express: Support returning payer phone number [Soleone]
3445
+ * Fix ePay to correctly send order number [Soleone]
3446
+ * Add BluePay Gateway [Nathaniel Talbott]
3447
+ * Add Quantum Gateway [Joshua Lippiner]
3448
+ * Add iDEAL/Rabobank gateway [Jonathan Rudenberg]
3449
+ * SagePayForm: Added send_email_confirmation (default false) to enable confirmation emails [wisq]
3450
+
3451
+ == Version 1.9.4 (Jan 5, 2011)
3452
+
3453
+ * Update Garanti gateway to integrate with new API [Selem Delul]
3454
+
3455
+ == Version 1.9.3 (December 17, 2010)
3456
+
3457
+ * Fix BBS Netaxept to change transaction type from C (for MOTO: mail order telephone order) to M (for credit card orders) [Soleone]
3458
+ * Fix Iridium and ePay to work with any object that responds to credit card methods not only ActiveMerchant::CreditCard objects
3459
+
3460
+ == Version 1.9.2 (December 9, 2010)
3461
+
3462
+ * Add support for PayPal mobile payments [wisq]
3463
+ * Add ePay gateway [ePay, Jonathan Rudenberg]
3464
+ * Allow access to the raw HTTP response [Jonathan Rudenberg]
3465
+
3466
+ == Version 1.9.1 (November 24, 2010)
3467
+
3468
+ * PayPal Express and PayPal Pro: Send JPY currency correctly without decimals [Soleone]
3469
+ * Netaxept: Make sure password (token) is URL escaped and update remote tests for updated server behavior [Soleone]
3470
+ * DirecPay: Add support for additional options in Return class and add convenience method to get transaction status update [Soleone]
3471
+ * Add new alias credit_card.brand for credit_card.type and handle the brand correctly in Netaxept [Soleone]
3472
+ * Iridium: Do not depend on ExpiryDate class for credit_card [Soleone]
3473
+ * PayFlow: Use same timeout of 60 seconds in HTTP header and XML for all requests [Soleone]
3474
+ * PayPal Website Payments Pro CA no longer supports American Express cards [Soleone]
3475
+ * Updated BIN ranges for Discover to match recent documents [kaunartist]
3476
+
3477
+ == Version 1.9.0 (October 14, 2010)
3478
+
3479
+ * Add support for DirecPay gateway [Soleone]
3480
+ * Add SagePay Form integration gateway [wisq]
3481
+ * Allow Return class to include a Notification for gateways that treat the direct response as a notification [wisq]
3482
+ * Add support for PayboxDirect gateway [Donald Piret]
3483
+ * Add support for SecureNet gateway [Kal]
3484
+ * Add support for the Inspire gateway [ryan r. smith]
3485
+
3486
+ == Version 1.8.0 (September 24, 2010)
3487
+
3488
+ * PayPal Express: Add support for billing agreements [Nathaniel Talbott]
3489
+ * Allow comparing countries [Nathaniel Talbott]
3490
+ * Iridium: Fix country handling [Nathaniel Talbott]
3491
+ * Iridium: Fix missing billing address [Nathaniel Talbott]
3492
+ * Iridium: Do not pass CV2 if not present [Nathaniel Talbott]
3493
+ * Add Iridium support [Phil Smy]
3494
+ * Add Netaxept support [Nathaniel Talbott]
3495
+ * PaymentExpress: Use Card Holder Help Text for the response message [Nathaniel Talbott]
3496
+ * Sort the country name list [Duff OMelia]
3497
+
3498
+ == Version 1.7.3 (September 14, 2010)
3499
+
3500
+ * Fix SagePay special handling for Japanese YEN currency to not send fractional amounts [Soleone]
3501
+
3502
+ == Version 1.7.2 (August 27, 2010)
3503
+
3504
+ * Update Braintree integration to play nicely with the braintree 2.5.0 gem [Soleone]
3505
+ * Fix SagePay to not send fractional amounts for Japanese YEN currency [Soleone]
3506
+
3507
+ == Version 1.7.1 (July 28, 2010)
3508
+
3509
+ * Pull in only the necessary components of Active Support. Enables use of ActiveMerchant with Rails 3 [railsjedi]
3510
+
3511
+ == Version 1.7.0 (July 9, 2010)
3512
+
3513
+ * Add support for new Braintree Blue Gateway (using the braintree gem) [Braintree]
3514
+
3515
+ == Version 1.6.0 (July 6, 2010)
3516
+
3517
+ * Add a task rake gateways:hosts to get a list of all outbound hosts and ports [cody]
3518
+ * Fix test failure in chronopay helper in Ruby 1.9.1 [cody]
3519
+ * Fix timezone issue in credit card test. [cody]
3520
+ * Fix failing unit test for Garanti gateway [cody]
3521
+ * Fix failing CyberSource remote test [Patrick Joyce]
3522
+ * Support for Garanti Sanal Pos: Turkish bank and billing gateway [Selem Delul]
3523
+ * Add deprecation note for Money objects to Bogus gateway [Soleone]
3524
+ * Updated test URL for Merchant eSolutions and added valid remote test credentials [Soleone]
3525
+ * Add new error class for SSL certificate problems in connection class [Soleone]
3526
+ * Update valid_month and valid_expiry_year to coerce string arguments to integers [cody]
3527
+ * Add support for displaying credit cards with PayPal Express. Use the :allow_guest_checkout => true option when setting up the transaction [Edward Ocampo-Gooding]
3528
+ * Use card_brand method for checking for checks in Sage and Beanstream [cody]
3529
+ * Add JCB and Diners Club to LinkPoint [Soleone]
3530
+
3531
+ == Version 1.5.1 (February 14, 2010)
3532
+
3533
+ * Cleanup Rakefile, add gemspec and prepare for 1.5.1 release [cody]
3534
+ * Update copyright dates [cody]
3535
+ * Work around SkipJack bug by reversing the order of the query params [Soleone]
3536
+ * Fix uppercase character in autoload of 2Checkout's Notification class [Edward Ocampo-Gooding]
3537
+ * Detect language used in Chronopay integration based on billing address country [Soleone]
3538
+ * Better handle international addresses in BeanstreamGateway [Soleone]
3539
+
3540
+ == Version 1.5.0 (February 2, 2010)
3541
+
3542
+ * Fix Gestpay notification to avoid Ruby 1.9 warnings [cody]
3543
+ * Fix Chronopay notification time parsing for Ruby 1.9 [Joe Van Dyk]
3544
+ * Set default currency of Braintree to USD [cody]
3545
+ * Fix QuickPay helper for Ruby 1.9 compat [cody]
3546
+ * Use String#each_line instead of collect in PaySecureGateway for Ruby 1.9 compat [cody]
3547
+ * Use String#each_line instead of to_a in SagePayGateway for Ruby 1.9 compat [cody]
3548
+ * Don't return an array when finding the country code. Fixes issue with Ruby 1.9 [cody]
3549
+ * Fix custom assertions for Ruby 1.9 [cody]
3550
+ * Deprecate Money objects [cody]
3551
+ * Update JCB rejex to catch all valid PANs [pjhyett]
3552
+ * Remove old TransaXGateway constant [cody]
3553
+ * Remove old ProtxGateway constant [cody]
3554
+ * Remove old BrainTree constant [cody]
3555
+ * Remove AuthorizedNet constant [cody]
3556
+ * SecurePay changed their delimeter from % to ,. Update gateway to handle changes [Soleone]
3557
+ * Fix documentation typo in base.rb [mig-hub]
3558
+ * Add capture test to Linkpoint [Dusty Doris]
3559
+ * Fix bug in Linkpoint with ternary operator and Ruby 1.9.1 [Dusty Doris]
3560
+ * Add currency and processor options to Braintree gateway [cbillen]
3561
+ * Unify API to always look for billing_address/address hash inside of options [stopdropandrew]
3562
+ * Fix bug with Modern Payments Gateway where failure authorizations appeared to be successful [cody]
3563
+ * Fix Modern Payments Gateway [cody]
3564
+ * Use basic SkipJack host for all non-authorization transactions. Fix status method [cody]
3565
+ * Strip non alpha numeric chars out of MerchantWare order number [cody]
3566
+ * Parse complete response of Authorize.net CIM gateway [Patrick Joyce]
3567
+ * Update to PayPal Sandbox URL for testing Payflow Pro Express Checkout. See Express Checkout for Payflow Pro guide [cody]
3568
+ * Provide a C_STATE value of "Outside United States" for SageGateway when processing international customers [cody]
3569
+ * PayPal Website Payments Pro Canada supports Amex [cody]
3570
+ * Add line item support for LinkpointGateway. [Tony Primerano]
3571
+ * Add support for SallieMae gateway [iamjwc]
3572
+ * Add support for the JetPay gateway [Phil Ripperger, Peter Williams, cody]
3573
+ * Add support for advanced SkipJack processors. Pass :advanced => true when constructing gateway [cody]
3574
+ * Support test option in AuthorizeNetCimGateway [Tim]
3575
+ * Improve Ogone error messages [cody]
3576
+ * Add support for :test => true option to OgoneGateway [cody]
3577
+ * Bump PayPal Version to 59.0 [cody]
3578
+ * Add amex support to eWay gateway [cody]
3579
+ * Change Payflow header X-VPS-Timeout -> X-VPS-Client-Timeout [cody]
3580
+ * Fix typo preventing OgoneGateway from working in production [Nicolas Jacobeus]
3581
+ * Add support for the Elavon MyVirtualMerchant gateway [jstorimer]
3582
+ * Fix recurring transactions in Ogone gateway [cody]
3583
+ * Fix money formatting for Ogone gateway [cody]
3584
+ * Tweak Ogone gateway to use ActiveMerchant conventions for reference transactions [cody, jstorimer]
3585
+ * Add support for the Ogone DirectLink payment gateway [Nicolas Jacobeus]
3586
+ * Add support for the Antigua based FirstPay payment gateway [Phil R]
3587
+ * Add support for PayPal reference transactions [kevin, John, Rahsun McAfee]
3588
+ * Add support for the MerchantWARE payment gateway [cody]
3589
+ * Rename Protx to SagePay [jstorimer]
3590
+ * Allow test mode for eWay gateway [Duff OMelia]
3591
+ * Don't use Time.parse for the ExpiryDate [cody]
3592
+ * Add support for CVV code to Authorize.net CIM [Guy Naor]
3593
+ * Add shipping address to Authorize.net [Eric Tarn]
3594
+ * Don't setup the logger by default [cody]
3595
+ * Refactor ActiveMerchant::Connection out of the PostsData module. Add support for logging and wiredumping requests [cody]
3596
+ * Assume a valid load path when running tests [cody]
3597
+ * Use SHIPTOSTREET2 element instead of STREET2 element for Payflow Express Uk address [cody]
3598
+ * Clean up the test helper [cody]
3599
+ * Fix DataCash unit test that was making a remote call [cody]
3600
+ * Don't check Request#test? for remote PaymentExpress tests because their test environment has changed [cody]
3601
+ * Update Instapay gateway to support capture and add address, order, and invoice fields. Add support for CVV and AVS response [cody]
3602
+ * Add support for Instapay gateway [brahma]
3603
+ * Cleanup PaymentExpress reference purchases and turn on AVS [cody]
3604
+ * Add reference purchases and authorizations to PaymentExpress [mocra]
3605
+ * Add support for Merchant e-Solutions Gateway [Zac Williams, Robby Russell]
3606
+ * Fix Braintree unit test [cody]
3607
+ * Add support for checks to SmartPs gateways [jvoohris]
3608
+ * Extract SmartPs for Braintree and Transax [mmangino]
3609
+ * Ruby 1.9 compatibility [bschwartz]
3610
+ * Update Payflow Express to handle Street2 element [James MacAulay]
3611
+ * Fix typo in Protx DeliveryState field [cody]
3612
+ * Ignore Wirecard state unless it is 2 characters [Cody]
3613
+ * Update Wirecard to make country and state processing more robust [Soleone]
3614
+ * Update ProTX to use the latest v2.23 protocol [Tekin]
3615
+
3616
+ == Version 1.4.2 (April 24, 2009)
3617
+
3618
+ * Fix typo in Authorize.net CIM [infused]
3619
+ * Add missing ISO countries [Edward Ocampo-Gooding]
3620
+ * Add support for Guernsey to country.rb [cody]
3621
+ * Add American Express to the MonerisGateway [cody]
3622
+ * Use :words_connector instead of connector in RequiresParameters [cody]
3623
+ * Fixed CreditCard not validating start_month and start_year when set as string [Tekin]
3624
+ * Update PostsData to support get requests [cody]
3625
+ * Fix broken Quickpay remote test [cody]
3626
+ * Update Quickpay gateway to v3. Add support for offsite integration for Danish Dankort cards [Lars Pind]
3627
+ * Use default partner id when passed in :partner is blank with PayflowGateway [cody]
3628
+ * Remove PayflowGateway.certification_id [cody]
3629
+ * Set Response#test? to true in TrustCommerce gateway when using the demo account in production [cody]
3630
+ * Correctly set Sage.supported_countries [cody]
3631
+ * Add BogusGateway#void [Donald Ball]
3632
+ * Fix PSL gateway capturing [cody]
3633
+ * Fix failed Visa debit purchases with PSL gateway start date info is present [cody]
3634
+ * Support personal fixtures file on Windows [cody]
3635
+ * Clearer variable naming for BraintreeGateway#authorize [Jonathan S. Katz]
3636
+ * Fix brittle Authorize.net tests [cody]
3637
+ * Add support for Authorize.net duplicate window [Seamus Abshere]
3638
+ * Return transaction id for PayPal refunds [jxtps435]
3639
+ * Allow storage of e-checks with BraintreeGateway [jimiray]
3640
+ * Add test URL to PayJunction gateway [boomtowndesigngroup]
3641
+ * More robust parsing for Wirecard gateway [Soleone]
3642
+ * Pass the issue number to CardStream verbatim and update test card numbers [Soleone]
3643
+
3644
+ == Version 1.4.1 (December 9, 2008)
3645
+
3646
+ * Update CardStream URL. Note that you will also need to update your login id. [cody]
3647
+
3648
+ == Version 1.4.0 (November 27, 2008)
3649
+
3650
+ * Return failed authorization when SkipJack purchase fails [Tron, cody]
3651
+ * Update README [cody]
3652
+ * Add metadata to Authorize.net CIM gateway [cody]
3653
+ * Make ActionViewHelper compatible with changes to concat method in ActionPack [cody]
3654
+ * Remove PayPal and Payflow Name-Value gateways. PayPal is no longer terminating the Payflow XML API. [cody]
3655
+ * Don't directly use the inflector in the action view helper [cody]
3656
+ * Work around Rails Inflector change [cody]
3657
+ * Add configurable timeouts to PostsData [Michael Koziarski]
3658
+ * Add valid_sender? method to gateway integrations [Soleone]
3659
+ * Fix PayPal error parsing [cody]
3660
+ * Fix MIT-LICENSE [cody]
3661
+ * Add a payment gateway for Website Payments Pro Canada [cody]
3662
+ * Fix shipping amount option in Sage gateway [Darrick Wiebe]
3663
+ * Improved message and error message handling [Soleone]
3664
+ * Get Wirecard working in the Live environment [Soleone]
3665
+ * Remove dead code in PayPal Common API files [cody]
3666
+ * Use the PayPal short error message if the long message is empty [cody]
3667
+ * Fix unit tests when being run by Cruise Control [cody]
3668
+ * Add support for PayPal Fraud Review Response [cody]
3669
+ * Add testing support for German Wirecard Gateway [Soleone]
3670
+ * Specify required version of ActiveSupport [cody]
3671
+ * 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]
3672
+ * Make Gateway.application_id a superclass_delegating_accessor so it can be set from outside the subclass definition [cody]
3673
+ * Add Discover to the list of supported card types for Braintree [cody]
3674
+ * Add support for Modern Payments gateway [Jeremy Nicoll, cody]
3675
+ * Add support for EFT/ACH and Interac Online to the BeanstreamGateway [cody]
3676
+ * Document the SageGateway [cody]
3677
+ * Add support for echecks with SageGateway. [cody]
3678
+ * Handle all successful SecurePay AU response codes [cody]
3679
+ * Get SageGateway working with real test account. Improve test suite. [cody]
3680
+ * Unify TrustCommerce, Payment Express, and Braintree CC storage [benjamin.curtis]
3681
+ * Update to use new Payflow Pro URLs [cody]
3682
+ * Fix missing Content-Type header for Ruby 1.8.4 [cody]
3683
+ * Fix Authorize.Net CIM response.message [patrick.t.joyce]
3684
+ * Add JCB and Diners Club as supported cards to SageGateway [cody]
3685
+ * Add CA country code to Sage gateway's supported countries [cody]
3686
+ * Add support for Sage Payment Solutions gateway [cody]
3687
+ * Add test mode detection to Beanstream [cody]
3688
+ * Add support for Beanstream payment gateway [xiaobozz]
3689
+ * 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]
3690
+ * Protx does support UK Maestro [cody]
3691
+ * Add tests for length of UK Maestro cards [cody]
3692
+ * Return all the error messages and codes from paypal responses [cody]
3693
+ * Fail hard when attempting to capture without a credit card with NetRegistry [cody]
3694
+ * Add support for the order fields to the create_customer_profile_transaction in Authorize.net CIM. [Patrick T. Joyce]
3695
+ * Strip invalid characters and limit lengths of Protx customer data [Simon Russell]
3696
+ * Fix empty start or end dates in Protx [Simon Russell]
3697
+ * Add support for Authorize.net CIM [Patrick T. Joyce, Ian Lotinsky]
3698
+ * Add option to skip order review to all PayPal Express gateways [garret.alfert, cody]
3699
+ * 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]
3700
+ * Fix StartDate in ProtxGatewy [cody]
3701
+ * Add support for refunds and continuous authority references to DataCashGateway [joel.chippindale]
3702
+ * Fix gross in HiTrust notification. Don't use Money object in Verifi gateway [cody]
3703
+ * Initial implementation of Payflow Name-Value API [Greg Furmanek]
3704
+ * Add support for CyberSource credits [mjuneja]
3705
+
3706
+ == Version 1.3.2 (February 24, 2008)
3707
+
3708
+ * Actually fix the bug by adding extdata element to Payflow Requests [cody]
3709
+ * Fix bug with adding name to Payflow requests [cody]
3710
+ * Gateways will now look for CreditCard#brand before looking for CreditCard#type [cody]
3711
+ * Make before_validate in CreditCard more clear [keith_du...@mac.com, cody]
3712
+ * Don't send full Australian state names to PayPal [cody]
3713
+ * Return last_digits that are less than 4 characters long [cody]
3714
+ * Fix Bug with Authorize.Net ARB Remote Test [patrick.t.joyce]
3715
+ * Add support for forcing test mode on Secure Pay AU gateway [cody]
3716
+ * Update Secure Pay Au to meet specs for MessageInfo elements [cody]
3717
+ * Add support for the Australian Secure Pay payment gateway [cody]
3718
+ * Allow LinkPoint cancellations for recurring billing. [yanagimoto.shin]
3719
+ * Add support for ?land Islands to the country list [cody]
3720
+
3721
+ == Version 1.3.1 (January 28, 2008)
3722
+
3723
+ * Rename BrainTreeGateway to BraintreeGateway, but keep alias to old naming for backwards compatibility [cody]
3724
+
3725
+ == Version 1.3.0 (January 28, 2008)
3726
+
3727
+ * Remove attr_readers for url and response from Gateway [cody]
3728
+ * Remove @url from EfsnetGateway [cody]
3729
+ * Remove @response instance variable in QuickpayGateway. [cody]
3730
+ * Remove @response instance variable in PsigateGateway. Don't use billing address for shipping [cody]
3731
+ * Remove @response instance variable in PaypalGateway. Don't use billing address for shipping. [cody]
3732
+ * Remove @response instance variable in PayflowGateway [cody]
3733
+ * Remove @response instance variable in MonerisGateway [cody]
3734
+ * Remove @response instance variable and don't use billing address for shipping address in LinkpointGateway [cody]
3735
+ * Remove @response instance variable from ExactGateway [cody]
3736
+ * Remove @response instance variable from EwayGateway [cody]
3737
+ * Remove @response instance variable from EfsnetGateway [cody]
3738
+ * Remove @response instance variable from DataCashGateway [cody]
3739
+ * Don't use billing_address for shipping_address in CyberSourceGateway [cody]
3740
+ * Remove @response instance variable from CardStreamGateway [cody]
3741
+ * Remove @response instance variable from BrainTreeGateway [cody]
3742
+ * Remove unused deal_with_cc method from BogusGateway [cody]
3743
+ * Remove test_result_from_cc_number completely from ActiveMerchant [cody]
3744
+ * Don't use billing_address for shipping_address in Realex [cody]
3745
+ * Update Realex to add support for cvv data. remove test_result_from_cc_number. [cody]
3746
+ * Update Protx to add support for avs and cvv data. remove test_result_from_cc_number. [cody]
3747
+ * Include ActiveMerchant::Utils module in test_helper and use generate_unique_id from the module instead of generate_order_id. [cody]
3748
+ * Update SecurePay tests to check for avs and cvv data. [cody]
3749
+ * Update SkipJack to add support for avs and cvv data. remove test_result_from_cc_number. [cody]
3750
+ * Move generate_unique_id to its own module [cody]
3751
+ * Update Viaklix to add support for avs and cvv data. remove test_result_from_cc_number. Truncate fields to avoid failure [cody]
3752
+ * Update PSL Card Gateway to add support for avs and cvv data. remove test_result_from_cc_number. [cody]
3753
+ * Update PlugNPayGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
3754
+ * Update PaymentExpressGateway to remove test_result_from_cc_number. [cody]
3755
+ * Update PaySecure to remove test_result_from_cc_number. [cody]
3756
+ * Update NetbillingGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
3757
+ * Replace all usage of :address with :billing_address in test cases [cody]
3758
+ * Remove sensitive data from NetRegistryGateway responses. Refactor gateway and tests. Remove test_result_from_cc_number. [cody]
3759
+ * Update VerifiGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
3760
+ * Small refactoring of UsaEpayGateway [cody]
3761
+ * Update UsaEpayGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
3762
+ * Update TrustCommerce docs now that the gateway falls back to SSL post when tclink isn't available [cody]
3763
+ * Change ARB to use correct :address1 key for addresses [cody]
3764
+ * No need for specialized recurring response for Authorize.net recurring billing [cody]
3765
+ * Update TransFirst to support avs and cvv data. Remove test_result_from_cc_number. [cody]
3766
+ * Maintain backwards compatibility with :address option for now in the Payflow gateways [cody]
3767
+ * Remove test_result_from_cc_number from SecurePayTech. Improve unit test coverage [cody]
3768
+ * Fix email option in PayflowGateway. Remove support for :address option. :billing_address and :shipping_address must now be passed in separately. [cody]
3769
+ * Make Bogus gateway's credit() method behave like capture [cody]
3770
+ * Add update and delete methods to update and delete records stored in the vault. [benjamin.curtis]
3771
+ * Add support for recurring_inquiry() to the PayflowGateway [dave.my...@contentfree.com]
3772
+ * Add support for Authorize.net Automated Recurring Billing (ARB) [vkurnavenkov, forestcarlisle, ianlotin...@hotmail.com, patrick.t.joyce]
3773
+ * Fix laser card regex [ladislav.martincik]
3774
+ * Cleanup whitepace in README [patrick.t.joyce]
3775
+ * Update ExactGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
3776
+ * Remove test_result_from_cc_number from eWay gateway. [cody]
3777
+ * Remove duplicate attr_reader definitions from all gateways [cody]
3778
+ * Remove useless tests raising Error [cody]
3779
+ * Update gateway templates [cody]
3780
+ * Fix Authorize.net test where authorize() was being called instead of purchase(). Perform some cleanup of the tests [ianlotin...@hotmail.com, cody]
3781
+ * Improve Authorize.net documentation based on the DataCashGateway docs [patrick.t.joyce]
3782
+ * Update EfsnetGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
3783
+ * Remove test_result_from_cc_number from DataCash. Improve unit test coverage [cody]
3784
+ * Update CyberSourceGateway to support avs and cvv results. Remove test_result_from_cc_number. [cody]
3785
+ * Remove match information from CVVResult [cody]
3786
+ * Remove Response#card_data. The application has access to the information anyway [cody]
3787
+ * Return the last 4 digits of the card number from the Response instead of the masked number [cody]
3788
+ * Actually use the shipping address in TrustCommerce [cody]
3789
+ * 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]
3790
+ * Fix remote CardStreamGateway tests [cody]
3791
+ * Map merchant AVS codes to street and postal match codes [cody]
3792
+ * Update CardStreamGateway to support avs and cvv data [cody]
3793
+ * Remove merchant_data hash. Add additional CVV codes [cody]
3794
+ * Update QuickpayGateway to support merchant_data hash. Remove test_result_from_cc_number. [cody]
3795
+ * Update LinkpointGateway to support merchant_data hash. Remove test_result_from_cc_number. [cody]
3796
+ * Update PsigateGateway to support merchant_data hash. Remove test_result_from_cc_number. [cody]
3797
+ * Update MonerisGateway to support merchant_data hash. Remove test_result_from_cc_number. [cody]
3798
+ * Remove AVS Message and CVV2 Message from params hash in Authorize.net [cody]
3799
+ * Update BrainTreeGateway to support merchant_data hash [cody]
3800
+ * Update PaypalGateway to support merchant_data hash [cody]
3801
+ * Update Payflow to support merchant_data hash [cody]
3802
+ * 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]
3803
+ * Rename CCVResult to CVVResult to be more aligned with ActiveMerchant's usage of the term verification value [cody]
3804
+ * Remove test_result_from_cc_number from Authorize.net in favour of mocking [cody]
3805
+ * Add merchant_data hash, which contains all of the card_data, avs_result, and ccv_result. [cody]
3806
+ * Add CCVResult for the Card Code Verification Result. Update Authorize.net to use the new class [cody]
3807
+ * Rename AVSResult#match_type AVSResult#match [cody]
3808
+ * Rename AVS::Result class to AVSResult [cody]
3809
+ * Convert Authorize.net gateway to use the new AVS module [cody]
3810
+ * Add AVS data to the Response object [cody]
3811
+ * Fix credentials for remote Authorize.net TEST MODE test [cody]
3812
+ * Add AVS module and AVS::Result class [cody]
3813
+ * Update base gateway class RDOC [cody]
3814
+ * 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]
3815
+ * Handle the return from 2Checkout [cody]
3816
+ * Automatically determine the credit card type when a type is not provided [cody]
3817
+ * Revert to initial implementation of LUHN algorithm because it all fits in one simple method [cody]
3818
+ * Remove unused api_cert_chain.crt file [cody]
3819
+ * Update PaypalGateway, and PaypalExpressGateway to send requests to the correct endpoints when using API signatures [cody]
3820
+ * Successful return code for HiTRUST is actually 00 [cody]
3821
+ * Make ActiveMerchant::Billing::Error a subclass of ActiveMerchant::ActiveMerchantError [cody]
3822
+ * Handle the return from the offsite payment gateways [cody]
3823
+ * Default HiTRUST order description to "Store purchase" [cody]
3824
+ * Fix HiTRUST field names [cody]
3825
+ * Add support for passing in the locale code [georg.fr...@meandevel.com]
3826
+ * Add support for the Offsite payment gateway HiTRUST [cody]
3827
+ * Accept SuccessWithWarning as success [cody]
3828
+ * Add a link to the LinkPoint staging server docs in remote_linkpoint_test.rb [cody]
3829
+ * Update Discover regex [cody]
3830
+ * Match full pan range of Maestro cards from 12 - 19 digits in length [cody]
3831
+ * Fix errors on base of CreditCard [josh.bassett]
3832
+ * Update product to use Rubigen instead of stolen Rails generator [cody]
3833
+ * Mimic directory structure of unit tests in remote tests [cody]
3834
+ * Restructure the location of the remote tests [cody]
3835
+ * Ensure DataCash order_id is limited to 30 characters [cody]
3836
+ * Return the pretty messages from PayJunction based on the return code [cody]
3837
+ * make CreditCard.require_verification_value = true the default [cody]
3838
+ * Use existing credit_card helper in credit card tests [cody]
3839
+ * Return the authrorization number of the original transaction in the SkipJack gateway [cody]
3840
+ * Update format of line items given to the gateway. Cleanup and uncomment unit tests [cody]
3841
+ * Add support for the SkipJack gateway [Bill Bereza, cody]
3842
+ * Make the bogus gateway easier to test by moving messages into constants [cody]
3843
+ * 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]
3844
+ * Catch Timeout::Error when posting data [cody]
3845
+ * Change order of loading ActionPack for tests since assert_success defined in ActionController::Assertions::DeprecatedAssertions inteferes with ActiveMerchant's definition [cody]
3846
+ * Catch Errno::ETIMEDOUT and extend open and read timeouts to 60 seconds [cody]
3847
+ * Add address2 to the billing address of Viaklix transactions [cody]
3848
+ * Improve Psigate generic error message [cody]
3849
+ * Fix small errors in Psigate documentation [cody]
3850
+ * Add Response#fraud_review? query method to the response. Allows gateways to indicate that a payment is pending review by the fraud service [cody]
3851
+ * Handle Errno::ECONNRESET when posting data [cody]
3852
+ * Fix broken USA ePay URL [cody]
3853
+ * Update RequiresParameters to support HashWithIndifferentAccess [cody]
3854
+ * Add support for SecurePayTech payment gateway [Jasper Bryant-Greene]
3855
+ * Detect when test credentials are being used with PayJunction [cody]
3856
+ * Update documentation about TrustCommerce void [cody]
3857
+ * Add void to TrustCommerce [jesse.c.scott]
3858
+ * Add support for echecks to the BrainTree gateway [Jeremy Voorhis]
3859
+ * Fix before_validate and validate methods in CreditCard [rick.denatale]
3860
+ * Add support for Netbilling payment gateway [cody]
3861
+ * Pass in N/A for unknown states when a country is present in PaypalGateway [cody]
3862
+ * Strip non alpha chars from order_id in Payflow gateway, as Paymentech Tampa can't handle them [cody]
3863
+ * Add support for the PaySecure payment gateway [cody]
3864
+ * Add support for descriptions in Authorize.net credits [shiva.kaul]
3865
+ * Great cleanup and improvement of CreditCard code, tests, and docs [James Herdman]
3866
+
3867
+ == Version 1.2.1
3868
+
3869
+ * Fix remote PayPal tests [cody]
3870
+
3871
+ == Version 1.2.0
3872
+
3873
+ * Update Linkpoint tests to remove useless pem file [cody]
3874
+ * Use symbols for CreditCard error messages, since errors have indifferent access [cody]
3875
+ * Improve CreditCard error messages [George Ogata]
3876
+ * Change deny to assert_false, and deny_success to assert_failure. Remove Gateway.gateway, as it is available from Base [cody]
3877
+ * Improve documentation, and test coverage [James Herdman]
3878
+ * Refactor MonerisGateway, improve test coverage and documentation [James Herdman]
3879
+ * Add support for crediting to Moneris [James Herdman]
3880
+ * Send state N/A in Payflow when the state is blank. Fixes UK PayPal Express payments when not providing a state [cody]
3881
+ * 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]
3882
+ * Add support for password protected pem files [cody]
3883
+ * Add support for Concord Efsnet payment gateway [snacktime]
3884
+ * Fix dependency loading for gateways that are subclasses [cody]
3885
+ * Add Braintree payment gateway [Michael J. Mangino]
3886
+ * Add support for PayPal API signatures [Benjamin Curtis, cody]
3887
+ * Add payment gateway Viaklix [Sal Scotto, cody]
3888
+ * Add Australian payment gateway NetRegistry [George Ogata]
3889
+ * Take order email from the options hash instead of the address for CyberSource [cody]
3890
+ * Use an array for LineItems when calculating tax in CyberSource gateway [cody]
3891
+ * Add CyberSource gateway [Matt Margolis]
3892
+ * Sanitize Protx order id [cody]
3893
+ * Fix support for electron in Protx [cody]
3894
+ * Add support for Protx [shiftx, cody]
3895
+ * Use undef_method with a single argument in SecurePay to prevent JRuby from choking on it. [jonathan.l.bartlett]
3896
+ * Default address_override to 0 for PayPal Website Payments Standard payments. [cody]
3897
+ * Enhance credit card error messages [manfred]
3898
+ * Use HashWithIndifferentAccess for CreditCard for compatibility with Rails applications [michael.j.mangino]
3899
+ * Fix nil exception when no response reason text is found in Authorize.net [cody]
3900
+ * Add support for PayJunction [Matt Sanders]
3901
+ * 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.
3902
+ * Remove switch patterns from card detection that were eliminated on July 1, 2007 [cody]
3903
+ * Format the issue number in Payflow requests to always be 2 digits [cody]
3904
+ * Move application_id to Gateway and Helper class respectively [cody]
3905
+ * Improve TrustCommerce documentation [cody]
3906
+ * Add credit to Payflow [cody]
3907
+ * Add support for the Plug 'N Pay gateway [ryan.norbauer, cody]
3908
+ * Add support for ItemTotal, Shipping, Handling, and Tax amounts in the PayPal Express and PayPal gateways [baldwindavid, cody]
3909
+ * Add page customization options to the PaypalExpress, and PayflowExpress gateways [ cpjolicoeur, cody]
3910
+ * Add Verifi gateway [Paul Hepworth]
3911
+ * Add a PayflowResponse object with a profile_id accessor method. Return the correct authorization number on recurring actions [cody]
3912
+ * Add support for an initial transaction with recurring payments [findchris, cody]
3913
+ * Add support for email receipts to recurring Payflow Payments [Rick Olson]
3914
+ * Ensure the ButtonSource isn't too long [cody]
3915
+ * Add ButtonSource to Paypal and PaypalExpress gateways [cody]
3916
+ * Rename application to application_id and place it on Base, so it can be set once and forgotten about [cody]
3917
+ * Add ButtonSource field to PayflowExpress gateway [cody]
3918
+ * Add a field for the bn to the PayPal helper [cody]
3919
+ * Add remote secure pay test and correctly define test? [cody]
3920
+ * Undefine unsupported methods from SecurePay [cody]
3921
+ * Enhance the TransFirst error message for declined transactions [cody]
3922
+ * Add initial support for TransFirst gateway [cody]
3923
+ * Deprecate certification_id in Payflow gateways [cody]
3924
+ * Work around required PayPal state fields for countries that don't require states [cody]
3925
+ * Add metadata to SecurePay gateway [cody]
3926
+ * Add initial support for the SecurePay gateway using the Authorize.net translator [cody]
3927
+ * Add the homepage_url and display_name accessors to each gateway [cody]
3928
+ * 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]
3929
+ * Add American Express card to Psigate [cody]
3930
+ * Send N/A to PayPal in the PayPal Helper when we don't know the UK county [cody]
3931
+ * Actually pass the amount of the capture through to Payflow [cody]
3932
+ * Update ExactGateway test and test mode [cody]
3933
+ * Remove unused method in PslCardGateway [cody]
3934
+ * Add updated credit card tests [cody]
3935
+ * Update and test PslCardGateway [cody]
3936
+ * Add Laser card type [cody]
3937
+ * Update Nochex documentation [cody]
3938
+ * Sanitize the Realex order_id [cody]
3939
+ * Add support for Irish Realex payment gateway [John Ward, cody]
3940
+ * Move credit_card helper method to the test_helper [cody]
3941
+ * Update PayflowExpressResponse to match the interface of the PayflowExpressResponse. Add :no_shipping and :address_override options to PayflowExpress [cody]
3942
+ * Add a currency option to the Payflow and Paypal gateways [cody]
3943
+ * PaypalExpress should use the shipping address, not the billing address [cody]
3944
+ * Allow overriding the user with Payflow so that a vendor and user can be provided when making requests [cody]
3945
+ * 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]
3946
+ * Add ability to perform reference transactions with Payflow [Al Evans, cody]
3947
+ * Enhance recurring Payflow tests and recurring_inquiry [Al Evans]
3948
+ * Add recurring payments to Payflow [Rick Olson]
3949
+ * Improve the error message generated by requires! [cody]
3950
+ * Update credit card regular expressions and update Quickpay gateway with tests for new cards [cody]
3951
+ * Add support for token based payments to PaymentExpress [Nik Wakelin]
3952
+ * Refactor default_currency to the base gateway class [cody]
3953
+ * Clean unsupported characters from the Quickpay ordernum [cody]
3954
+ * Call the :sale and :authorization in QuickpayGateway [cody]
3955
+ * Add Danish gateway Quickpay [cody]
3956
+ * Remove redundant hash brackets from generator template [cody]
3957
+ * Add additional options to the PayPal Website Payments Standard Helper [Rick Olson]
3958
+ * Move generate_unique_id method to Gateway class so other gateways can also use it [cody]
3959
+ * Allow notification name / value pairs to have a . in the name like checkout.x = 400 [cody]
3960
+ * Fix PaypalExpressGateway#purchase to have the same method signature as other gateways [cody]
3961
+ * Cargo cult off the rails unique id generator instead of UUID library [cody]
3962
+ * Add uuid-1.0.3 for generating random request UUIDs [cody]
3963
+ * Remove mock_methods and http mock from the library [cody]
3964
+ * PaypalExpress cannot setup a payment for 0 dollars. If the amount is zero then setup a payment for $1. [cody]
3965
+ * Small changes to PslCard gateway [cody]
3966
+ * Fix Money dependency with PslCard gateway [cody]
3967
+ * Add PslCard payment gateway [MoneySpyder http://moneyspyder.co.uk]
3968
+ * Scrub the card number, expiry, and CVV code from the response [cody]
3969
+ * Use test? query for checking test mode [cody]
3970
+ * Add support for the E-xact Payment Gateway [James Edward Gray II, cody]
3971
+ * Fix partially broken method of dealing with phone numbers in the PayPal Helper [cody]
3972
+ * Update remote tests for PaymentExpress [cody]
3973
+ * Add Content-Type header to PaymentExpress post [cody]
3974
+ * Use DECLINED as the message for declined transactions in the PaymentExpress remote tests [cody]
3975
+ * Add JCB as a supported card type for the PaymentExpressGateway [cody]
3976
+ * Rename DpsGateway to PaymentExpressGateway [cody]
3977
+ * Add DPS Payment Express gateway (NZ) [dgjones, cody]
3978
+ * Remove duplicate and incorrect expdate method from Authorize.net [cody]
3979
+ * Allow authorization and purchase using a billing_id retrieved from TrustCommerce citadel [jesse.c.scott]
3980
+ * Don't return a frozen string from CreditCard.type? [cody]
3981
+ * Update remote Psigate test to ensure using a verification value doesn't break anything [cody]
3982
+ * Update remote Moneris test to ensure using a verification value doesn't break anything [cody]
3983
+ * Fix Solo issue number with CardStream gateway and improve test coverage [cody]
3984
+ * Add CardStream gateway [Jonah Fox, Thomas Nichols, cody]
3985
+ * Verify Peer in PayPal notifications and add account method [cody]
3986
+
3987
+ == Version 1.1.0
3988
+
3989
+ * Add unique_id option to PayPal mass payments [Haig]
3990
+ * Fix expiry date in USA ePay [cody]
3991
+ * Fix PayPal Payments Pro UK with Switch & Solo cards [cody]
3992
+ * Add reauthorization to PaypalGateway and PaypalExpressGateway [dorrenchen]
3993
+ * Update DataCash tests and format merchant reference number to meet DataCash's requirements [MoneySpyder, cody]
3994
+ * Add Datacash gateway [MoneySpyder, cody]
3995
+ * VERIFY_PEER on all SSL requests [cody]
3996
+ * Add support for 2Checkout [cody]
3997
+
3998
+ == Version 1.0.3
3999
+
4000
+ * Add support for PayPal mass payments to the PaypalGateway and the PaypalExpressGateway [Brandon Keepers]
4001
+ * Add a credit method to Authorize.net [cody]
4002
+
4003
+ == Version 1.0.2
4004
+
4005
+ * Add support for OrderDescription, Payer, and InvoiceID fields in PaypalGateway [cody]
4006
+
4007
+ == Version 1.0.1
4008
+
4009
+ * Add support for crediting to PayPal [cody, Haig]
4010
+
4011
+ == Version 1.0.0
4012
+
4013
+ * Add discover to list of supported card types for Authorize.net
4014
+ * Fix Psigate crediting [sean.alien8@gmail.com]
4015
+ * Fix dependency loading of tests
4016
+ * Add methods for storing credit cards to the Bogus gateway [Jim Kane]
4017
+ * Fix bugs in expiration dates. [Jim Kane]
4018
+ * Fixed bugs related to authorized.net [Rick Olson]
4019
+ * Linkpoint is now a full featured backend for active merchant [Ryan Heneise]
4020
+ * Added linkpoint support [Ryan Heneise]
4021
+ * Added trust commerce gateway [Hans Friedrich]
4022
+ * Removed shipping stuff until there is time to implement it properly
4023
+ * The library now rejects money amounts which are not either cents as integer or a Money object
4024
+ * Moneris now uses the same layout as the authorized.net plugin
4025
+ * Added authorized.net
4026
+ * Changed default to :test mode. Set to production with ActiveMerchant::Billing::Base.gateway_mode = :production
4027
+ * More refactoring
4028
+ * 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.
4029
+ * Added Moneris support
4030
+ * Credit card in memory object resembling a AR object
4031
+ * Credit card validation methods as static methods of the credit card object
4032
+
4033
+ == PlanetArgon fork for integrating Merchant eSolutions gateway