activemerchant 1.42.6 → 1.90.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -13
- data/CHANGELOG +1420 -2
- data/CONTRIBUTORS +106 -0
- data/README.md +107 -103
- data/lib/active_merchant/billing/apple_pay_payment_token.rb +22 -0
- data/lib/active_merchant/billing/avs_result.rb +12 -13
- data/lib/active_merchant/billing/base.rb +13 -16
- data/lib/active_merchant/billing/check.rb +35 -24
- data/lib/active_merchant/billing/compatibility.rb +117 -0
- data/lib/active_merchant/billing/credit_card.rb +196 -81
- data/lib/active_merchant/billing/credit_card_formatting.rb +6 -4
- data/lib/active_merchant/billing/credit_card_methods.rb +199 -75
- data/lib/active_merchant/billing/cvv_result.rb +15 -15
- data/lib/active_merchant/billing/gateway.rb +171 -39
- data/lib/active_merchant/billing/gateways/adyen.rb +380 -0
- data/lib/active_merchant/billing/gateways/allied_wallet.rb +205 -0
- data/lib/active_merchant/billing/gateways/authorize_net.rb +933 -604
- data/lib/active_merchant/billing/gateways/authorize_net_arb.rb +417 -0
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +74 -54
- data/lib/active_merchant/billing/gateways/axcessms.rb +181 -0
- data/lib/active_merchant/billing/gateways/balanced.rb +130 -370
- data/lib/active_merchant/billing/gateways/bank_frick.rb +225 -0
- data/lib/active_merchant/billing/gateways/banwire.rb +23 -12
- data/lib/active_merchant/billing/gateways/barclaycard_smartpay.rb +351 -0
- data/lib/active_merchant/billing/gateways/barclays_epdq_extra_plus.rb +6 -6
- data/lib/active_merchant/billing/gateways/be2bill.rb +2 -2
- data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +109 -32
- data/lib/active_merchant/billing/gateways/beanstream.rb +59 -13
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +12 -9
- data/lib/active_merchant/billing/gateways/blue_pay.rb +520 -498
- data/lib/active_merchant/billing/gateways/blue_snap.rb +347 -0
- data/lib/active_merchant/billing/gateways/bogus.rb +80 -46
- data/lib/active_merchant/billing/gateways/borgun.rb +220 -0
- data/lib/active_merchant/billing/gateways/bpoint.rb +277 -0
- data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +15 -2
- data/lib/active_merchant/billing/gateways/braintree.rb +2 -2
- data/lib/active_merchant/billing/gateways/braintree_blue.rb +311 -121
- data/lib/active_merchant/billing/gateways/braintree_orange.rb +4 -4
- data/lib/active_merchant/billing/gateways/bridge_pay.rb +244 -0
- data/lib/active_merchant/billing/gateways/cams.rb +230 -0
- data/lib/active_merchant/billing/gateways/card_connect.rb +311 -0
- data/lib/active_merchant/billing/gateways/card_save.rb +6 -7
- data/lib/active_merchant/billing/gateways/card_stream.rb +235 -89
- data/lib/active_merchant/billing/gateways/cardknox.rb +327 -0
- data/lib/active_merchant/billing/gateways/cardprocess.rb +254 -0
- data/lib/active_merchant/billing/gateways/cashnet.rb +219 -0
- data/lib/active_merchant/billing/gateways/cc5.rb +50 -8
- data/lib/active_merchant/billing/gateways/cecabank.rb +27 -14
- data/lib/active_merchant/billing/gateways/cenpos.rb +327 -0
- data/lib/active_merchant/billing/gateways/checkout.rb +214 -0
- data/lib/active_merchant/billing/gateways/checkout_v2.rb +233 -0
- data/lib/active_merchant/billing/gateways/citrus_pay.rb +22 -0
- data/lib/active_merchant/billing/gateways/clearhaus.rb +220 -0
- data/lib/active_merchant/billing/gateways/commercegate.rb +142 -0
- data/lib/active_merchant/billing/gateways/conekta.rb +91 -97
- data/lib/active_merchant/billing/gateways/creditcall.rb +271 -0
- data/lib/active_merchant/billing/gateways/credorax.rb +356 -0
- data/lib/active_merchant/billing/gateways/ct_payment.rb +268 -0
- data/lib/active_merchant/billing/gateways/culqi.rb +277 -0
- data/lib/active_merchant/billing/gateways/cyber_source.rb +294 -158
- data/lib/active_merchant/billing/gateways/d_local.rb +226 -0
- data/lib/active_merchant/billing/gateways/data_cash.rb +59 -347
- data/lib/active_merchant/billing/gateways/dibs.rb +199 -0
- data/lib/active_merchant/billing/gateways/digitzs.rb +292 -0
- data/lib/active_merchant/billing/gateways/ebanx.rb +296 -0
- data/lib/active_merchant/billing/gateways/efsnet.rb +24 -39
- data/lib/active_merchant/billing/gateways/elavon.rb +146 -147
- data/lib/active_merchant/billing/gateways/element.rb +356 -0
- data/lib/active_merchant/billing/gateways/epay.rb +41 -31
- data/lib/active_merchant/billing/gateways/evo_ca.rb +1 -1
- data/lib/active_merchant/billing/gateways/eway.rb +79 -78
- data/lib/active_merchant/billing/gateways/eway_managed.rb +35 -36
- data/lib/active_merchant/billing/gateways/eway_rapid.rb +369 -228
- data/lib/active_merchant/billing/gateways/exact.rb +32 -26
- data/lib/active_merchant/billing/gateways/ezic.rb +195 -0
- data/lib/active_merchant/billing/gateways/fat_zebra.rb +90 -64
- data/lib/active_merchant/billing/gateways/federated_canada.rb +6 -14
- data/lib/active_merchant/billing/gateways/finansbank.rb +3 -3
- data/lib/active_merchant/billing/gateways/first_giving.rb +142 -0
- data/lib/active_merchant/billing/gateways/first_pay.rb +128 -122
- data/lib/active_merchant/billing/gateways/firstdata_e4.rb +190 -64
- data/lib/active_merchant/billing/gateways/firstdata_e4_v27.rb +446 -0
- data/lib/active_merchant/billing/gateways/flo2cash.rb +215 -0
- data/lib/active_merchant/billing/gateways/flo2cash_simple.rb +20 -0
- data/lib/active_merchant/billing/gateways/forte.rb +270 -0
- data/lib/active_merchant/billing/gateways/garanti.rb +29 -27
- data/lib/active_merchant/billing/gateways/global_collect.rb +340 -0
- data/lib/active_merchant/billing/gateways/global_transport.rb +194 -0
- data/lib/active_merchant/billing/gateways/hdfc.rb +35 -36
- data/lib/active_merchant/billing/gateways/hps.rb +305 -0
- data/lib/active_merchant/billing/gateways/iats_payments.rb +271 -16
- data/lib/active_merchant/billing/gateways/in_context_paypal_express.rb +15 -0
- data/lib/active_merchant/billing/gateways/inspire.rb +29 -32
- data/lib/active_merchant/billing/gateways/instapay.rb +5 -6
- data/lib/active_merchant/billing/gateways/ipp.rb +175 -0
- data/lib/active_merchant/billing/gateways/iridium.rb +247 -41
- data/lib/active_merchant/billing/gateways/itransact.rb +4 -5
- data/lib/active_merchant/billing/gateways/iveri.rb +251 -0
- data/lib/active_merchant/billing/gateways/jetpay.rb +198 -71
- data/lib/active_merchant/billing/gateways/jetpay_v2.rb +437 -0
- data/lib/active_merchant/billing/gateways/komoju.rb +115 -0
- data/lib/active_merchant/billing/gateways/kushki.rb +219 -0
- data/lib/active_merchant/billing/gateways/latitude19.rb +411 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +45 -43
- data/lib/active_merchant/billing/gateways/litle.rb +328 -444
- data/lib/active_merchant/billing/gateways/mastercard.rb +267 -0
- data/lib/active_merchant/billing/gateways/maxipago.rb +145 -115
- data/lib/active_merchant/billing/gateways/mercado_pago.rb +277 -0
- data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +37 -19
- data/lib/active_merchant/billing/gateways/merchant_one.rb +13 -15
- data/lib/active_merchant/billing/gateways/merchant_partners.rb +245 -0
- data/lib/active_merchant/billing/gateways/merchant_ware.rb +57 -60
- data/lib/active_merchant/billing/gateways/merchant_ware_version_four.rb +59 -48
- data/lib/active_merchant/billing/gateways/merchant_warrior.rb +38 -19
- data/lib/active_merchant/billing/gateways/mercury.rb +77 -54
- data/lib/active_merchant/billing/gateways/metrics_global.rb +11 -30
- data/lib/active_merchant/billing/gateways/micropayment.rb +183 -0
- data/lib/active_merchant/billing/gateways/migs.rb +81 -22
- data/lib/active_merchant/billing/gateways/modern_payments.rb +3 -3
- data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +23 -25
- data/lib/active_merchant/billing/gateways/monei.rb +307 -0
- data/lib/active_merchant/billing/gateways/moneris.rb +146 -64
- data/lib/active_merchant/billing/gateways/moneris_us.rb +197 -53
- data/lib/active_merchant/billing/gateways/money_movers.rb +6 -15
- data/lib/active_merchant/billing/gateways/mundipagg.rb +292 -0
- data/lib/active_merchant/billing/gateways/nab_transact.rb +86 -64
- data/lib/active_merchant/billing/gateways/ncr_secure_pay.rb +165 -0
- data/lib/active_merchant/billing/gateways/net_registry.rb +11 -5
- data/lib/active_merchant/billing/gateways/netaxept.rb +21 -22
- data/lib/active_merchant/billing/gateways/netbanx.rb +290 -0
- data/lib/active_merchant/billing/gateways/netbilling.rb +70 -35
- data/lib/active_merchant/billing/gateways/netpay.rb +5 -6
- data/lib/active_merchant/billing/gateways/network_merchants.rb +241 -0
- data/lib/active_merchant/billing/gateways/nmi.rb +274 -10
- data/lib/active_merchant/billing/gateways/ogone.rb +90 -47
- data/lib/active_merchant/billing/gateways/omise.rb +324 -0
- data/lib/active_merchant/billing/gateways/openpay.rb +48 -20
- data/lib/active_merchant/billing/gateways/opp.rb +369 -0
- data/lib/active_merchant/billing/gateways/optimal_payment.rb +79 -44
- data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +22 -21
- data/lib/active_merchant/billing/gateways/orbital.rb +346 -102
- data/lib/active_merchant/billing/gateways/pac_net_raven.rb +48 -29
- data/lib/active_merchant/billing/gateways/pagarme.rb +246 -0
- data/lib/active_merchant/billing/gateways/pago_facil.rb +122 -0
- data/lib/active_merchant/billing/gateways/pay_conex.rb +245 -0
- data/lib/active_merchant/billing/gateways/pay_gate_xml.rb +67 -48
- data/lib/active_merchant/billing/gateways/pay_hub.rb +213 -0
- data/lib/active_merchant/billing/gateways/pay_junction.rb +20 -26
- data/lib/active_merchant/billing/gateways/pay_junction_v2.rb +188 -0
- data/lib/active_merchant/billing/gateways/pay_secure.rb +7 -15
- data/lib/active_merchant/billing/gateways/paybox_direct.rb +40 -36
- data/lib/active_merchant/billing/gateways/payeezy.rb +410 -0
- data/lib/active_merchant/billing/gateways/payex.rb +38 -30
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +62 -36
- data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +11 -7
- data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +3 -3
- data/lib/active_merchant/billing/gateways/payflow.rb +74 -27
- data/lib/active_merchant/billing/gateways/payflow_express.rb +77 -81
- data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +2 -3
- data/lib/active_merchant/billing/gateways/payflow_uk.rb +5 -6
- data/lib/active_merchant/billing/gateways/payment_express.rb +54 -45
- data/lib/active_merchant/billing/gateways/paymentez.rb +304 -0
- data/lib/active_merchant/billing/gateways/paymill.rb +160 -66
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +54 -7
- data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +4 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +17 -3
- data/lib/active_merchant/billing/gateways/paypal.rb +36 -27
- data/lib/active_merchant/billing/gateways/paypal_ca.rb +1 -1
- data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +7 -6
- data/lib/active_merchant/billing/gateways/paypal_express.rb +32 -4
- data/lib/active_merchant/billing/gateways/paypal_express_common.rb +3 -3
- data/lib/active_merchant/billing/gateways/payscout.rb +2 -13
- data/lib/active_merchant/billing/gateways/paystation.rb +96 -88
- data/lib/active_merchant/billing/gateways/payu_in.rb +248 -0
- data/lib/active_merchant/billing/gateways/payu_latam.rb +445 -0
- data/lib/active_merchant/billing/gateways/payway.rb +8 -8
- data/lib/active_merchant/billing/gateways/pin.rb +74 -18
- data/lib/active_merchant/billing/gateways/plugnpay.rb +66 -76
- data/lib/active_merchant/billing/gateways/pro_pay.rb +326 -0
- data/lib/active_merchant/billing/gateways/psigate.rb +30 -30
- data/lib/active_merchant/billing/gateways/psl_card.rb +27 -34
- data/lib/active_merchant/billing/gateways/qbms.rb +65 -54
- data/lib/active_merchant/billing/gateways/quantum.rb +18 -18
- data/lib/active_merchant/billing/gateways/quickbooks.rb +290 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_common.rb +184 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_v10.rb +295 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_v4to7.rb +226 -0
- data/lib/active_merchant/billing/gateways/quickpay.rb +10 -350
- data/lib/active_merchant/billing/gateways/qvalent.rb +236 -0
- data/lib/active_merchant/billing/gateways/realex.rb +78 -48
- data/lib/active_merchant/billing/gateways/redsys.rb +310 -170
- data/lib/active_merchant/billing/gateways/s5.rb +246 -0
- data/lib/active_merchant/billing/gateways/safe_charge.rb +262 -0
- data/lib/active_merchant/billing/gateways/sage.rb +415 -119
- data/lib/active_merchant/billing/gateways/sage_pay.rb +195 -90
- data/lib/active_merchant/billing/gateways/sallie_mae.rb +11 -12
- data/lib/active_merchant/billing/gateways/secure_net.rb +51 -43
- data/lib/active_merchant/billing/gateways/secure_pay.rb +182 -10
- data/lib/active_merchant/billing/gateways/secure_pay_au.rb +25 -14
- data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +10 -18
- data/lib/active_merchant/billing/gateways/securion_pay.rb +264 -0
- data/lib/active_merchant/billing/gateways/skip_jack.rb +35 -38
- data/lib/active_merchant/billing/gateways/smart_ps.rb +50 -42
- data/lib/active_merchant/billing/gateways/so_easy_pay.rb +9 -9
- data/lib/active_merchant/billing/gateways/spreedly_core.rb +62 -12
- data/lib/active_merchant/billing/gateways/stripe.rb +536 -103
- data/lib/active_merchant/billing/gateways/swipe_checkout.rb +12 -18
- data/lib/active_merchant/billing/gateways/telr.rb +274 -0
- data/lib/active_merchant/billing/gateways/tns.rb +22 -0
- data/lib/active_merchant/billing/gateways/trans_first.rb +143 -30
- data/lib/active_merchant/billing/gateways/trans_first_transaction_express.rb +608 -0
- data/lib/active_merchant/billing/gateways/transact_pro.rb +224 -0
- data/lib/active_merchant/billing/gateways/transax.rb +5 -6
- data/lib/active_merchant/billing/gateways/transnational.rb +2 -232
- data/lib/active_merchant/billing/gateways/trexle.rb +218 -0
- data/lib/active_merchant/billing/gateways/trust_commerce.rb +86 -57
- data/lib/active_merchant/billing/gateways/usa_epay.rb +4 -4
- data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +196 -89
- data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +157 -32
- data/lib/active_merchant/billing/gateways/vanco.rb +294 -0
- data/lib/active_merchant/billing/gateways/verifi.rb +42 -49
- data/lib/active_merchant/billing/gateways/viaklix.rb +11 -24
- data/lib/active_merchant/billing/gateways/visanet_peru.rb +233 -0
- data/lib/active_merchant/billing/gateways/webpay.rb +26 -28
- data/lib/active_merchant/billing/gateways/wepay.rb +237 -0
- data/lib/active_merchant/billing/gateways/wirecard.rb +153 -31
- data/lib/active_merchant/billing/gateways/world_net.rb +344 -0
- data/lib/active_merchant/billing/gateways/worldpay.rb +207 -63
- data/lib/active_merchant/billing/gateways/worldpay_online_payments.rb +215 -0
- data/lib/active_merchant/billing/gateways/worldpay_us.rb +221 -0
- data/lib/active_merchant/billing/gateways.rb +8 -11
- data/lib/active_merchant/billing/model.rb +30 -0
- data/lib/active_merchant/billing/network_tokenization_credit_card.rb +39 -0
- data/lib/active_merchant/billing/payment_token.rb +21 -0
- data/lib/active_merchant/billing/rails.rb +3 -0
- data/lib/active_merchant/billing/response.rb +31 -24
- data/lib/active_merchant/billing.rb +7 -1
- data/lib/active_merchant/connection.rb +195 -0
- data/lib/active_merchant/country.rb +335 -0
- data/lib/active_merchant/empty.rb +20 -0
- data/lib/active_merchant/errors.rb +35 -0
- data/lib/active_merchant/net_http_ssl_connection.rb +10 -0
- data/lib/active_merchant/network_connection_retries.rb +80 -0
- data/lib/active_merchant/post_data.rb +25 -0
- data/lib/active_merchant/posts_data.rb +92 -0
- data/lib/active_merchant/version.rb +1 -1
- data/lib/active_merchant.rb +23 -27
- data/lib/activemerchant.rb +1 -1
- data/lib/certs/cacert.pem +3988 -0
- data/lib/support/gateway_support.rb +7 -9
- data/lib/support/outbound_hosts.rb +13 -10
- data/lib/support/ssl_verify.rb +6 -7
- data/lib/support/ssl_version.rb +87 -0
- metadata +148 -323
- checksums.yaml.gz.sig +0 -0
- data/gem-public_cert.pem +0 -21
- data/lib/active_merchant/billing/expiry_date.rb +0 -34
- data/lib/active_merchant/billing/gateways/app55.rb +0 -185
- data/lib/active_merchant/billing/gateways/barclays_epdq.rb +0 -314
- data/lib/active_merchant/billing/gateways/certo_direct.rb +0 -277
- data/lib/active_merchant/billing/gateways/ideal/ideal_base.rb +0 -249
- data/lib/active_merchant/billing/gateways/ideal/ideal_rabobank.pem +0 -13
- data/lib/active_merchant/billing/gateways/ideal/ideal_response.rb +0 -29
- data/lib/active_merchant/billing/gateways/ideal_rabobank.rb +0 -66
- data/lib/active_merchant/billing/gateways/orbital/avs_result.rb +0 -93
- data/lib/active_merchant/billing/gateways/orbital/cvv_result.rb +0 -34
- data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +0 -93
- data/lib/active_merchant/billing/gateways/sage/sage_core.rb +0 -114
- data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +0 -102
- data/lib/active_merchant/billing/gateways/samurai.rb +0 -118
- data/lib/active_merchant/billing/gateways/vindicia.rb +0 -361
- data/lib/active_merchant/billing/integrations/a1agregator/helper.rb +0 -31
- data/lib/active_merchant/billing/integrations/a1agregator/notification.rb +0 -186
- data/lib/active_merchant/billing/integrations/a1agregator/status.rb +0 -38
- data/lib/active_merchant/billing/integrations/a1agregator.rb +0 -26
- data/lib/active_merchant/billing/integrations/action_view_helper.rb +0 -74
- data/lib/active_merchant/billing/integrations/alipay/helper.rb +0 -34
- data/lib/active_merchant/billing/integrations/alipay/notification.rb +0 -101
- data/lib/active_merchant/billing/integrations/alipay.rb +0 -18
- data/lib/active_merchant/billing/integrations/authorize_net_sim/helper.rb +0 -229
- data/lib/active_merchant/billing/integrations/authorize_net_sim/notification.rb +0 -340
- data/lib/active_merchant/billing/integrations/authorize_net_sim.rb +0 -38
- data/lib/active_merchant/billing/integrations/bit_pay/helper.rb +0 -64
- data/lib/active_merchant/billing/integrations/bit_pay/notification.rb +0 -74
- data/lib/active_merchant/billing/integrations/bit_pay/return.rb +0 -10
- data/lib/active_merchant/billing/integrations/bit_pay.rb +0 -30
- data/lib/active_merchant/billing/integrations/bogus/helper.rb +0 -17
- data/lib/active_merchant/billing/integrations/bogus/notification.rb +0 -11
- data/lib/active_merchant/billing/integrations/bogus/return.rb +0 -10
- data/lib/active_merchant/billing/integrations/bogus.rb +0 -23
- data/lib/active_merchant/billing/integrations/chronopay/helper.rb +0 -120
- data/lib/active_merchant/billing/integrations/chronopay/notification.rb +0 -158
- data/lib/active_merchant/billing/integrations/chronopay/return.rb +0 -10
- data/lib/active_merchant/billing/integrations/chronopay.rb +0 -23
- data/lib/active_merchant/billing/integrations/citrus/helper.rb +0 -40
- data/lib/active_merchant/billing/integrations/citrus/notification.rb +0 -133
- data/lib/active_merchant/billing/integrations/citrus/return.rb +0 -40
- data/lib/active_merchant/billing/integrations/citrus.rb +0 -51
- data/lib/active_merchant/billing/integrations/direc_pay/helper.rb +0 -200
- data/lib/active_merchant/billing/integrations/direc_pay/notification.rb +0 -76
- data/lib/active_merchant/billing/integrations/direc_pay/return.rb +0 -32
- data/lib/active_merchant/billing/integrations/direc_pay/status.rb +0 -37
- data/lib/active_merchant/billing/integrations/direc_pay.rb +0 -41
- data/lib/active_merchant/billing/integrations/directebanking/helper.rb +0 -90
- data/lib/active_merchant/billing/integrations/directebanking/notification.rb +0 -120
- data/lib/active_merchant/billing/integrations/directebanking/return.rb +0 -11
- data/lib/active_merchant/billing/integrations/directebanking.rb +0 -47
- data/lib/active_merchant/billing/integrations/doku/helper.rb +0 -102
- data/lib/active_merchant/billing/integrations/doku/notification.rb +0 -69
- data/lib/active_merchant/billing/integrations/doku/return.rb +0 -10
- data/lib/active_merchant/billing/integrations/doku.rb +0 -24
- data/lib/active_merchant/billing/integrations/dotpay/helper.rb +0 -77
- data/lib/active_merchant/billing/integrations/dotpay/notification.rb +0 -86
- data/lib/active_merchant/billing/integrations/dotpay/return.rb +0 -11
- data/lib/active_merchant/billing/integrations/dotpay.rb +0 -22
- data/lib/active_merchant/billing/integrations/dwolla/common.rb +0 -23
- data/lib/active_merchant/billing/integrations/dwolla/helper.rb +0 -43
- data/lib/active_merchant/billing/integrations/dwolla/notification.rb +0 -64
- data/lib/active_merchant/billing/integrations/dwolla/return.rb +0 -49
- data/lib/active_merchant/billing/integrations/dwolla.rb +0 -23
- data/lib/active_merchant/billing/integrations/e_payment_plans/helper.rb +0 -34
- data/lib/active_merchant/billing/integrations/e_payment_plans/notification.rb +0 -84
- data/lib/active_merchant/billing/integrations/e_payment_plans.rb +0 -48
- data/lib/active_merchant/billing/integrations/easy_pay/common.rb +0 -40
- data/lib/active_merchant/billing/integrations/easy_pay/helper.rb +0 -36
- data/lib/active_merchant/billing/integrations/easy_pay/notification.rb +0 -59
- data/lib/active_merchant/billing/integrations/easy_pay.rb +0 -30
- data/lib/active_merchant/billing/integrations/epay/helper.rb +0 -55
- data/lib/active_merchant/billing/integrations/epay/notification.rb +0 -110
- data/lib/active_merchant/billing/integrations/epay.rb +0 -21
- data/lib/active_merchant/billing/integrations/first_data/helper.rb +0 -61
- data/lib/active_merchant/billing/integrations/first_data/notification.rb +0 -56
- data/lib/active_merchant/billing/integrations/first_data.rb +0 -38
- data/lib/active_merchant/billing/integrations/gestpay/common.rb +0 -42
- data/lib/active_merchant/billing/integrations/gestpay/helper.rb +0 -70
- data/lib/active_merchant/billing/integrations/gestpay/notification.rb +0 -85
- data/lib/active_merchant/billing/integrations/gestpay/return.rb +0 -10
- data/lib/active_merchant/billing/integrations/gestpay.rb +0 -25
- data/lib/active_merchant/billing/integrations/helper.rb +0 -117
- data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +0 -58
- data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +0 -59
- data/lib/active_merchant/billing/integrations/hi_trust/return.rb +0 -68
- data/lib/active_merchant/billing/integrations/hi_trust.rb +0 -27
- data/lib/active_merchant/billing/integrations/ipay88/helper.rb +0 -118
- data/lib/active_merchant/billing/integrations/ipay88/notification.rb +0 -103
- data/lib/active_merchant/billing/integrations/ipay88/return.rb +0 -29
- data/lib/active_merchant/billing/integrations/ipay88.rb +0 -23
- data/lib/active_merchant/billing/integrations/liqpay/helper.rb +0 -43
- data/lib/active_merchant/billing/integrations/liqpay/notification.rb +0 -89
- data/lib/active_merchant/billing/integrations/liqpay/return.rb +0 -83
- data/lib/active_merchant/billing/integrations/liqpay.rb +0 -30
- data/lib/active_merchant/billing/integrations/maksuturva/helper.rb +0 -119
- data/lib/active_merchant/billing/integrations/maksuturva/notification.rb +0 -48
- data/lib/active_merchant/billing/integrations/maksuturva.rb +0 -86
- data/lib/active_merchant/billing/integrations/moneybookers/helper.rb +0 -75
- data/lib/active_merchant/billing/integrations/moneybookers/notification.rb +0 -123
- data/lib/active_merchant/billing/integrations/moneybookers.rb +0 -26
- data/lib/active_merchant/billing/integrations/nochex/helper.rb +0 -68
- data/lib/active_merchant/billing/integrations/nochex/notification.rb +0 -94
- data/lib/active_merchant/billing/integrations/nochex/return.rb +0 -10
- data/lib/active_merchant/billing/integrations/nochex.rb +0 -88
- data/lib/active_merchant/billing/integrations/notification.rb +0 -71
- data/lib/active_merchant/billing/integrations/paxum/common.rb +0 -24
- data/lib/active_merchant/billing/integrations/paxum/helper.rb +0 -42
- data/lib/active_merchant/billing/integrations/paxum/notification.rb +0 -33
- data/lib/active_merchant/billing/integrations/paxum.rb +0 -44
- data/lib/active_merchant/billing/integrations/pay_fast/common.rb +0 -42
- data/lib/active_merchant/billing/integrations/pay_fast/helper.rb +0 -50
- data/lib/active_merchant/billing/integrations/pay_fast/notification.rb +0 -134
- data/lib/active_merchant/billing/integrations/pay_fast/return.rb +0 -10
- data/lib/active_merchant/billing/integrations/pay_fast.rb +0 -70
- data/lib/active_merchant/billing/integrations/paydollar/helper.rb +0 -41
- data/lib/active_merchant/billing/integrations/paydollar/notification.rb +0 -60
- data/lib/active_merchant/billing/integrations/paydollar/return.rb +0 -15
- data/lib/active_merchant/billing/integrations/paydollar.rb +0 -59
- data/lib/active_merchant/billing/integrations/payflow_link/helper.rb +0 -116
- data/lib/active_merchant/billing/integrations/payflow_link/notification.rb +0 -78
- data/lib/active_merchant/billing/integrations/payflow_link.rb +0 -21
- data/lib/active_merchant/billing/integrations/paypal/helper.rb +0 -119
- data/lib/active_merchant/billing/integrations/paypal/notification.rb +0 -227
- data/lib/active_merchant/billing/integrations/paypal/return.rb +0 -10
- data/lib/active_merchant/billing/integrations/paypal.rb +0 -39
- data/lib/active_merchant/billing/integrations/paypal_payments_advanced/helper.rb +0 -15
- data/lib/active_merchant/billing/integrations/paypal_payments_advanced.rb +0 -20
- data/lib/active_merchant/billing/integrations/paysbuy/helper.rb +0 -15
- data/lib/active_merchant/billing/integrations/paysbuy/notification.rb +0 -39
- data/lib/active_merchant/billing/integrations/paysbuy.rb +0 -36
- data/lib/active_merchant/billing/integrations/payu_in/helper.rb +0 -76
- data/lib/active_merchant/billing/integrations/payu_in/notification.rb +0 -154
- data/lib/active_merchant/billing/integrations/payu_in/return.rb +0 -36
- data/lib/active_merchant/billing/integrations/payu_in.rb +0 -36
- data/lib/active_merchant/billing/integrations/payu_in_paisa/helper.rb +0 -19
- data/lib/active_merchant/billing/integrations/payu_in_paisa/notification.rb +0 -13
- data/lib/active_merchant/billing/integrations/payu_in_paisa/return.rb +0 -16
- data/lib/active_merchant/billing/integrations/payu_in_paisa.rb +0 -30
- data/lib/active_merchant/billing/integrations/platron/helper.rb +0 -32
- data/lib/active_merchant/billing/integrations/platron/notification.rb +0 -113
- data/lib/active_merchant/billing/integrations/platron.rb +0 -28
- data/lib/active_merchant/billing/integrations/pxpay/helper.rb +0 -112
- data/lib/active_merchant/billing/integrations/pxpay/notification.rb +0 -157
- data/lib/active_merchant/billing/integrations/pxpay/return.rb +0 -25
- data/lib/active_merchant/billing/integrations/pxpay.rb +0 -31
- data/lib/active_merchant/billing/integrations/quickpay/helper.rb +0 -96
- data/lib/active_merchant/billing/integrations/quickpay/notification.rb +0 -137
- data/lib/active_merchant/billing/integrations/quickpay.rb +0 -21
- data/lib/active_merchant/billing/integrations/rbkmoney/helper.rb +0 -23
- data/lib/active_merchant/billing/integrations/rbkmoney/notification.rb +0 -91
- data/lib/active_merchant/billing/integrations/rbkmoney.rb +0 -17
- data/lib/active_merchant/billing/integrations/return.rb +0 -42
- data/lib/active_merchant/billing/integrations/robokassa/common.rb +0 -19
- data/lib/active_merchant/billing/integrations/robokassa/helper.rb +0 -50
- data/lib/active_merchant/billing/integrations/robokassa/notification.rb +0 -55
- data/lib/active_merchant/billing/integrations/robokassa/return.rb +0 -17
- data/lib/active_merchant/billing/integrations/robokassa.rb +0 -49
- data/lib/active_merchant/billing/integrations/sage_pay_form/encryption.rb +0 -33
- data/lib/active_merchant/billing/integrations/sage_pay_form/helper.rb +0 -136
- data/lib/active_merchant/billing/integrations/sage_pay_form/notification.rb +0 -210
- data/lib/active_merchant/billing/integrations/sage_pay_form/return.rb +0 -31
- data/lib/active_merchant/billing/integrations/sage_pay_form.rb +0 -37
- data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +0 -107
- data/lib/active_merchant/billing/integrations/two_checkout/notification.rb +0 -171
- data/lib/active_merchant/billing/integrations/two_checkout/return.rb +0 -58
- data/lib/active_merchant/billing/integrations/two_checkout.rb +0 -44
- data/lib/active_merchant/billing/integrations/valitor/helper.rb +0 -86
- data/lib/active_merchant/billing/integrations/valitor/notification.rb +0 -13
- data/lib/active_merchant/billing/integrations/valitor/response_fields.rb +0 -97
- data/lib/active_merchant/billing/integrations/valitor/return.rb +0 -13
- data/lib/active_merchant/billing/integrations/valitor.rb +0 -33
- data/lib/active_merchant/billing/integrations/verkkomaksut/helper.rb +0 -88
- data/lib/active_merchant/billing/integrations/verkkomaksut/notification.rb +0 -59
- data/lib/active_merchant/billing/integrations/verkkomaksut.rb +0 -20
- data/lib/active_merchant/billing/integrations/web_pay/common.rb +0 -50
- data/lib/active_merchant/billing/integrations/web_pay/helper.rb +0 -68
- data/lib/active_merchant/billing/integrations/web_pay/notification.rb +0 -51
- data/lib/active_merchant/billing/integrations/web_pay.rb +0 -45
- data/lib/active_merchant/billing/integrations/webmoney/common.rb +0 -17
- data/lib/active_merchant/billing/integrations/webmoney/helper.rb +0 -40
- data/lib/active_merchant/billing/integrations/webmoney/notification.rb +0 -47
- data/lib/active_merchant/billing/integrations/webmoney.rb +0 -43
- data/lib/active_merchant/billing/integrations/wirecard_checkout_page/common.rb +0 -104
- data/lib/active_merchant/billing/integrations/wirecard_checkout_page/helper.rb +0 -145
- data/lib/active_merchant/billing/integrations/wirecard_checkout_page/notification.rb +0 -101
- data/lib/active_merchant/billing/integrations/wirecard_checkout_page/return.rb +0 -35
- data/lib/active_merchant/billing/integrations/wirecard_checkout_page.rb +0 -39
- data/lib/active_merchant/billing/integrations/world_pay/helper.rb +0 -101
- data/lib/active_merchant/billing/integrations/world_pay/notification.rb +0 -160
- data/lib/active_merchant/billing/integrations/world_pay.rb +0 -34
- data/lib/active_merchant/billing/integrations.rb +0 -17
- data.tar.gz.sig +0 -0
- metadata.gz.sig +0 -1
data/CHANGELOG
CHANGED
|
@@ -1,5 +1,1421 @@
|
|
|
1
1
|
= ActiveMerchant CHANGELOG
|
|
2
2
|
|
|
3
|
+
== HEAD
|
|
4
|
+
|
|
5
|
+
== Version 1.90.0 (January 8, 2019)
|
|
6
|
+
* Mercado Pago: Support "gateway" processing mode [curiousepic] #3087
|
|
7
|
+
* Braintree: Update gem to latest version [curiousepic] #3091
|
|
8
|
+
* Adyen: Pass arbitrary riskData fields [curiousepic] #3089
|
|
9
|
+
* Worldpay: Fix cookie header name [curiousepic] #3099
|
|
10
|
+
* Paymentez: Adds support for extra_params optional field [molbrown] #3095
|
|
11
|
+
* Braintree Blue: Support Level 2 and 3 data fields [curiousepic] #3094
|
|
12
|
+
* Braintree Blue: Refactor line_items field [curiousepic] #3100
|
|
13
|
+
* TrustCommerce: Use `application_id` [nfarve] #3103
|
|
14
|
+
* Stripe: Add 3DS Support [nfarve] #3086
|
|
15
|
+
|
|
16
|
+
== Version 1.89.0 (December 17, 2018)
|
|
17
|
+
* Worldpay: handle Visa and MasterCard payouts differently [bpollack] #3068
|
|
18
|
+
* QuickPay: update supported countries [ta] #3049
|
|
19
|
+
* WorldPay: set cardholder name to "3D" for 3DS transactions [bpollack] #3071
|
|
20
|
+
* Authorize.Net: Support refunds for bank accounts [nfarve] #3063
|
|
21
|
+
* Stripe: support specifying a reason for refunds [yosukehasumi] #3056
|
|
22
|
+
* Paybox Direct: add support for XPF currency [adam-stead] #2938
|
|
23
|
+
* TrustCommerce: Add ACH Ability [nfarve] #3073
|
|
24
|
+
* Payeezy: Support $0 for verify transactions [molbrown] #3074
|
|
25
|
+
* USA ePay: add support for recurring transactions, custom fields, and line items [lancecarlson] #3069
|
|
26
|
+
* Add dLocal gateway [curiousepic] #3709
|
|
27
|
+
* dLocal: Require secret_key [curiousepic] #3080
|
|
28
|
+
* Adyen: Implement 3DS [nfarve] #3076
|
|
29
|
+
* Adyen: Add 3DS Fix [nfarve] #3081
|
|
30
|
+
* Payeezy: Add `stored_credentials` [nfarve] #3083
|
|
31
|
+
* Fix CVC validation for 0 length CVC [filipebarcos] #3082
|
|
32
|
+
* NMI: Supports vendor_id and processor_id fields [molbrown] #3085
|
|
33
|
+
|
|
34
|
+
== Version 1.88.0 (November 30, 2018)
|
|
35
|
+
* Added ActiveSupport/Rails master support [Edouard-chin] #3065
|
|
36
|
+
|
|
37
|
+
== Version 1.87.0 (November 29, 2018)
|
|
38
|
+
* Barclaycard Smartpay: Improves Error Handling [deedeelavinder] #3026
|
|
39
|
+
* Braintree: Fix passing phone-only billing address [curiousepic] #3025
|
|
40
|
+
* Litle: Capitalize check account type [curiousepic] #3028
|
|
41
|
+
* Braintree: Account for nil billing address fields [curiousepic] #3029
|
|
42
|
+
* Realex: Add verify [kheang] #3030
|
|
43
|
+
* Braintree: Actually account for nil address fields [curiousepic] #3032
|
|
44
|
+
* Mercado Pago: do not infer card type [bpollack] #3038
|
|
45
|
+
* Credorax: allow sending submerchant ID (h3 parameter) [bpollack] #3040
|
|
46
|
+
* Worldpay: Pass stored credential option fields [curiousepic] #3041
|
|
47
|
+
* Make behavior of nil CC numbers more consistent [guaguasi] #3010
|
|
48
|
+
* Moneris: Adds Credential on File logic [deedeelavinder] #3042
|
|
49
|
+
* Adyen: Return AVS and CVC Result [nfarve] #3044
|
|
50
|
+
* Paymentez: Supports phone field, does not send if empty [molbrown] #3043
|
|
51
|
+
* Braintree: Account for nil address with existing customer [curiousepic] #3047
|
|
52
|
+
* Optimal Payment: Add verify capabilities #3052
|
|
53
|
+
* Moneris: Allows cof_enabled gateway to process non-cof transactions [deedeelavinder] #3051
|
|
54
|
+
* Cenpos: update supported countries [bpollack] #3055
|
|
55
|
+
* CyberSource: update supported countries [bpollack] #3055
|
|
56
|
+
* MiGS: update supported countries [bpollack] #3055
|
|
57
|
+
* Clearhaus: update submission data format [bpollack] #3053
|
|
58
|
+
* Forte: Allow void on capture [nfarve] #3059
|
|
59
|
+
|
|
60
|
+
== Version 1.86.0 (October 26, 2018)
|
|
61
|
+
* UsaEpayTransaction: Support UMcheckformat option for echecks [dtykocki] #3002
|
|
62
|
+
* Global Collect: handle internal server errors [molbrown] #3005
|
|
63
|
+
* Barclaycard Smartpay: allow third-party payouts for credits [bpollack] #3009
|
|
64
|
+
* RuboCop: AlignHash [nfarve] #3004
|
|
65
|
+
* Beanstream: Switch `recurringPayment` flag from boolean to integer [dtykocki] #3011
|
|
66
|
+
* Update Swipe HQ endpoint [bdewater] #3013
|
|
67
|
+
* Braintree: Adds device_data [deedeelavinder] #3012
|
|
68
|
+
* Payflow Express: Add phone to returned Response [filipebarcos] #3003
|
|
69
|
+
* Authorize.Net: Pass some level 3 fields [curiousepic] #3022
|
|
70
|
+
* Add state to the netbanx payload [Girardvjonathan] #3024
|
|
71
|
+
|
|
72
|
+
== Version 1.85.0 (September 28, 2018)
|
|
73
|
+
* Authorize.Net: Support custom delimiter for cim [curiousepic] #3001
|
|
74
|
+
|
|
75
|
+
== Version 1.84.0 (September 27, 2018)
|
|
76
|
+
* PayU Latam: support partial captures [bpollack] #2974
|
|
77
|
+
* Braintree: Reflect correct test mode in Braintree responses [elfassy] #2980
|
|
78
|
+
* FirstPay: Expose error code [curiousepic] #2979
|
|
79
|
+
* Barclaycard Smartpay: Pass device_fingerprint when specified [dtykocki] #2981
|
|
80
|
+
* Komoju: remove no-longer-relevant sandbox URL [miyazawadegica] #2987
|
|
81
|
+
* [POSSIBLE BREAKAGE] Determine credit cards via functions [bpollack] #2983
|
|
82
|
+
* Drop support for Laser cards [bpollack] #2983
|
|
83
|
+
* Improve Maestro card detection [bpollack] #2983
|
|
84
|
+
* Add ROU alpha3 code for Romania [dtykocki] #2989
|
|
85
|
+
* [POSSIBLE BREAKAGE] Drop support for Solo and Switch cards [bpollack] #2991
|
|
86
|
+
* Add support for Carnet cards [bpollack] #2992
|
|
87
|
+
* Stripe: support a reason for voiding a transaction [whitby3001] #2378
|
|
88
|
+
* Payeezy: Add reversal_id in support of timeout reversals [dtykocki] #2997
|
|
89
|
+
* Stripe: support Level 3 transaction fields [bpollack] #2996
|
|
90
|
+
* Conekta: support Carnet cards [bpollack] #2999
|
|
91
|
+
* Openpay: support Carnet cards [bpollack] #2999
|
|
92
|
+
* Adyen: Add support for GooglePay [dtykocki] #2971
|
|
93
|
+
|
|
94
|
+
== Version 1.83.0 (August 30, 2018)
|
|
95
|
+
* CT Payment: Update How Address is Passed [nfarve] #2960
|
|
96
|
+
* Adyen: Add RecurringProcessingModel [nfarve] #2951
|
|
97
|
+
* Optimal Payments: update country list [bpollack] #2961
|
|
98
|
+
* Ebanx: update sandbox and production URLs [vnbrs] #2949
|
|
99
|
+
* Ebanx: support additional countries [vnbrs] #2950
|
|
100
|
+
* Gateway generator: fix a typo that would cause the script to crash [bpollack] #2962
|
|
101
|
+
* Clearhaus: use $0 for verify transactions [bpollack] #2964
|
|
102
|
+
* Global Collect: properly handle partial captures [bpollack] #2967
|
|
103
|
+
* Braintree: Add support for GooglePay [dtykocki] #2966
|
|
104
|
+
* Adyen: allow overriding card brands [bpollack] #2968
|
|
105
|
+
* Adyen: allow custom routing [bpollack] #2969
|
|
106
|
+
* First Pay: Adds scrubbing [deedeelavinder] #2972
|
|
107
|
+
|
|
108
|
+
== Version 1.82.0 (August 13, 2018)
|
|
109
|
+
* FirstData: add support for WalletProviderID in v27 gateway [bpollack] #2946
|
|
110
|
+
* BlueSnap: Handle 403 responses [curiousepic] #2948
|
|
111
|
+
* BlueSnap: Add StoreCard Field [nfarve] #2953
|
|
112
|
+
* Worldpay: support installments [bpollack] #2957
|
|
113
|
+
* Paymentez: support partial refunds [bpollack] #2959
|
|
114
|
+
* Payflow: allow support for partial captures [pi3r] #2952
|
|
115
|
+
|
|
116
|
+
== Version 1.81.0 (July 30, 2018)
|
|
117
|
+
* GlobalCollect: Don't overwrite contactDetails [curiousepic] #2915
|
|
118
|
+
* Pin Payments: Pass reference for statement desc [curiousepic] #2919
|
|
119
|
+
* FirstData: introduce v27 gateway [shasum] #2912
|
|
120
|
+
* Stripe: Fix contactless magstripe support [abhiin1947] #2917
|
|
121
|
+
* ANET: Expose full response code [curiousepic] #2924
|
|
122
|
+
* Global Collect: Fix customer data field structure [curiousepic] #2929
|
|
123
|
+
* Adyen: Set Default Name for Apple Pay Transactions [nfarve] #2930
|
|
124
|
+
* Beanstream: Update to use api key with login credentials [nfarve] #2934
|
|
125
|
+
* CT Payments: Fix a typo in the live URL scheme [bpollack] #2936
|
|
126
|
+
* CyberSource: Don't throw exceptions on HTML responses [bpollack] #2937
|
|
127
|
+
* CyberSource: Remove extraneous parameter blocking echecks [chriscz] #2861
|
|
128
|
+
* FirstPay: Update Fields For Recurring Payments [nfarve] #2940
|
|
129
|
+
* Remove unused handle_response method [bl] #2309
|
|
130
|
+
* Barclaycard Smartpay: bump API version to v30 [bpollack] #2941
|
|
131
|
+
* Safecharge: Remove duplicate supported country [curiousepic]
|
|
132
|
+
* Payflow Express: Use SHIPTONAME instead of `full_name` for shipping address [filipebarcos] #2945
|
|
133
|
+
|
|
134
|
+
== Version 1.80.0 (July 4, 2018)
|
|
135
|
+
* Default SSL min_version to TLS 1.1 to comply with June 30 PCI DSS deadline [bdewater] #2909
|
|
136
|
+
* Paymentez: return a Result object even when the upstream server 500s [bpollack] #2871
|
|
137
|
+
* Drop support for Ruby versions older than 2.3 [bpollack] #2863
|
|
138
|
+
* Bridge Pay: don't throw an exception when bank account type is omitted [bpollack] #2873
|
|
139
|
+
* Avoid making actual connections in Blue Snap and Mundipagg unit tests [bpollack] #2875
|
|
140
|
+
* Avoid making actual connections in the connection unit tests [bpollack] #2876
|
|
141
|
+
* Openpay: support payment installments [bpollack] #2865
|
|
142
|
+
* First Pay: support recurring charges [bpollack] #2877
|
|
143
|
+
* Bridge Pay: pass full name of account type for echeck transactions [bpollack] #2878
|
|
144
|
+
* Kushki: do not send 0 for tax values if tax values are not provided [bpollack] #2886
|
|
145
|
+
* Payflow: Update ACH tests [curiousepic] #2887
|
|
146
|
+
* Credorax: support passing billing description [bpollack] #2889
|
|
147
|
+
* MiGS: scrub 3DS fields [abarrak] #2771
|
|
148
|
+
* Forte: avoid crashing when location_id or account_id have spaces [bpollack] #2890
|
|
149
|
+
* Adyen: Support Network Tokenization Cards via mpiData fields [curiousepic] #2891
|
|
150
|
+
* Moneris US: Add ACH [nfarve] #2888
|
|
151
|
+
* Realex: Pass amount for captures [curiousepic] #2895
|
|
152
|
+
* Card Connect: support storing cards [bpollack] #2896
|
|
153
|
+
* Avoid mutating headers passed in for Active Merchant connections [grantbdev] #2892
|
|
154
|
+
* Forte: add support for refunds [bpollack] #2898
|
|
155
|
+
* Forte: fix a bug in logic for selecting billing names [whitby3001] #2381
|
|
156
|
+
* Paymentez: allow capture amount to exceed authorization amount [bpollack] #2900
|
|
157
|
+
* JetPay: fix typo in error messages [reynhout] #2749
|
|
158
|
+
* Braintree: add support for Maestro cards [matthewheath] #2571
|
|
159
|
+
* Visanet Peru: Refund on unsettled transactions [nfarve] #2772
|
|
160
|
+
* Remove iDeal offsite gateway references [bdewater] #2807
|
|
161
|
+
* Conekta: Allow customer application in headers [curiousepic] #2908
|
|
162
|
+
* Payment Express: use testing URLs when testing [oklas] #2231
|
|
163
|
+
* Redsys: Fix payments with cc token [Leonardo Diez] #2586
|
|
164
|
+
* Redsys: Missing cardnumber params in xml_signed_fields [nerburish] #2628
|
|
165
|
+
* Bogus: allow authorizing with a tokenized card [Azdaroth] #2703
|
|
166
|
+
* CT Payment: Add new gateway [nfarve] #2911
|
|
167
|
+
|
|
168
|
+
== Version 1.79.2 (June 2, 2018)
|
|
169
|
+
* Fix Gateway#max_version= overwriting min_version [bdewater]
|
|
170
|
+
|
|
171
|
+
== Version 1.79.1 (May 31, 2018)
|
|
172
|
+
* Fix Net::HTTP connections defaulting to connection: keep-alive instead of close since #2862 [bpollack] #2868
|
|
173
|
+
* Mundipagg: allow passing holder_document for credit card purchases [bpollack] #2864
|
|
174
|
+
* Conekta: support monthly_installments [bpollack] #2866
|
|
175
|
+
* Authorize.net: allow sending email_customer set to false [bpollack] #2867
|
|
176
|
+
|
|
177
|
+
== Version 1.79.0 (May 30, 2018)
|
|
178
|
+
* Allow setting min/max SSL version for a connection on Ruby 2.5 [bdewater] #2775
|
|
179
|
+
* Add `gateways:ssl:min_version` rake task to test upcoming TLS 1.0 deprecation deadline [bdewater] #2775
|
|
180
|
+
* Log negotiated SSL version and cipher [bdewater + methodmissing] #2862
|
|
181
|
+
* Remove support for Rails < 4.2, add support for Rails 5.2 and Ruby 2.5 [bdewater]
|
|
182
|
+
* Spreedly: Support verify and find transactions [abarrak] #2798
|
|
183
|
+
* Adyen: Support merchant-specific subdomains [curiousepic] #2799
|
|
184
|
+
* Fix ENV based configuration of Net::Http for proxies [bbergstrom] #2800
|
|
185
|
+
* ANET: Withhold cryptogram for credit [curiousepic] #2804
|
|
186
|
+
* Borgun: Remove batch from request parameters [deedeelavinder] #2805
|
|
187
|
+
* WorldPay: Remove Inquiry requests in verify transactions [nfarve] #2802
|
|
188
|
+
* Credorax: Update tests [curiousepic] #2809
|
|
189
|
+
* Braintree: Remove decimal for non-fractional currencies [nfarve] #2806
|
|
190
|
+
* Realex: Add documented country support for US and CA [a-salty-strudel] #2810
|
|
191
|
+
* Paymentez: Add `tax_percentage` optional parameter [deedeelavinder] #2814
|
|
192
|
+
* Braintree: Add `skip_advanced_fraud_checking` optional parameter [deedeelavinder] #2811
|
|
193
|
+
* SafeCharge: Additional gateway options [dtykocki] #2816
|
|
194
|
+
* FirstPay: Handle missing billing addresses [dtykocki] #2822
|
|
195
|
+
* Realex: Add ApplePay Support [nfarve] #2820
|
|
196
|
+
* Checkout V2: Additional gateway options [dtykocki] #2821
|
|
197
|
+
* CyberSource: Support 3ds validate request [curiousepic] #2823
|
|
198
|
+
* Paymentez: Remove card tokenization step from authorize [dtykocki] #2825
|
|
199
|
+
* WorldPay: Add 3DS [nfarve] #2819
|
|
200
|
+
* EBANX: Interpolate authorization string [curiousepic] #2830
|
|
201
|
+
* CyberSource: Support 3DS validation for authorize [curiousepic] #2832
|
|
202
|
+
* Redsys: Fix ISO code for PLN [chopenhauer] #2831
|
|
203
|
+
* Merchant E Solutions: Support transcript scrubbing [curiousepic] #2836
|
|
204
|
+
* Paystation: Support transcript scrubbing [curiousepic] #2837
|
|
205
|
+
* Psigate: Support transcript scrubbing [curiousepic] #2835
|
|
206
|
+
* Braintree: Adding 3D Secure pass thru capabilities [filipebarcos] #2843
|
|
207
|
+
* Authorize.net: Add flexibility for 3D Secure Parameters [filipebarcos] #2844
|
|
208
|
+
* Elavon: Update Country List [nfarve] #2840
|
|
209
|
+
* WorldPay: Update Country List [nfarve] #2841
|
|
210
|
+
* Merchant Warrior: Support transcript scrubbing [curiousepic] #2845
|
|
211
|
+
* NAB Transact: Pass nonfractional amounts correctly [curiousepic] #2843
|
|
212
|
+
* Realex: Update Country List [nfarve] #2842
|
|
213
|
+
* QBMS: Support transcript scrubbing [curiousepic] #2849
|
|
214
|
+
* Adyen: Add support for installments [nfarve] #2839
|
|
215
|
+
* Paymentez: Read messages on Failure with no error [nfarve] #2850
|
|
216
|
+
* Paymentez: Fix response message conditional [curiousepic] #2851
|
|
217
|
+
* Add ability to send email receipt [nfarve] #2852
|
|
218
|
+
* Barclaycard Smartpay: Pass shopper_interaction [curiousepic] #2853
|
|
219
|
+
* Stripe: Treat UGX as a zero-decimal currency [bpollack] #2857
|
|
220
|
+
* Mundipagg: Remove Billing Address if no Address Sent [nfarve] #2855
|
|
221
|
+
* Paypal: Support more robust scrubbing [curiousepic] #2858
|
|
222
|
+
* Stripe: Report internal Stripe errors as failures [bpollack] #2859
|
|
223
|
+
* Authorize.net: Add ability to pass `customer_payment_profile_id` [nfarve] #2854
|
|
224
|
+
|
|
225
|
+
== Version 1.78.0 (March 29, 2018)
|
|
226
|
+
* Litle: Add store for echecks [nfarve] #2779
|
|
227
|
+
* Litle: Add Support for Echeck [nfarve] #2776
|
|
228
|
+
* Orbital: Correct level 2 tax handling [deedeelavinder] #2729
|
|
229
|
+
* Payeezy: Change determination method of endpoint for store request [deedeelavinder] #2731
|
|
230
|
+
* Adyen: Return refusal_reason_raw when present [curiousepic] #2728
|
|
231
|
+
* Payeezy: Update Store method [nfarve] #2733
|
|
232
|
+
* CenPOS: Remove gzip encoding header [curiousepic] #2735
|
|
233
|
+
* Mercado Pago: Allow binary_mode to be changed [nfarve] #2736
|
|
234
|
+
* Stripe: Accept strings for refund_fee_amount [curiousepic] #2738
|
|
235
|
+
* Orbital: Complete scrub test coverage [curiousepic] #2739
|
|
236
|
+
* MIGS: Scrub sensitive data [curiousepic] #2740
|
|
237
|
+
* Worldpay US: Scrub sensitive data [curiousepic] #2742
|
|
238
|
+
* WorldPay: Remove Israel from supported country list [dtykocki] #2746
|
|
239
|
+
* Optimal Payments: Scrub sensitive data [curiousepic] #2743
|
|
240
|
+
* USA Epay Transaction: Scrub sensitive data [curiousepic] #2745
|
|
241
|
+
* MIGS: Add unit test for scrub [curiousepic] #2747
|
|
242
|
+
* Worldpay US: Fix bank account scrub [curiousepic] #2748
|
|
243
|
+
* Litle: Add support for merchantData elements [dtykocki] #2751
|
|
244
|
+
* Paymentez: Add support for purchasing and authorizatin with tokens [bpollack] #2753
|
|
245
|
+
* Ingenico: Remove Trinidad and Tobego from supported country list [bpollack] #2754
|
|
246
|
+
* Barclaycard Smartpay: Remove Georgia from supported country list [bpollack] #2755
|
|
247
|
+
* Merchant Warrior: Remove requirement for state field [joshnuss] #2638
|
|
248
|
+
* Wirecard: Adding missing DigiCert Global Root G2 Cert [filipebarcos] #2759
|
|
249
|
+
* Redsys: Add support for CNY, IDR, INR, KRW and TWD [chopenhauer] #2761
|
|
250
|
+
* Optimal Payments: Fix scrub for double escaping [curiousepic] #2763
|
|
251
|
+
* Orbital: Scrub profile transactions [curiousepic] #2762
|
|
252
|
+
* BlueSnap: Fix currency passing [curiousepic] #2765
|
|
253
|
+
* Stripe: Support pickup_card decline code [dtykocki] #2764
|
|
254
|
+
* Improve scrub testing for five gateways [curiousepic] #2767
|
|
255
|
+
* Payflow: Support scrub [curiousepic] #2768
|
|
256
|
+
* SecureNet: Support scrub [curiousepic] #2769
|
|
257
|
+
* Payeezy: Update transaction method when using stored cards [dtykocki] #2770
|
|
258
|
+
* Citrus Pay, DIBS, 1stPayGateway, Global Transport, NETbilling, Ogone, TNS: remove TLS 1.0 requirement [bdewater] #2774
|
|
259
|
+
* CardStream: Default IP and customer country [dtykocki] #2773
|
|
260
|
+
* Stripe: Support destination amount [dtykocki] #2777
|
|
261
|
+
* GlobalCollect: Update supported country list [dtykocki] #2783
|
|
262
|
+
* Adyen: Support store action [curiousepic] #2784
|
|
263
|
+
* Psigate: Update Test URL and Card [nfarve] #2785
|
|
264
|
+
* USA ePay Transaction: Support ACH/eChecks [curiousepic] #2786
|
|
265
|
+
* PayU Latam: Support language parameter [dtykocki] #2787
|
|
266
|
+
* Payflow: Pass OrderDesc field [curiousepic] #2789
|
|
267
|
+
* Global Collect: Add arbitrary fraudField params [curiousepic] #2790
|
|
268
|
+
* Paystation: Support verify action [curiousepic] #2793
|
|
269
|
+
* Checkout V2: Return error codes in response [curiousepic] #2791
|
|
270
|
+
* CardStream: Change refund to use REFUND_SALE [dtykocki] #2795
|
|
271
|
+
* Spreedly: Scrub sensitive transaction data [abarrak] #2781
|
|
272
|
+
* Stripe: Add `exchange_rate` parameter [WilsonChiang] #2796
|
|
273
|
+
* Mundipagg: New Gateway Implementation [nfarve] #2791
|
|
274
|
+
|
|
275
|
+
== Version 1.77.0 (January 31, 2018)
|
|
276
|
+
* Authorize.net: Allow Transaction Id to be passed for refuds [nfarve] #2698
|
|
277
|
+
* Forte: ensure unit tests are local-only [bpollack] #2696
|
|
278
|
+
* Moneris US: ensure unit tests are local-only [bpollack] #2696
|
|
279
|
+
* Payflow: Change Verify Method for Amex Cards [nfarve] #2693
|
|
280
|
+
* Safe Charge: fix an issue with variable shadowing in the adapter [bpollack] #2697
|
|
281
|
+
* Crashnet: add scrubbing support [bpollack] #2695
|
|
282
|
+
* Barclays EPDQ: add scrubbing support [bpollack] #2695
|
|
283
|
+
* Fat Zebra: add remote scrubbing test [bpollack] #2695
|
|
284
|
+
* Clearhaus: add remote scrubbing test [bpollack] #2695
|
|
285
|
+
* Borgun: add remote scrubbing test [bpollack] #2695
|
|
286
|
+
* Stripe: Added support for the quickchip entry mode option [rbalsdon]
|
|
287
|
+
* Ogone: Add tests for scrubbing [bpollack] #2700
|
|
288
|
+
* Global Transport: Add scrubbing support [bpollack] #2700
|
|
289
|
+
* HPS: Add scrubbing support [bpollack] #2700
|
|
290
|
+
* FirstData E4: Improve scrubbing and add remote scrubbing test [bpollack] #2700
|
|
291
|
+
* Elavon: Add scrubbing support [bpollack] #2700
|
|
292
|
+
* Data Cash: Add scrubbing support [bpollack] #2700
|
|
293
|
+
* Litle: Fix testing URL [wsmoak] #2673
|
|
294
|
+
* Barclays ePDQ Extra Plus: Add missing Entrust root certificates [pacso] #2614
|
|
295
|
+
* Moneris US: Add scrubbing support [bpollack] #2702
|
|
296
|
+
* Mercury: Add scrubbing support [bpollack] #2702
|
|
297
|
+
* Fat Zebra: Tweak remote scrubbing test [bpollack] #2704
|
|
298
|
+
* Card Connect: Add new gateway [nfarve] #2706
|
|
299
|
+
* Payeezy: Ensure store calls are properly scrubbed [dtykocki] #2709
|
|
300
|
+
* Payeezy: Add unit test for scrubbing store call [dtykocki] #2710
|
|
301
|
+
* Element: Correct URL used by store transactions [dtykocki] #2711
|
|
302
|
+
* Borgun: Add support for specifying TerminalID [bpollack] #2712
|
|
303
|
+
* Barclaycard Smartpay: 3DS Implementation [nfarve] #2714
|
|
304
|
+
* Payeezy: Surface gateway_message on failure [curiousepic] #2717
|
|
305
|
+
* Payment Express: Scrub merchant password [curiousepic] #2723
|
|
306
|
+
* Stripe: Fix Partial Application Fee Refunds [curiousepic] #2713
|
|
307
|
+
* GooglePay: Support network tokenized cards [joshnuss] #2725
|
|
308
|
+
|
|
309
|
+
== Version 1.76.0 (January 3, 2018)
|
|
310
|
+
* PayU Latam: Change default text for description [nfarve] #2669
|
|
311
|
+
* Checkout V2: Allows AVS and CVV result details to come through on authorizations [deedeelavinder] #2650
|
|
312
|
+
* Global Collect: Adds boolean option for pre_authorization [deeedeelavinder] #2651
|
|
313
|
+
* Credorax: Pass Transaction Type field [curiousepic] #2653
|
|
314
|
+
* Add CardProcess Gateway [bpollack] #2659
|
|
315
|
+
* Safe Charge: Provision 3DS option for approved merchants [deedeelavinder] #2661
|
|
316
|
+
* PayU Latam: Require payment_country on initialize [curiousepic] #2663
|
|
317
|
+
* Adyen: Remove CVV as Required Field and Determines shopperInteraction [nfarve] #2665
|
|
318
|
+
* SafeCharge: add support for VendorID, WebsiteID, and IP logging [bpollack] #2667
|
|
319
|
+
* Safe Charge: Adds 3DS flag [deedeelavinder] #2668
|
|
320
|
+
* CardProcess: Fix success? to always return true or false [bpollack] #2674
|
|
321
|
+
* SagePay: Correct CVV, AVS codes for Sagepay [singhai0] #2670
|
|
322
|
+
* PayU Latam: Count pending Voids as successful [curiousepic] #2677
|
|
323
|
+
* Mercado Pago: Ensure acess tokens are URL escaped [bpollack] #2675
|
|
324
|
+
* MiGS: Update hash format to SHA256 and restore remote tests [bpollack] #2676
|
|
325
|
+
* MiGS: Support verify calls [bpollack] #2664
|
|
326
|
+
* iATS: Fix Messages with Failure on iATS Server [nfarve] #2680
|
|
327
|
+
* Barclaycard Smartpay: Correct repsonse for fraud rejects #2683
|
|
328
|
+
* Adyen: Allow incomplete addresses in some situations [bpollack] #2684
|
|
329
|
+
* Paymentez: Add new gateway [bpollack] #2685
|
|
330
|
+
* PayU Latam: Provide a mechanism to override the amount in verify [dtykocki] #2688
|
|
331
|
+
* Mercado Pago: Support X-Device-Session-ID Header [bpollack] #2689
|
|
332
|
+
* Mercado Pago: Support arbitrary additional_info JSON [bpollack] #2691
|
|
333
|
+
* FirstData E4: Override ECI value for Apple Pay transactions with Discover [jasonwebster] #2671
|
|
334
|
+
* Quickbooks: Add payment context to Quickbooks charges and refunds [bdewater] #2694
|
|
335
|
+
|
|
336
|
+
== Version 1.75.0 (November 9, 2017)
|
|
337
|
+
* Barclaycard Smartpay: Clean up test options hashes [bpollack] #2632
|
|
338
|
+
* Barclaycard Smartpay: Extra data fields for credits [bpollack] #2631
|
|
339
|
+
* Cyber Source: Correctly passes subscriptionID for store [deedeelavinder] #2633
|
|
340
|
+
* Ebanx: Pass fields for business person responsible [curiousepic] #2635
|
|
341
|
+
* Ebanx: Support Colombian transactions [bpollack] #2636
|
|
342
|
+
* FirstData E4 (Payeezy): Ensure numeric ECI values are zero padded [jasonwebster] #2630
|
|
343
|
+
* Netbanx: Only send currency and billing_details for auths and sales [anotherjosmith] #2643
|
|
344
|
+
* Netbanx: Revert "Fixes basic auth for netbanx by sending the account_number and api_key" [anotherjosmith] #2644
|
|
345
|
+
* PayU Latam: Adds `partnerID`, adjusts phone preferences, allows empty `ip_address`, and adjusts for no `cvv` [deedeelavinder] #2634
|
|
346
|
+
* Sage Payment Solutions: Scrub check info [curiousepic] #2639
|
|
347
|
+
* Worldbank US: Allow using the backup URL [bpollack] #2641
|
|
348
|
+
* Worldbank US: Allow using the backup URL per-request [bpollack] #2645
|
|
349
|
+
|
|
350
|
+
== Version 1.74.0 (October 24, 2017)
|
|
351
|
+
* Adyen: Update list of supported countries [dtykocki] #2600
|
|
352
|
+
* Authorize.net CIM: Handle multiple error messages [amandapuff] #2537
|
|
353
|
+
* Barclaycard Smartpay: Pass street and house_number fields, in addition to standard address [deedeelavinder] #2603
|
|
354
|
+
* Barclaycard Smartpay: Use authorization pspReference for refunds [davidsantoso] #2599
|
|
355
|
+
* Beanstream: Pass email fields without address [curiousepic] #2615
|
|
356
|
+
* Beanstream: Support recurringPayment for auth, capture, and purchase transactions [dtykocki] #2617
|
|
357
|
+
* Borgun: Add support for USD transactions [dtykocki] #2602
|
|
358
|
+
* Borgun: Include currency code from split authorization for voids [dtykocki] #2605
|
|
359
|
+
* Checkout V2: Expose AVS and CVV results for purchases [dtykocki] #2619
|
|
360
|
+
* Credorax: Update response codes [curiousepic] #2595
|
|
361
|
+
* CyberSource: Support 3DSecure requests [curiousepic] #2624
|
|
362
|
+
* Ebanx: Pass person_type and name for stored cards [curiousepic] #2621
|
|
363
|
+
* Ebanx: Support Store and person_type option [curiousepic] #2604
|
|
364
|
+
* Elavon: Update endpoint URLs [curiousepic] #2608
|
|
365
|
+
* Netbanx: Fix basic auth by sending the account_number and api_key [anotherjosmith] #2616
|
|
366
|
+
* Payeezy: Adds support for store [deedeelavinder] #2591
|
|
367
|
+
* PayU Latam: Set payment_country gateway attribute [curiousepic] #2611
|
|
368
|
+
* Redsys: Support the DKK currency type [bpollack] #2618
|
|
369
|
+
* WePay: Only send ip and device for non-recurring transactions [dtykocki] #2597
|
|
370
|
+
|
|
371
|
+
== Version 1.73.0 (September 28, 2017)
|
|
372
|
+
* Adyen: Use original authorization pspReference on Refunds [lyverovski] #2589
|
|
373
|
+
* Braintree Blue: Explicitly require braintree-ruby version 2.78 [anotherjosmith]
|
|
374
|
+
* FirstData E4: Scrub 3DS cryptogram [jasonwebster] #2596
|
|
375
|
+
* PayHub: Replace single quotes with double quotes in error message [matthewheath] #2572
|
|
376
|
+
* Wirecard: Format non-fractional currency amounts correctly [bdewater] #2594
|
|
377
|
+
|
|
378
|
+
== Version 1.72.0 (September 20, 2017)
|
|
379
|
+
* Adyen: Fix failing remote tests [dtykocki] #2584
|
|
380
|
+
* Authorize.net: Remove numeric restriction on customer ID [dtykocki] #2579
|
|
381
|
+
* Authorize.net: Restore default state value for non-US addresses [jasonwebster] #2563
|
|
382
|
+
* Beanstream: Do not default state and zip with empty country [dtykocki] #2582
|
|
383
|
+
* Braintree Blue: Add eci_indicator field for Apple Pay [davidsantoso] #2565
|
|
384
|
+
* Conekta: Add guard clause for details fallbacks [curiousepic] #2573
|
|
385
|
+
* Conekta: Pull required details from billing address [nfarve] #2568
|
|
386
|
+
* DataCash: Enable refunding recurring transactions [davidsantoso] #2560
|
|
387
|
+
* Ebanx: Adds Brazil Specific Parameters [nfarve] #2559
|
|
388
|
+
* Kushki: Add support for refunds [dtykocki] #2575
|
|
389
|
+
* MercadoPago: Additional tweaks for transaction requests [davidsantoso]
|
|
390
|
+
* MercadoPago: Default to alphanumeric order_id [davidsantoso]
|
|
391
|
+
* MercadoPago: Send diners_club cards as diners [davidsantoso] #2585
|
|
392
|
+
* PayU Latam: Correctly condition buyer element fields [curiousepic] #2578
|
|
393
|
+
* PayU Latam: Pass unique buyer fields and country requirements [curiousepic] #2570
|
|
394
|
+
* Qvalent: Support general credit [curiousepic] #2558
|
|
395
|
+
* SafeCharge: Update to Version 4.1.0 [nfarve] #2556
|
|
396
|
+
* WePay: Don't default API version header [curiousepic] #2567
|
|
397
|
+
* WePay: Don't require email for Store [curiousepic] #2588
|
|
398
|
+
|
|
399
|
+
== Version 1.71.0 (August 22, 2017)
|
|
400
|
+
* Bambora formerly Beanstream: Change casing on customerIp variable [aengusbates] #2551
|
|
401
|
+
* Checkout V2: Add localized_amount support to add_invoice function [nicolas-maalouf-cko] #2452
|
|
402
|
+
* Checkout V2: Add UAE to country list [shasum] #2548
|
|
403
|
+
* Checkout V2: Fix success response code validation [nicolas-maalouf-cko] #2452
|
|
404
|
+
* CreditCall: Only allow AVS when specified [curiousepic] #2549
|
|
405
|
+
* CreditCall: Parse additional params from responses [nfarve] #2552
|
|
406
|
+
* CreditCall: Parse more response params [nfavre] #2543
|
|
407
|
+
* MercadoPago: Small tweaks to building requests [davidsantoso] #2555
|
|
408
|
+
* Orbital: Support Network Tokenization Credit Cards [curiousepic] #2553
|
|
409
|
+
* Orbital: Updgrade schema version to 7.1 [curiousepic] #2546
|
|
410
|
+
* Remove HUF from default non-fractional currencies [curiousepic] #2538
|
|
411
|
+
* Stripe: Add support for statement_address parameters for EMV transactions [malcolm-mergulhao] #2524
|
|
412
|
+
* TransFirst Express: Don't send address2 without value [nfarve] #2545
|
|
413
|
+
* TransFirst Express: Fix Optional Fields Being Passed Blank [nfarve] #2550
|
|
414
|
+
* TransFirst: Fix partial refund [nfarve] #2541
|
|
415
|
+
* Vantiv (Litle): Pass 3DS fields [curiousepic] #2536
|
|
416
|
+
* Braintree Blue: Add phone to options [deedeelavinder] #2564
|
|
417
|
+
|
|
418
|
+
== Version 1.70.0 (August 4, 2017)
|
|
419
|
+
* Barclaycard Smartpay: Provider a default billing address house number [nfarve] #2520
|
|
420
|
+
* FirstData E4: Fix duplicate XID and CAVV values in tokenized transactions [jasonwebster] #2529
|
|
421
|
+
* FirstData E4: Loose XSD validation for Payeezy (FirstData E4) [jasonwebster] #2529
|
|
422
|
+
* GlobalTransport: Support partial authorizations [dtykocki] #2511
|
|
423
|
+
* Litle: Update schema and certification tests to v9.12 [curiousepic] #2522
|
|
424
|
+
* Litle: Update urls and name to Vantiv [curiousepic] #2531
|
|
425
|
+
* Mercado Pago: Add gateway support [davidsantoso] #2518
|
|
426
|
+
* Orbital: Add support for level 2 data [dtykocki] #2515
|
|
427
|
+
* PayU Latam: Pass DNI Number [curiousepic] #2517
|
|
428
|
+
* Qvalent: Pass 3dSecure fields [curiousepic] #2508
|
|
429
|
+
* SafeCharge: Correct UserID field name [curiousepic]
|
|
430
|
+
* SafeCharge: Pass UserID field [curiousepic] #2507
|
|
431
|
+
* AuthorizeNet: Allow Response Code 4 to be returned as successful [nfarve] #2530
|
|
432
|
+
* Forte: Remove order number from captures in Forte Gateway [nfarve] #2532
|
|
433
|
+
* PayU Latam: Add additional mandatory fields [deedeelavinder] #2528
|
|
434
|
+
|
|
435
|
+
== Version 1.69.0 (July 12, 2017)
|
|
436
|
+
* WePay: Add payer_rbits and transaction_rbits optional fields [davidsantoso]
|
|
437
|
+
* Adyen: Use Active Merchant standard order_id option for reference [jasonwebster] #2483
|
|
438
|
+
* Correct calculation for three-exponent currencies [curiousepic] #2486
|
|
439
|
+
* SagePay: Use VPSTxId from authorization for refunds [dtykocki] #2489
|
|
440
|
+
* Payflow: Move PAYPAL-NVP header option to a class attribute on the payment gateway [deuxpi] #2492
|
|
441
|
+
* Optimal Payments: Pass CVD indicator accurately [curiousepic] #2491
|
|
442
|
+
* SagePay: Make Repeat purchase if payment is a past authorization [curiousepic] #2495
|
|
443
|
+
* Netbanx: map response errorCodes onto standard error code [iirving] #2456
|
|
444
|
+
* Netbanx: Update supported countries and cardtypes [iirving] #2456
|
|
445
|
+
* Barclaycard Smartpay: Support 0- and 3-exponent currencies [curiousepic] #2498
|
|
446
|
+
* CyberSource: Fix XSD schema validation issues [jasonwebster] #2497
|
|
447
|
+
* WorldPay: Support three-decimal currencies [curiousepic] #2501
|
|
448
|
+
* NMI: Add first and lastname to echeck transactions [dtykocki] #2499
|
|
449
|
+
* PayFlow: Add optional email field [davidsantoso] #2505
|
|
450
|
+
* Worldpay: Support Credit on CFT-enabled merchant IDs [curiousepic] #2503
|
|
451
|
+
* FirstPay: Add processor_id field [davidsantoso] #2506
|
|
452
|
+
* Authorize.Net: Use two character default for billing state [dtykocki] #2496
|
|
453
|
+
|
|
454
|
+
== Version 1.68.0 (June 27, 2017)
|
|
455
|
+
* Authorize.Net: Return failed response if forced refund settlement fails [bizla] #2476
|
|
456
|
+
* Authorize.net: Concatenate address1 and address2 [dtykocki] #2479
|
|
457
|
+
* Braintree Blue: Braintree Blue: Add ECI indicator to Android Pay transactions [davidsantoso] #2474
|
|
458
|
+
* Credorax: Support 0- and 3-exponent currencies [curiousepic]
|
|
459
|
+
* Cybersource: update supported card types [bdewater] #2477
|
|
460
|
+
* FirstData: Add a default network tokenization strategy for FirstData E4 [krystosterone] #2473
|
|
461
|
+
* FirstPay: FirstPay: Update hostname and force TLSv1 minimum [davidsantoso] #2478
|
|
462
|
+
* JetPay V2: Support store transactions and token based payments [shasum] #2475
|
|
463
|
+
* Moneris: Add 3DS fields for decrypted Apple and Android Pay data [davidsantoso] #2457
|
|
464
|
+
* Openpay: Send customer name and email in authorize and purchase [dtykocki] #2468
|
|
465
|
+
* Payflow: Moved to name value pair (NVP) with payflow [jusleg] #2462
|
|
466
|
+
* Payflow: Set PAYPAL_NVP header as optional [davidsantoso] #2480
|
|
467
|
+
* QuickPay V10: Return last response for purchase and authorize [curiousepic] #2461
|
|
468
|
+
* SafeCharge: Map billing address fields [davidsantoso] #2464
|
|
469
|
+
* SafeCharge: Track currency from original transaction [davidsantoso] #2470
|
|
470
|
+
* Support three-decimal currencies [curiousepic] #2466
|
|
471
|
+
* Trexle: Add gateway support [hossamhossny] #2351
|
|
472
|
+
|
|
473
|
+
== Version 1.67.0 (June 8, 2017)
|
|
474
|
+
* Acapture: Pass 3D Secure fields [davidsantoso] #2451
|
|
475
|
+
* Authorize.net: Pass Level 2 Data Fields [curiousepic] #2444
|
|
476
|
+
* Credorax: Add 3D Secure authentication fields [davidsantoso] #2446
|
|
477
|
+
* Ebanx: Add gateway support [davidsantoso] #2447
|
|
478
|
+
* Ebanx: Reduce supported countries to Brazil and Mexico [davidsantoso]
|
|
479
|
+
* FirstData Payeezy: Set default ECI value for auth/purchase transactions [jasonwebster] #2448
|
|
480
|
+
* JetPay V2: Add new gateway [shasum] #2442
|
|
481
|
+
* JetPay V2: Add optional tax data to capture calls [shasum] #2445
|
|
482
|
+
* NMI: Add Network Tokenization support [shasum] #2431
|
|
483
|
+
* Orbital: Pass soft descriptors from options hash [curiousepic]
|
|
484
|
+
* Orbital: Update test and production urls [jcowhigjr] #2436
|
|
485
|
+
* Payeezy: Add client_email field for telecheck [davidsantoso] #2455
|
|
486
|
+
* Payeezy: Add customer_id_type and customer_id_number fields [davidsantoso] #2454
|
|
487
|
+
* Quickpay V10: Fix store and token use for recurring payments [wsmoak] #2180
|
|
488
|
+
* Elavon: Support custom fields [curiousepic] #2416
|
|
489
|
+
* WePay: Support risk headers [shasum] #2419
|
|
490
|
+
* WePay: Add Canada as supported country [shasum] #2419
|
|
491
|
+
* Fat Zebra: Fix xid 3D Secure field [curiousepic]
|
|
492
|
+
* SafeCharge: Mark support for European countries [curiousepic]
|
|
493
|
+
* Checkout V2: Pass customer ip option [curiousepic]
|
|
494
|
+
* Realex: Map AVS and CVV response codes [davidsantoso] #2424
|
|
495
|
+
* Opp: Send disable3DSecure custom parameter if present [davidsantoso] #2432
|
|
496
|
+
* SafeCharge: Map standard Active Merchant order_id field [davidsantoso] #2434
|
|
497
|
+
* Payeezy: Default check number to 001 if not present [davidsantoso] #2439
|
|
498
|
+
* Opp: Fix incorrect customParameter key to disable 3DS [davidsantoso]
|
|
499
|
+
|
|
500
|
+
== Version 1.66.0 (May 4, 2017)
|
|
501
|
+
* Support Rails 5.1 [jhawthorn] #2407
|
|
502
|
+
* ProPay: Add Canada as supported country [davidsantoso]
|
|
503
|
+
* ProPay: Add gateway support [davidsantoso] #2405
|
|
504
|
+
* SafeCharge: Support credit transactions [shasum] #2404
|
|
505
|
+
* WePay: Add scrub method [shasum] #2406
|
|
506
|
+
* iVeri: Add gateway support [curiousepic] #2400
|
|
507
|
+
* iVeri: Support 3DSecure data fields [davidsantoso] #2412
|
|
508
|
+
* Opp: Fix transaction success criteria and clean up options [shasum] #2414
|
|
509
|
+
|
|
510
|
+
== Version 1.65.0 (April 26, 2017)
|
|
511
|
+
* Adyen: Add Adyen v18 gateway [adyenpayments] #2272
|
|
512
|
+
* Authorize.Net: Force refund of unsettled payments via void [bizla] #2399
|
|
513
|
+
* Barclays ePDQ: removed because it has been replaced by a new API [bdewater] #2331
|
|
514
|
+
* Beanstream: Map ISO province codes for US and CA [shasum] #2396
|
|
515
|
+
* Braintree Blue: Change :full_refund option to :force_full_refund_if_unsettled [bizla] #2403
|
|
516
|
+
* Braintree Blue: Force refund of unsettled payments via void [bizla] #2398
|
|
517
|
+
* Checkout V2: Fix sandbox URL [nicolas-maalouf-cko] #2391
|
|
518
|
+
* Checkout V2: Fix success_from not properly checking two possible success codes [davidsantoso]
|
|
519
|
+
* Cybersource: Rescue XML parse exception [shasum] #2380
|
|
520
|
+
* GlobalCollect: Make message and error reporting more robust [curiousepic] #2370
|
|
521
|
+
* GlobalCollect: Set REJECTED refunds as unsuccessful transactions [davidsantoso] #2365
|
|
522
|
+
* GlobalCollect: Truncate firstName field to 15 characters [davidsantoso]
|
|
523
|
+
* JetPay: Pass down authorization payment method token to refund a capture [davidsantoso]
|
|
524
|
+
* Openpay: Support card points [shasum] #2401
|
|
525
|
+
* Orbital: Don't send CVV indicator if CVV is not present [curiousepic] #2368
|
|
526
|
+
* PayU LATAM: Fix incorrect capture method definition [davidsantoso]
|
|
527
|
+
* Payeezy: Support dynamic soft descriptors [shasum] #2384
|
|
528
|
+
* Pin: Add metadata optional field [shasum] #2363
|
|
529
|
+
* Qvalent: Add soft descriptor fields. Add authorize, capture, and void [davidsantoso]
|
|
530
|
+
* SafeCharge: Add gateway [davidsantoso]
|
|
531
|
+
* SagePay: Support Repeat transactions [curiousepic] #2395
|
|
532
|
+
* Stripe: Support custom application in X-Stripe-Client-User-Agent header [davidsantoso]
|
|
533
|
+
* TransFirst Transaction Express: Support ACH [curiousepic] #2389
|
|
534
|
+
* WePay: Support unique_id for idempotent transactions [shasum] #2367
|
|
535
|
+
* Worldpay: Force refund of unsettled payments via void [bizla] #2402
|
|
536
|
+
|
|
537
|
+
== Version 1.64.0 (March 6, 2017)
|
|
538
|
+
* Authorize.net: Allow settings to be passed for CIM purchases [fwilkins] #2300
|
|
539
|
+
* Authorize.net: Use new `unsupported_feature` standard error code [jasonwebster] #2322
|
|
540
|
+
* Base Gateway: Add new `unsupported_feature` standard error code [jasonwebster] #2322
|
|
541
|
+
* Braintree Blue: Pass cardholder_name with card [curiousepic] #2324
|
|
542
|
+
* Braintree: Add Android Pay meta data fields [jknipp] #2347
|
|
543
|
+
* CardStream: Add additional of currencies [shasum] #2337
|
|
544
|
+
* Credorax: Return failure response reason [shasum] #2341
|
|
545
|
+
* Digitzs: Add gateway [davidsantoso]
|
|
546
|
+
* Digitzs: Remove merchant_id from gateway credentials [davidsantoso]
|
|
547
|
+
* GlobalCollect: Pass options to Refund [curiousepic] #2330
|
|
548
|
+
* Kushki: Add new gateway [shasum] #2326
|
|
549
|
+
* Kushki: Remove body from void call [shasum] #2348
|
|
550
|
+
* Linkpoint: Raise ArgumentError when trying to instantiate without `:pem` [jasonwebster] #2329
|
|
551
|
+
* Omise: Enable Japan, JPY and JCB support [zdk] #2284
|
|
552
|
+
* PayU LATAM: Count pending refunds as succeeded [curiousepic] #2336
|
|
553
|
+
* PayU LATAM: Let Refund take amount value [curiousepic] #2334
|
|
554
|
+
* Paymill: Send new required fields on tokenization requests [tschelabaumann] #2279
|
|
555
|
+
* Revert "Authorize.net: Allow settings to be passed for CIM purchases" [curiousepic] #2339
|
|
556
|
+
* Sage: Default billing state when outside US [shasum] #2340
|
|
557
|
+
* Stripe: Remove idempotency key from verify [shasum] #2335
|
|
558
|
+
* TransFirst Transaction Express: Don't send order_id with refunds [curiousepic] #2350
|
|
559
|
+
* TransFirst Transaction Express: Fix improper AVS and CVV response code mapping [shasum] #2342
|
|
560
|
+
* WePay: Update API version [shasum] #2349
|
|
561
|
+
* USA ePay Advanced: Add quick_update_customer action [joshreeves] #2229
|
|
562
|
+
|
|
563
|
+
== Version 1.63.0 (February 2, 2017)
|
|
564
|
+
* Authorize.net: Add #unstore support [jimryan] #2293
|
|
565
|
+
* AuthorizeNet: Fix line items quirk [shasum]
|
|
566
|
+
* CardStream: Add dynamic descriptor option fields [curiousepic]
|
|
567
|
+
* CardStream: Support PEN currency [shasum]
|
|
568
|
+
* Culqi: Add new gateway [shasum]
|
|
569
|
+
* CyberSource: Add Lebanon to supported countries [shasum]
|
|
570
|
+
* Element: Add AVS and CVV codes to response [shasum]
|
|
571
|
+
* Firstdata E4 (Payeezy): Set correct ECI value for card present swipes [jasonwebster] #2318
|
|
572
|
+
* GlobalCollect: On purchase skip capture if not required [davidsantoso]
|
|
573
|
+
* PaymentExpress: Update supported countries [shasum]
|
|
574
|
+
* Remove leading or trailing whitespace from credit card name [davidsantoso]
|
|
575
|
+
* Remove support for Ruby 2.0 [jasonwebster]
|
|
576
|
+
* Secure Pay AU: Add scrubbing support to Secure Pay AU [bruno] #2253
|
|
577
|
+
* Stripe: Fix error in handling of track-only contactless EMV data [jasonwebster]
|
|
578
|
+
* Vanco: Update test URL [davidsantoso]
|
|
579
|
+
* WePay: Build fee structure correctly [curiousepic]
|
|
580
|
+
* WePay: Remove null address fields from request [davidsantoso]
|
|
581
|
+
* WePay: Update WePay to API version 2016-12-07 [davidsantoso]
|
|
582
|
+
* Wirecard: Send customer data in requests [davidsantoso]
|
|
583
|
+
* Worldpay: Add session id attribute [shasum]
|
|
584
|
+
* Worldpay: Do not default address when not provided [shasum]
|
|
585
|
+
|
|
586
|
+
== Version 1.62.0 (December 5, 2016)
|
|
587
|
+
* AuthorizeNet: Map to standard AVSResult codes [shasum]
|
|
588
|
+
* CitrusPay: Add 3DSecureId field [davidsantoso]
|
|
589
|
+
* CyberSource: Only get alpha2 country code when it's a known country [bruno] #2238
|
|
590
|
+
* Fat Zebra: Add scrubbing to Fat Zebra gateway [bruno] #2037
|
|
591
|
+
* Monei: Add US and CA as new supported countries [davidgf] #2209
|
|
592
|
+
* NAB Transact: Add scrubbing to NAB Transact [bruno] #2038
|
|
593
|
+
* iATS: Add scrubbing support to iATS [bruno] #2228
|
|
594
|
+
* Stripe: Ensure ECI values for tokenized cards are padded [jasonwebster] #2250
|
|
595
|
+
* Forte: Fix incorrect authorization_code response mapping [davidsantoso]
|
|
596
|
+
* maxiPago: Send currency with request [curiousepic]
|
|
597
|
+
* Credorax: Map order_id to field H9 [curiousepic]
|
|
598
|
+
* Authorize.net: Remove duplicate country GB [shasum]
|
|
599
|
+
* PayU Latam: Add processWithoutCvv2 field [shasum]
|
|
600
|
+
* Fat Zebra: De-nest soft descriptor fields [curiousepic]
|
|
601
|
+
* Credorax: Only pass c5 field for billing address1 [davidsantoso]
|
|
602
|
+
* Orbital: Add support for CLP currency [curiousepic]
|
|
603
|
+
* Authorize.net: Add line item fields and additional transaction settings [shasum]
|
|
604
|
+
* Authorize.net: Pass through `header_email_receipt` [shasum]
|
|
605
|
+
* Stripe: Scrub additional network tokenization related sensitive data [jasonwebster] #2251
|
|
606
|
+
* Applying: Worldpay: Format non-fractional currency amounts correctly [jasonwebster] #2267
|
|
607
|
+
|
|
608
|
+
== Version 1.61.0 (November 7, 2016)
|
|
609
|
+
* Add codes AQ, BQ, SX, and SS to list of countries and update SD numeric code [zxlin]
|
|
610
|
+
* AuthorizeNet: Update supported countries list [shasum]
|
|
611
|
+
* Barclay SmartPay: Add support for credit [shasum]
|
|
612
|
+
* Barclaycard SmartPay: Update supported countries [shasum]
|
|
613
|
+
* BluePay: Add Canada to supported countries list [shasum]
|
|
614
|
+
* BlueSnap: Update countries list [shasum]
|
|
615
|
+
* Braintree Blue: Add Android Pay support [mrezentes]
|
|
616
|
+
* Braintree Blue: Add remote test to verify card token [shasum]
|
|
617
|
+
* Braintree Blue: Get Android Pay tx id from payment method, not options [mrezentes]
|
|
618
|
+
* CardStream: Add MXN currency code [curiousepic]
|
|
619
|
+
* CardStream: Set captureDelay to zero on purchase [davidsantoso]
|
|
620
|
+
* CitrusPay: Add gateway [duff]
|
|
621
|
+
* CitrusPay: Update URL to current API version [davidsantoso]
|
|
622
|
+
* Clearhaus: Fix refund of captures [duff]
|
|
623
|
+
* Clearhaus: Update list of non fractal currencies [curiousepic]
|
|
624
|
+
* Clearhaus: Use localized amount [curiouspic]
|
|
625
|
+
* Conekta: Add void action [MauricioMurga]
|
|
626
|
+
* Credorax: Add gateway support [davidsantoso]
|
|
627
|
+
* CyberSource, Paymill, Payflow: Add verify_credentials [duff]
|
|
628
|
+
* CyberSource: Combine auth_reversal with Void [curiousepic]
|
|
629
|
+
* CyberSource: Increase merchant defined data fields [davidsantoso]
|
|
630
|
+
* CyberSource: Look up alpha2 country code [curiousepic]
|
|
631
|
+
* CyberSource: Use localized_amount [curiousepic]
|
|
632
|
+
* Element: Pass order_id and shipping address [curiousepic]
|
|
633
|
+
* Fat Zebra: Add cavv, xid, and sli fields [curiousepic]
|
|
634
|
+
* Fat Zebra: Fix improper descriptor nesting [curiousepic]
|
|
635
|
+
* Find countries if they are differently cased [curiousepic]
|
|
636
|
+
* GlobalCollect: Update credit card brand list [curiousepic]
|
|
637
|
+
* Jetpay: Support endpoint for Canada [shasum]
|
|
638
|
+
* Linkpoint: Clean whitespace from PEM [curiousepic]
|
|
639
|
+
* Litle: Retain amount to send in auth reversals [curiousepic]
|
|
640
|
+
* Litle: add scrubbing support [bruno]
|
|
641
|
+
* MONEI: Update supported countries list [davidgf]
|
|
642
|
+
* MiGS: Handle IDR currency [curiousepic]
|
|
643
|
+
* Migs: Add support for void [mohsenottello]
|
|
644
|
+
* Migs: Support some additional fields [duff]
|
|
645
|
+
* Moneris: Fix unit test stubs [shasum]
|
|
646
|
+
* Moneris: add scrubbing support [bruno]
|
|
647
|
+
* NMI, FirstData: Support verify_credentials [curiousepic]
|
|
648
|
+
* Openpay: Add support for verify [duff]
|
|
649
|
+
* PayJunctionV2: Add gateway support [shasum]
|
|
650
|
+
* PayU Latam: Add new gateway [shasum]
|
|
651
|
+
* PayU Latam: Update supported countries list [shasum]
|
|
652
|
+
* Payflow: Update supported countries list [shasum]
|
|
653
|
+
* PaypalExpress: Add SoftDescriptor field [talyssonoc]
|
|
654
|
+
* Redsys: Added DOP and CRC currency [davidsantoso]
|
|
655
|
+
* Sage: Add support for scrubbing [bruno]
|
|
656
|
+
* SagePay: Fix truncation [duff]
|
|
657
|
+
* SecurionPay: Update supported countries list [shasum]
|
|
658
|
+
* Stripe: Increase authorize amount during verify [davidsantoso]
|
|
659
|
+
* Stripe: Set minimum authorize amount depending on currency [davidsantoso]
|
|
660
|
+
* Stripe: Support new network tokenization API params [methodmissing]
|
|
661
|
+
* Stripe: Update supported countries list [shasum]
|
|
662
|
+
* TNS and CitrusPay: Support scrub and verify_credentials [duff]
|
|
663
|
+
* TNS and CitrusPay: Update to version 36 of the API [duff]
|
|
664
|
+
* TNS: Try TLS v1 [duff]
|
|
665
|
+
* Telr: Add gateway support [curiousepic]
|
|
666
|
+
* TransFirsTransactionExpress: Remove blank cvv element [davidsantoso]
|
|
667
|
+
* TransFirsTransactionExpress: Take into account blank string CVV [davidsantoso]
|
|
668
|
+
* Vanco: Improve handling of success determination [duff]
|
|
669
|
+
* Worldpay: Add hcgAdditionalData element [davidsantoso]
|
|
670
|
+
* Worldpay: Report error code [curiousepic]
|
|
671
|
+
|
|
672
|
+
== Version 1.60.0 (July 4, 2016)
|
|
673
|
+
* Orbital: Fix CC num leak on profile calls [drewblas]
|
|
674
|
+
* VisaNetPeru: Add ability to refund [duff]
|
|
675
|
+
* AuthorizeNet: Fix store using new profile [duff]
|
|
676
|
+
* Clearhaus: Support private key for signature [curiousepic]
|
|
677
|
+
* Clearhaus: Copy private_key when stripping [curiousepic]
|
|
678
|
+
* CertoDirect: Remove gateway [shiroginne]
|
|
679
|
+
* Braintree: Extra error messaging [jordan-brough]
|
|
680
|
+
* AuthorizeNetCim: Set error code for AuthorizeNetCimGateway response [ka8725]
|
|
681
|
+
* Quickpay v10: Remove amount requirement for store [curiousepic]
|
|
682
|
+
* PSLCards: correct namespace in doc for Response object from ActiveRecord::Billing to ActiveMerchant::Billing [CJ Keeney]
|
|
683
|
+
* Pagar.me: Add pagar.me [chrisenytc]
|
|
684
|
+
* Stripe: Update Readme to show stripe support [rhlrjv]
|
|
685
|
+
* Orbital: Add support for the BRL currency [duff]
|
|
686
|
+
* GlobalTransport: Require TLSv1 [duff]
|
|
687
|
+
* Openpay: Allow currency to be specified [darkaz]
|
|
688
|
+
* DataCash: Use API version 2 [curiousepic]
|
|
689
|
+
* Stripe: Support verify_credentials [duff]
|
|
690
|
+
* AuthorizeNet: Support verify_credentials [duff]
|
|
691
|
+
* BraintreeBlue: Support verify_credentials [duff]
|
|
692
|
+
* Redsys: Added SAR currency [agseco]
|
|
693
|
+
* QuickPay: Adding customer_ip for authorize action in quickpay [dinesh]
|
|
694
|
+
* MaxiPago: add void and refund [shasum]
|
|
695
|
+
* MaxiPago: Allow processor_id override [duff]
|
|
696
|
+
* Stripe: Interpret string input to store method as token identifier [bizla]
|
|
697
|
+
* MaxiPago: Add verify and scrub [shasum]
|
|
698
|
+
* Stripe: Remove metadata restriction from EMV transactions [bizla]
|
|
699
|
+
* SagePay: Add optional fields to SagePay requests [cristianstanescu]
|
|
700
|
+
* CyberSource: Assign default with override for billing address and email [shasum]
|
|
701
|
+
* CyberSource: Assign default order_id [duff]
|
|
702
|
+
* TNS: Support asia_pacific endpoint [curiousepic]
|
|
703
|
+
* TransFirsTransactionExpress: Fix exception [duff]
|
|
704
|
+
* CyberSource: Add decision manager optional fields [shasum]
|
|
705
|
+
* CyberSource: Add decision manager optional fields [shasum]
|
|
706
|
+
* TNS: Add support for TLS v1.2 [curiousepic]
|
|
707
|
+
* QuickpayV7: Default description field for store operation [duff]
|
|
708
|
+
* Elavon: Support customer_number field [duff]
|
|
709
|
+
* Map test_mode_live_card code to new standard error code [berkcaputcu]
|
|
710
|
+
* Elavon: Pass customer_number correctly [duff]
|
|
711
|
+
* Stripe: add SG to supported_countries attribute [timbeiko]
|
|
712
|
+
|
|
713
|
+
== Version 1.59.0 (May 18, 2016)
|
|
714
|
+
* Orbital: Allow AVS parts to be sent sans country [duff]
|
|
715
|
+
* SecureNet: Return the right error message for declines [duff]
|
|
716
|
+
* Moneris: Add verify [anellis]
|
|
717
|
+
* Moneris: Add verify [anellis]
|
|
718
|
+
* Jetpay: Add support for origin field[anellis]
|
|
719
|
+
* Jetpay: Don't default origin field [duff]
|
|
720
|
+
* GlobalCollect: New gateway support [curiousepic]
|
|
721
|
+
* Openpay: Use strict_encode64 [duff]
|
|
722
|
+
* Sage: Always pass along the billing state [duff]
|
|
723
|
+
* VisaNet Peru: New gateway support [shasum]
|
|
724
|
+
* Worldpay: Allow installationId to be specified at transaction time [duff]
|
|
725
|
+
* SecurionPay: Support store [shasum]
|
|
726
|
+
* Barclaycard Smartpay: Proper AVS return codes [curiousepic]
|
|
727
|
+
* VisaNetPeru: Pass through CVV [duff]
|
|
728
|
+
* Barclaycard Smartpay: Use strict_encode64 [duff]
|
|
729
|
+
* VisaNetPeru: Fix error when billing address empty [shasum]
|
|
730
|
+
* Vanco: Update live_url [duff]
|
|
731
|
+
* Cardstream: Reference purchase [curiousepic]
|
|
732
|
+
* Paymill: Fix error handling [methodmissing]
|
|
733
|
+
* Latitude19: New gateway support [shasum]
|
|
734
|
+
* BraintreeBlue: remove invalid test assertions [prburke]
|
|
735
|
+
* Merchant e-Solutions: Pass order_id with capture [curiousepic]
|
|
736
|
+
* CyberSource: Add rescue for ResponseErrors [curiousepic]
|
|
737
|
+
* AuthorizeNet: Always pass recurringBilling flag if present [curiousepic]
|
|
738
|
+
* S5: Pass order_id to TransactionID [curiousepic]
|
|
739
|
+
* NMI: Set ACH sec_code from options if present [curiousepic]
|
|
740
|
+
* VisaNet Peru: Refactor merchant_id and purchase_number handling [shasum]
|
|
741
|
+
* Braintree Blue: Pass descriptor_url field [curiousepic]
|
|
742
|
+
* VisaNet Peru: Add merchant_define_data option [duff]
|
|
743
|
+
* Merchant e-Solutions: pass optional 3Dsecure params [curiousepic]
|
|
744
|
+
* NMI: Fix refunds and voids of echecks [duff]
|
|
745
|
+
* VisaNet Peru: Pass dummy email when not present [curiousepic]
|
|
746
|
+
* PayU India: Add Maestro as supported card [curiousepic]
|
|
747
|
+
* Cashnet: Don't retry [duff]
|
|
748
|
+
* CardStream: Make Void call Cancel instead of Refund [curiousepic]
|
|
749
|
+
* Remove AN and KV country codes as they're not recognized by ISO-3166-1 [apdunston]
|
|
750
|
+
* Worldpay: Pass unchanged amount with correct currency exponent [curiousepic]
|
|
751
|
+
* Improve our handling of currencies sans fractions [duff]
|
|
752
|
+
* Stripe: Added support for the contactless magstripe entry mode option [rbalsdon]
|
|
753
|
+
* VisaNet Peru: Change money format to dollars [shasum]
|
|
754
|
+
* BlueSnap: Add gateway [duff]
|
|
755
|
+
* VisaNet Peru: Select the most meaningful gateway error message [shasum]
|
|
756
|
+
* SecurionPay: Update country list [duff]
|
|
757
|
+
* Support for BIN 2 MasterCard brand detection [rbalsdon]
|
|
758
|
+
* CardStream: Fix signature calculation [duff]
|
|
759
|
+
* CyberSource: Update test and live URL [marquisong]
|
|
760
|
+
* AuthorizeNet: Truncate nameOnAccount field [duff]
|
|
761
|
+
* Tns: Fix ipAddress field [duff]
|
|
762
|
+
* WorldNet: New gateway support [varyonic]
|
|
763
|
+
* BraintreeBlue: Allow channel override [duff]
|
|
764
|
+
* MerchantWarrior: Use Truncated Order Id [ThereExistsX]
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
== Version 1.58.0 (March 1, 2016)
|
|
768
|
+
* Move Electron check out of CreditCard into CreditCardMethods [ThereExistsX]
|
|
769
|
+
* CardStream: Add AED and NZD currencies [sdball]
|
|
770
|
+
* App55: Remove Gateway [ThereExistsX]
|
|
771
|
+
* Mercury: Stripping the start and end sentinels on card-present track data for max-length track1 requests [ryanbalsdon]
|
|
772
|
+
* SagePay: Update VISA Electron ranges [sdball]
|
|
773
|
+
* Clearhaus: Make request signing more transparent & robust [sdball]
|
|
774
|
+
* NCRSecurePay: Fix production URL [rwdaigle]
|
|
775
|
+
* Add ACH support to Stripe [sdball]
|
|
776
|
+
* PayPal Express: Fixing list of currencies without fractions [Krystosterone]
|
|
777
|
+
* Cashnet: Default custcode option and proper redirect handling [rwdaigle]
|
|
778
|
+
* TransFirst: Fix missing address and remove CC only fields for ACH [davidsantoso]
|
|
779
|
+
* More prominent links to contribution docs [rwdaigle]
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
== Version 1.57.0 (February 1, 2016)
|
|
783
|
+
* AuthorizeNetCim: Add unmaskExpirationDate option [RamilGilmanov]
|
|
784
|
+
* Element: Add gateway support [davidsantoso]
|
|
785
|
+
* Cardstream: 3D-secure capture fix [duff]
|
|
786
|
+
* Auth.net: Update store to create payment profiles [davidsantoso]
|
|
787
|
+
* CyberSource: Add support for mdd_fields [duff]
|
|
788
|
+
* Worldpay: Add support for verify [davidsantoso]
|
|
789
|
+
* Element: Add guard clause to handle undocumented errors [davidsantoso]
|
|
790
|
+
* Clearhaus: Add tests for signed requests [anellis]
|
|
791
|
+
* Stripe: Support adding cards to account [anellis]
|
|
792
|
+
* Clearhaus: Add text_on_statement option [anellis]
|
|
793
|
+
* Payeezy: Void and verify support [davidsantoso]
|
|
794
|
+
* Creditcall: Use ecommerce rather than cnp [duff]
|
|
795
|
+
* Payeezy: Add support for echecks [davidsantoso]
|
|
796
|
+
* Bridgepay: Add ability to store cards and pay with token [anellis]
|
|
797
|
+
* Initial support for Android Pay network tokenization cards [mrezentes]
|
|
798
|
+
* Transfirst: Fix exception when not all eCheck information is present [davidsantoso]
|
|
799
|
+
* Auth.net: Add tests for echeck refunds [davidsantoso]
|
|
800
|
+
* Transfirst: use default values for some eCheck data [davidsantoso]
|
|
801
|
+
* Element: Update the live URL endpoint [davidsantoso]
|
|
802
|
+
* Element: Parse responses from unexpected API errors [davidsantoso]
|
|
803
|
+
* Transfirst: Remove unused fields for echeck [davidsantoso]
|
|
804
|
+
* Sage: Internal refactoring into a single gateway class w/ common http conn [anellis]
|
|
805
|
+
* Cardstream: Adjust authorize and capture transactions [anellis]
|
|
806
|
+
* NCRSecurePay: New gateway support (Monetra white-label) [rwdaigle]
|
|
807
|
+
* Element: Map ReferenceNumber to order_id [duff]
|
|
808
|
+
* Element: Use a better MotoECICode default [duff]
|
|
809
|
+
* BraintreeBlue: Return transaction id for failed transactions when available [prburke]
|
|
810
|
+
* PayPal: Add InContextPaypalExpressGateway [xuorig]
|
|
811
|
+
* TransFirst: CVV is a required tag [duff]
|
|
812
|
+
* Checkout V2: Add Descriptor Name and City Options [anellis]
|
|
813
|
+
* Forte: Pass order_id [anellis]
|
|
814
|
+
* Merchant ESolutioins: Truncate order_id [anellis]
|
|
815
|
+
* Transfirst Transaction Express: New gateway support [sdball]
|
|
816
|
+
* Stripe: Add `stripe_account` header option [anellis]
|
|
817
|
+
* Cardstream: Add AVS code and message [anellis]
|
|
818
|
+
* Barclaycard Smartpay: New gateway support [curiousepic]
|
|
819
|
+
* Transfirst: Fix missing address and remove CC only fields for ACH [davidsantoso]
|
|
820
|
+
* Stripe: Support ACH payments [sdball]
|
|
821
|
+
* NCRSecurePay: Fix production URL [rwdaigle]
|
|
822
|
+
* Clearhaus: Make request signing more transparent & robust [sdball]
|
|
823
|
+
* SagePay: Properly detect Electron brand [sdball]
|
|
824
|
+
* Mercury: Fix for max-length track 1 [ryanbalsdon]
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
== Version 1.56.0 (December 1, 2015)
|
|
828
|
+
* Add Cardknox gateway [dlehren]
|
|
829
|
+
* Mercury: Add support for card present track 2 [ryanbalsdon]
|
|
830
|
+
* Cardstream: Improve default currency handling [duff]
|
|
831
|
+
* Mercury: Strip start and end sentinels on track 2 [ryanbalsdon]
|
|
832
|
+
* Redsys: Support new SHA256 authentication method [davidsantoso]
|
|
833
|
+
* Cashnet: Allow custcode override [duff]
|
|
834
|
+
* Add Rails 5 support [rafaelfranca]
|
|
835
|
+
* Set required Ruby version for install to 2 or greater [rafaelfranca]
|
|
836
|
+
* JetPay: Pass ud_fields in capture too [duff]
|
|
837
|
+
* Stripe: Correctly detect test mode refunds [aprofeit]
|
|
838
|
+
* Fix variables in remote gateways test template [sdball]
|
|
839
|
+
* Micropayment: Update fieldnames for new API [duff]
|
|
840
|
+
* Fix CreditCard#valid_number? erroring on non-digit characters [PatrickTulskie]
|
|
841
|
+
* Stripe: Correctly detect test mode voids [methodmissing]
|
|
842
|
+
* Garanti: Add test mode URL and update remote test credentials [cbilgili]
|
|
843
|
+
* Cashnet: Allow custcode override on refund [duff]
|
|
844
|
+
* Omise: Add a new optional api_version config [zdk]
|
|
845
|
+
* Elavon: Include IP address in purchase and authorize requests [aprofeit]
|
|
846
|
+
* TransFirst: Add support for ACH and more operations [davidsantoso]
|
|
847
|
+
* FirstData_e4: Fix void for even dollar transactions [duff]
|
|
848
|
+
|
|
849
|
+
== Version 1.55.0 (November 9, 2015)
|
|
850
|
+
* CyberSource: send customer IP address when provided [fastjames]
|
|
851
|
+
* Braintree: Simplify Braintree scrubbing when no transcript [duff]
|
|
852
|
+
* AuthorizeNet: Allow market_type override [duff]
|
|
853
|
+
* FirstData_e4: Support level_2 data [duff]
|
|
854
|
+
* FirstData_e4: Fix level_2 and level_3 [duff]
|
|
855
|
+
* MerchantWareFour: Use Void not PreAuthorizationVoid [duff]
|
|
856
|
+
* JetPay: Allow partial captures [duff]
|
|
857
|
+
* Creditcall: Fix production url [duff]
|
|
858
|
+
* FirstData_e4: Fix float error in Void [duff]
|
|
859
|
+
* Micropayment: Upgrade to new API [mrezentes]
|
|
860
|
+
* Netbilling: Add order_id to user_info [mrezentes]
|
|
861
|
+
* Stripe: scrub swipe/track, EMV data out of gateway transcripts [girasquid]
|
|
862
|
+
* Remove integration_mode [mattfawcett]
|
|
863
|
+
* Allow setting CVV requirement at instance level [fabiokr]
|
|
864
|
+
* Add SecurionPay gateway [szajbus]
|
|
865
|
+
* AuthorizeNet: Don't send currency to void [duff]
|
|
866
|
+
* Add Komoju gateway [k2nr]
|
|
867
|
+
* Replace Connection magic numbers with constant references [larrylv]
|
|
868
|
+
* Add CAMS gateway [trevorgrayson]
|
|
869
|
+
* PayPal Express: Fix AllowedPaymentMethod [edclements]
|
|
870
|
+
* Litle: Store credit card from PayPage [dontmatta]
|
|
871
|
+
* Orbital: Deprecate profile management API [ntalbott]
|
|
872
|
+
* FirstData e4: Honor currency when supplied [tchill]
|
|
873
|
+
* Authorize.net: Add config_error standard error code [andrewpaliga]
|
|
874
|
+
* PayPal Express: Add support for TotalType in SetExpressCheckout [gingerhendrix]
|
|
875
|
+
* eWay Rapid: Add :invoice option [DylanFM]
|
|
876
|
+
* Braintree: Add nonce payment method [eric1234,cwoodcox]
|
|
877
|
+
* Payflow: Allow passing of 3D Secure details via options [marquisong]
|
|
878
|
+
* Elavon: Support capture via CCCOMPLETE without credit card [marquisong]
|
|
879
|
+
* Securenet: Allow setting test_mode independently [wedstar]
|
|
880
|
+
* Replace Base.integration_mode and Base.gateway_mode with just Base.mode [aprofeit]
|
|
881
|
+
* Micropayment: Allow specification of a project [duff]
|
|
882
|
+
* QuickpayV10: Truncate order_id [duff]
|
|
883
|
+
* FirstData_e4: Fix Level 2 data [duff]
|
|
884
|
+
* Remove some duplication around name handling [duff]
|
|
885
|
+
* FirstData_e4: Support Tax1Number [duff]
|
|
886
|
+
* Add Transact Pro gateway [varyonic]
|
|
887
|
+
* Add Payeezy gateway [huoxito]
|
|
888
|
+
* USAePay: Add test mode setting via options [marquisong]
|
|
889
|
+
* Add Clearhaus gateway [dinesh]
|
|
890
|
+
* WorldpayOnlinePayments: Fix logic to determine success [ao]
|
|
891
|
+
* Paymill: store order_id in description field [nikoloff]
|
|
892
|
+
* TWD isn't a zero decimal currency [duff]
|
|
893
|
+
* PaypalExpress: Use custom zero decimal currencies [duff]
|
|
894
|
+
* Stripe: Migrate from /refund to /refunds [matthelm]
|
|
895
|
+
* Bogus: Adding basic EMV support [ryanbalsdon]
|
|
896
|
+
* PayBox Direct: Refunds and working test credentials [ivanfer]
|
|
897
|
+
* Vanco: Handle case of no billing_address [duff]
|
|
898
|
+
* BluePay: Add support for CUSTOM_ID2 field [ajporterfield]
|
|
899
|
+
* Creditcall: Handle no verification_value [duff]
|
|
900
|
+
|
|
901
|
+
== Version 1.54.0 (October 2, 2015)
|
|
902
|
+
* Beanstream: Add Network Tokenization support [girasquid]
|
|
903
|
+
* CenPOS: Allow order_id on void [duff]
|
|
904
|
+
* Provide better insight to CVV usage in requests [davidsantoso]
|
|
905
|
+
* Ogone: Add verify [duff]
|
|
906
|
+
* Beanstream: Add verify [mrezentes]
|
|
907
|
+
* PayPal: Map standard error codes [JakeCataford]
|
|
908
|
+
* Checkout.com: Fix an issue with empty phone numbers. [anotherjosmith]
|
|
909
|
+
* Quickpay: Edit store and add ability to purchase with stored card [anellis]
|
|
910
|
+
* Stripe: Set `receipt_email` to Stripe request if receipt delivery is requested [miccheng]
|
|
911
|
+
* Worldpay US: Add eCheck support [mrezentes]
|
|
912
|
+
* FirstData_e4: add level_3 data [mrezentes]
|
|
913
|
+
* Vanco: Support passing ip address [duff]
|
|
914
|
+
* Paybox Direct: Currency parsing fix [ivanfer]
|
|
915
|
+
* QuickpayV10: Remove currency requirement from store. [anellis]
|
|
916
|
+
* Raven: Use TLS 1.2 endpoint [bslobodin]
|
|
917
|
+
|
|
918
|
+
== Version 1.53.0 (September 1, 2015)
|
|
919
|
+
|
|
920
|
+
* Redsys: Add a number of currencies [agseco]
|
|
921
|
+
* Raven: update description, test url, and routing; fix tests [bslobodin]
|
|
922
|
+
* Raven: do not pass default (incorrect) PaymentType to #void [bslobodin]
|
|
923
|
+
* Add scrubbing to a number of gateways [anellis]
|
|
924
|
+
* BluePay: Add scrubbing [anellis]
|
|
925
|
+
* BraintreeBlue: Allow custom logger [duff]
|
|
926
|
+
* MerchantWareFour: Truncate invoiceNumber [duff]
|
|
927
|
+
* S5: Pass recurrence_mode in store [duff]
|
|
928
|
+
* QuickPay: Support 2-letter country codes in V10 API [girasquid]
|
|
929
|
+
* Stripe: Support validate:false field on store [anellis]
|
|
930
|
+
* CheckoutV2: Use correct live_url [duff]
|
|
931
|
+
* QuickPay: strip # from Order IDs before submission [girasquid]
|
|
932
|
+
* Litle: Use schema version 9.4 rather than 8.18 [anellis]
|
|
933
|
+
* Litle: Add decrypted apple_pay [anellis]
|
|
934
|
+
* QuickPay: fix method signature on #void [girasquid]
|
|
935
|
+
* Forte: Add gateway [davidsantoso]
|
|
936
|
+
* Stripe: return refund id for refund authorization [anellis]
|
|
937
|
+
* Paypal: Update api version [anellis]
|
|
938
|
+
* TNS: Translate countries to alpha3 codes [anellis]
|
|
939
|
+
* TNS: Handle non existent country [duff]
|
|
940
|
+
* TNS: Rescue Errors [anellis]
|
|
941
|
+
* CenPOS: Support avs_result and cvv_result [tjstankus]
|
|
942
|
+
* Stripe: Add application fee only on non-EMV transactions [bizla]
|
|
943
|
+
* Stripe: don't send blank, non-nil values [girasquid]
|
|
944
|
+
* Ogone: Send different auth type for mastercard [anellis]
|
|
945
|
+
* Cardstream: Add "type" field support [rwdaigle]
|
|
946
|
+
* Cardstream: 3dsecure transaction option [rwdaigle]
|
|
947
|
+
* Paystation: Map order_id to non-unique merchant reference field [anellis]
|
|
948
|
+
* Cardstream: Check for nil street address [anellis]
|
|
949
|
+
* Checkout.com and CheckoutV2.com: Update country list [duff]
|
|
950
|
+
* Cardstream: Handle nil addresses [rwdaigle]
|
|
951
|
+
* MiGS: Allow passing in currency [alovak]
|
|
952
|
+
* [POSSIBLE BREAKAGE] NMI: No longer use auth.net emulator [rwdaigle]
|
|
953
|
+
* SecureNet: Add DEVELOPERID if supplied [wedy]
|
|
954
|
+
* Braintree: Update country list [duff]
|
|
955
|
+
* NMI: Don't include dup_seconds if nil [rwdaigle]
|
|
956
|
+
* QuickPay: Make all operations to v10 platform synchronous [ta]
|
|
957
|
+
* QuickPay: Handle issue where no operations exists on payment [ta]
|
|
958
|
+
* NMI: Support merchant_defined_fields [duff]
|
|
959
|
+
* QuickpayV10: Add verify [anellis]
|
|
960
|
+
* BraintreeBlue: Use wiredump_device for logging only if present [braintreeps]
|
|
961
|
+
* QuickpayV10: Add scrubbing [anellis]
|
|
962
|
+
* QuickPayV10: Change tests to point to proper gateway [anellis]
|
|
963
|
+
* Monei: Add default options argument [davidgf]
|
|
964
|
+
* Ogone: Add additional 3d-secure parameters [ntalbott]
|
|
965
|
+
* Ogone: Refactor signature calculation [ntalbott]
|
|
966
|
+
* Add Creditcall gateway [davidsantoso]
|
|
967
|
+
* Redsys: Fix scrubbing for failed transactions [davidsantoso]
|
|
968
|
+
* Micropayment: Support Micropayment gateway [rwdaigle]
|
|
969
|
+
* USAePay: Use names from the given billing and shipping address [marquisong]
|
|
970
|
+
* Stripe: Add application fee on EMV authorize calls [bizla]
|
|
971
|
+
|
|
972
|
+
== Version 1.52.0 (July 20, 2015)
|
|
973
|
+
|
|
974
|
+
* Authorize.Net: Add device type to authorize.net retail requests [abecevello]
|
|
975
|
+
* Vanco: Change transaction type to WEB for echecks [duff]
|
|
976
|
+
* PayPal: Allow soft descriptor to be specified [davidsantoso]
|
|
977
|
+
* Authorize.net: Add disable_partial_auth field [anellis]
|
|
978
|
+
* SagePay: Add apply_avscv2 field [anellis]
|
|
979
|
+
* S5: Add Store [anellis]
|
|
980
|
+
* Merchant Ware v4: Add support for verify [davidsantoso]
|
|
981
|
+
* Mercury: No longer default to allow partial auth [duff]
|
|
982
|
+
* PayPal: Fix soft_descriptor and support soft_descriptor_city [duff]
|
|
983
|
+
* Merchant Ware: Add scrubbing [davidsantoso]
|
|
984
|
+
* Stripe: Make purchase via vaulted card consistent [duff]
|
|
985
|
+
* Moneris: Add network tokenization support [andrewpaliga]
|
|
986
|
+
* Ogone: Allow specifying a timeout value for requests [tomhipkin]
|
|
987
|
+
* PayU India: Increase allowed txnid to 30 characters [ntalbott]
|
|
988
|
+
* Authorize.Net: Allow passing device type through options, make wireless POS the default [abecevello]
|
|
989
|
+
* Authorize.Net: Update to new Akamai URL [taf2]
|
|
990
|
+
* Braintree: Add hold_in_escrow [anellis]
|
|
991
|
+
* Stripe: Allow purchases with tokens without customer specification [bizla]
|
|
992
|
+
|
|
993
|
+
== Version 1.51.0 (July 2, 2015)
|
|
994
|
+
|
|
995
|
+
* Garanti: Illegal character '&' parsing response [masaruhoshi]
|
|
996
|
+
* Stripe: Revert force USD for verify [duff]
|
|
997
|
+
* Litle: Surface XML validation errors in the response [jasonbosco]
|
|
998
|
+
* Litle: Pass the credit card verification value for tokenization (#store) requests, if one is set. [jasonbosco]
|
|
999
|
+
* S5: Make scrubbing regex less greedy [duff]
|
|
1000
|
+
* CardStream: Add support for verify [anellis]
|
|
1001
|
+
* Authorize.net: UTF-8 encode requests [duff]
|
|
1002
|
+
* Banwire: Add default email [anellis]
|
|
1003
|
+
* PayU India: Handle bad JSON [ntalbott]
|
|
1004
|
+
* Dibs: Pass CVC param only if there's a value [bruno]
|
|
1005
|
+
* Sage: Credit really is credit not refund [duff]
|
|
1006
|
+
* Sage: Add ability to refund [duff]
|
|
1007
|
+
* Cardstream: Add scrubbing [anellis]
|
|
1008
|
+
* Litle: Add debt_repayment_flag [duff]
|
|
1009
|
+
* iATS: Support ACH [rwdaigle]
|
|
1010
|
+
* CheckoutV2: Add Gateway [anellis]
|
|
1011
|
+
* CenPOS: Fix refund amount issue [duff]
|
|
1012
|
+
* Add error_code mapping and error_code_from to gateway generator [jnormore]
|
|
1013
|
+
* Stripe: Parse EMV ARC from error response [bizla]
|
|
1014
|
+
* Redsys: Add MYR currency [agseco]
|
|
1015
|
+
* Add "contactless" flag to credit card model [davidseal]
|
|
1016
|
+
* Stripe: Add "contactless" flag support to gateway [davidseal]
|
|
1017
|
+
* Add encrypted_pin data to credit card model [ryanbalsdon]
|
|
1018
|
+
* Stripe: Add encrypted_pin support to gateway [ryanbalsdon]
|
|
1019
|
+
* Stripe: Support mapping advanced decline codes to standard codes [abecevello]
|
|
1020
|
+
* Epay: filter out invalid characters in returned URLs [dwradcliffe]
|
|
1021
|
+
* Redsys: Strip leading zeroes from currency codes [agseco]
|
|
1022
|
+
* Authorize.net: Add invoice information to refund [marquisong]
|
|
1023
|
+
* Authorize.net: Add store ability [duff]
|
|
1024
|
+
* Paystation: Add refund [mrezentes]
|
|
1025
|
+
* Paystation: No longer require order_id everywhere [duff]
|
|
1026
|
+
* Checkout: Support descriptor_name and descriptor_city [duff]
|
|
1027
|
+
* Add supports_network_tokenization? to gateways [jnormore]
|
|
1028
|
+
* Bpoint: Handle message for invalid login [anellis]
|
|
1029
|
+
* TransFirst: Add scrubbing [davidsantoso]
|
|
1030
|
+
* TransFirst: Add back a few request fields [davidsantoso]
|
|
1031
|
+
|
|
1032
|
+
|
|
1033
|
+
== Version 1.50.0 (June 1, 2015)
|
|
1034
|
+
|
|
1035
|
+
* Vanco: Add gateway [duff]
|
|
1036
|
+
* Conekta: Move device fingerprint to root [MauricioMurga]
|
|
1037
|
+
* Conekta: Change default language to Spanish [MauricioMurga]
|
|
1038
|
+
* Vanco: Improve authentication handling [duff]
|
|
1039
|
+
* Vanco: Allow specification of fund_id [duff]
|
|
1040
|
+
* S5: Add gateway [davidsantoso]
|
|
1041
|
+
* SecureNet: Truncate order_id [duff]
|
|
1042
|
+
* [POSSIBLE BREAKAGE] Stripe: Be explicit about API version [duff]
|
|
1043
|
+
* Dibs: Add gateway [mrezentes]
|
|
1044
|
+
* Dibs: Rubyize merchant_id and secret_key [mrezentes]
|
|
1045
|
+
* Stripe: Add support for reverse_transfer [duff]
|
|
1046
|
+
* USA ePay: Add support for manual entry indicator [AnotherJoSmith]
|
|
1047
|
+
* Authorize.Net: Add support for manual entry indicator [AnotherJoSmith]
|
|
1048
|
+
* CenPOS: Change description to invoice_detail [mrezentes]
|
|
1049
|
+
* BPoint: Add gateway [tjstankus]
|
|
1050
|
+
* S5: Remove address requirement for purchase and authorize [davidsantoso]
|
|
1051
|
+
* Vanco: Add support for eChecks [duff]
|
|
1052
|
+
* Remove Adyen support [ntalbott]
|
|
1053
|
+
* CenPOS: Use ProcessCreditCard action [duff]
|
|
1054
|
+
* CASHnet: uri encode the merchant gateway name [mrezentes]
|
|
1055
|
+
* S5: Include card brand in request body [davidsantoso]
|
|
1056
|
+
* Vanco: Handle multiple error responses [duff]
|
|
1057
|
+
* Merchant Partners gateway support [rwdaigle]
|
|
1058
|
+
* BPoint: Update params to contain all response data [tjstankus]
|
|
1059
|
+
* BPoint: Support biller_code in options [tjstankus]
|
|
1060
|
+
* Sagepay: Add Verify [anellis]
|
|
1061
|
+
* S5: Build XML with UTF-8 encoding [tjstankus]
|
|
1062
|
+
* Cashnet: Handle unparsable response body [duff]
|
|
1063
|
+
* CenPOS: Allow specification of customer_code [duff]
|
|
1064
|
+
* Allied Wallet: Add gateway [anellis]
|
|
1065
|
+
* S5: set Regex closure on scrubbing method [davidsantoso]
|
|
1066
|
+
* Dibs: Require TLSv1 [duff]
|
|
1067
|
+
* Optimal: Handle case of no billing address [duff]
|
|
1068
|
+
* Omise: Add gateway [zdk]
|
|
1069
|
+
* CenPOS: Simplify currency handling [duff]
|
|
1070
|
+
* Beanstream: Don't treat redirect as success [aprofeit]
|
|
1071
|
+
* Add PayU India gateway [ntalbott]
|
|
1072
|
+
* NetBilling: Require TLSv1 [duff]
|
|
1073
|
+
* S5: Handle recurring transactions without CVV [davidsantoso]
|
|
1074
|
+
* Stripe: Force USD for verify [duff]
|
|
1075
|
+
* PayU India: Prevent shadowing in response parsing [ntalbott]
|
|
1076
|
+
* QuickPay: Add support for v10 API [ta]
|
|
1077
|
+
* Fat Zebra: Fix refund and store signatures [duff]
|
|
1078
|
+
* Fat Zebra: Allow transactions without a CVV [duff]
|
|
1079
|
+
|
|
1080
|
+
== Version 1.49.0 (May 1, 2015)
|
|
1081
|
+
|
|
1082
|
+
* Braintree: Add support for AVS error codes [ivanvfer]
|
|
1083
|
+
* MerchantWarrior: Truncate description field [duff]
|
|
1084
|
+
* Braintree: Add service_fee_amount option [duff]
|
|
1085
|
+
* SecureNet: Allow shipping_address[:name] [duff]
|
|
1086
|
+
* MonerisUS: Add verify [mrezentes]
|
|
1087
|
+
* Ezic: Add gateway [duff]
|
|
1088
|
+
* Stripe: Add destination field [cwise]
|
|
1089
|
+
* SecureNet: Fix ordering of shipping field names [duff]
|
|
1090
|
+
* SecurePayAu: Update API URL [girasquid]
|
|
1091
|
+
* Stripe: Add EMV "chip & sign", "chip & offline PIN" and Maestro support [bizla]
|
|
1092
|
+
* Add Errno::EHOSTUNREACH to NetworkConnectionRetries::DEFAULT_CONNECTION_ERRORS [randito78]
|
|
1093
|
+
* Stripe: Add support for idempotency keys [michaelherold]
|
|
1094
|
+
* WePay: Handle JSON::ParserError exceptions [duff]
|
|
1095
|
+
* Borgun: Update country list and homepage url [mrezentes]
|
|
1096
|
+
* AuthorizeNet: Add cvv to request only if it's valid [tjstankus]
|
|
1097
|
+
* Stripe: Bug fix: add amounts only on non-EMV transactions, temporarily omit EMV testcases [bizla]
|
|
1098
|
+
* Ezic: Add support for void [duff]
|
|
1099
|
+
* iATS: Update supported countries [mrezentes]
|
|
1100
|
+
* Ezic: Update supported countries [duff]
|
|
1101
|
+
* AuthorizeNet: Truncate card number [tjstankus]
|
|
1102
|
+
|
|
1103
|
+
== Version 1.48.0 (April 8, 2015)
|
|
1104
|
+
|
|
1105
|
+
* Clean up `rake gateways:hosts` output [ntalbott]
|
|
1106
|
+
* Add Axcess MS gateway [timtait]
|
|
1107
|
+
* Add PayHub gateway [grepruby]
|
|
1108
|
+
* Orbital: Improve data formatting [boone]
|
|
1109
|
+
* [POSSIBLE BREAKAGE] USAePay Transaction: Make "void release" the default [dppcode]
|
|
1110
|
+
* Redsys: Add rudimentary vaulting [varyonic]
|
|
1111
|
+
* Exact: Handle 401 failures better [jefflaporte]
|
|
1112
|
+
* SagePay: make `VPSProtocol` user-configurable [boxofrad]
|
|
1113
|
+
* Netbilling: Add store support [cshepherd]
|
|
1114
|
+
* Add Qvalent gateway [markabe]
|
|
1115
|
+
* Expose proxy address and port to gateways [arkes]
|
|
1116
|
+
* Remove Ruby 1.9 [j-mutter]
|
|
1117
|
+
* Qvalent: Do not sent order.ipAddress when storing [markabe]
|
|
1118
|
+
* Qvalent: Fix argument name [bruno]
|
|
1119
|
+
* Qvalent: map card storage reference to authorization [markabe]
|
|
1120
|
+
* Qvalent: Fix scrub replacement, it was too greedy [markabe]
|
|
1121
|
+
* PayConex: Add gateway [duff]
|
|
1122
|
+
* AuthorizeNet: Add credit support [duff]
|
|
1123
|
+
* CenPOS: Add gateway [markabe]
|
|
1124
|
+
* Stripe: Update country list [markabe]
|
|
1125
|
+
* Add Monei.net gateway [leolara]
|
|
1126
|
+
* MerchantWarrior: Fix refund and capture signatures [duff]
|
|
1127
|
+
* CenPOS: Add support for capture and refund [markabe]
|
|
1128
|
+
* Authorize.net: Add support for network tokenization credit cards [jnormore]
|
|
1129
|
+
* Stripe: Add support for passing in metadata for auths and purchases [kitt]
|
|
1130
|
+
* Pin: Pass amount param for captures [ab9]
|
|
1131
|
+
* NAB Transact: Improve store functionality [duff]
|
|
1132
|
+
* Add Worldpay Online Payments [ao]
|
|
1133
|
+
* Fat Zebra: Add multi-currency support [nagash]
|
|
1134
|
+
* Fat Zebra: Add auth/capture capability [nagash]
|
|
1135
|
+
* Fat Zebra: Add soft descriptor support [nagash]
|
|
1136
|
+
|
|
1137
|
+
== Version 1.47.0 (February 25, 2015)
|
|
1138
|
+
|
|
1139
|
+
* Authorize.Net: Properly send name in shipping address line, when shipping address is provided [girasquid]
|
|
1140
|
+
* Payflow: Add verify support [ntalbott]
|
|
1141
|
+
* Capture ConnectionError#triggering_exception [ntalbott]
|
|
1142
|
+
* Flo2Cash: Map Reference->:order_id (not :invoice) [ntalbott]
|
|
1143
|
+
* Flo2Cash: Fix card brand handling [ntalbott]
|
|
1144
|
+
* Flo2Cash: Improve error handling & simplify "Simple" gateway [ntalbott]
|
|
1145
|
+
* Remove Vindicia gateway [mutemule]
|
|
1146
|
+
* Firstdata E4: Support other mastercard string [jcbantuelle]
|
|
1147
|
+
* Checkout: Disallow altering endpoint via options [markabe]
|
|
1148
|
+
|
|
1149
|
+
== Version 1.46.0 (January 20, 2015)
|
|
1150
|
+
|
|
1151
|
+
* CHANGE: drop `offsite_payments` and `active_utils` as dependencies. [wvanbergen]
|
|
1152
|
+
* CHANGE: remove `OffsitePaymentShim`. You will have to add offsite_payments as a dependency,
|
|
1153
|
+
and update any mentions of `ActiveSupport::Billing::Integration` to
|
|
1154
|
+
`OffsitePayments::Integrations`. [wvanbergen]
|
|
1155
|
+
* QuickBooks Payments: Add adapter [ivanfer, bizla]
|
|
1156
|
+
* Quickbooks: Remove requirement of oauth gem.
|
|
1157
|
+
* PayGate: Add support for refunds [StephanAtG2]
|
|
1158
|
+
* PayPal: Add #scrub for scrubbing PCI information out of HTTP transcripts [girasquid]
|
|
1159
|
+
* Stripe: Add #scrub for scrubbing PCI information out of HTTP transcripts [girasquid]
|
|
1160
|
+
* Cybersource: Add ability to verify a card [duff]
|
|
1161
|
+
* BraintreeBlue: Expose the error code in the response params [duff]
|
|
1162
|
+
* eWay Rapid: Update supported countries and card types [incarnate]
|
|
1163
|
+
* PayPal: Allow specifying ButtonSource at init [ntalbott]
|
|
1164
|
+
* Payflow: Add fraud_review support [ntalbott]
|
|
1165
|
+
* Add IPP gateway [InfraRuby]
|
|
1166
|
+
* Redsys: Fix order_id truncation [duff]
|
|
1167
|
+
* AuthorizeNet: Improve duplicate_window handling [duff]
|
|
1168
|
+
* PayPal: Fix ButtonSource bug [ntalbott]
|
|
1169
|
+
* Checkout: Prevent multiple trackids from being passed [markabe]
|
|
1170
|
+
* Pin: Handle JSON parsing exception in response [duff]
|
|
1171
|
+
* Improve test suite to test against multiple ActiveSupport versions [wvanbergen]
|
|
1172
|
+
* Misc. code cleanup [wvanbergen]
|
|
1173
|
+
* Add Flo2Cash gateway [markabe]
|
|
1174
|
+
* Litle: Allow order_source override [duff]
|
|
1175
|
+
* Quickpay: Add ability to finalize a capture [askehansen]
|
|
1176
|
+
* AuthorizeNet: Prevent test mode using live gateway [duff]
|
|
1177
|
+
* Add Flo2Cash Simple gateway [markabe]
|
|
1178
|
+
|
|
1179
|
+
== Version 1.45.0 (December 1, 2014)
|
|
1180
|
+
|
|
1181
|
+
* HPS: Always pass CardHolderData element [SecureSubmit, ntalbott]
|
|
1182
|
+
* PayJunction: Include 'track' parameter if provided [hron]
|
|
1183
|
+
* WebPay: Fix API calls [tomykaira]
|
|
1184
|
+
* Moneris US: Add store, unstore, and update [AntoineInsa]
|
|
1185
|
+
* Moneris US: Add CVV and AVS [AntoineInsa]
|
|
1186
|
+
* Stripe: Add support for statement_description [markabe]
|
|
1187
|
+
* CASHNet: Add support for fname and lname [markabe]
|
|
1188
|
+
* Orbital: Fix customer profile auth/purchase [denis]
|
|
1189
|
+
* Payex: Fix expiry month to allow 4 digit year [duff]
|
|
1190
|
+
* Cashnet: Allow overriding custcode [hoenth]
|
|
1191
|
+
* Cashnet: Fix overridding item_code per transaction [ntalbott]
|
|
1192
|
+
* Add Checkout.com gateway [ravish-ramrakha-cko]
|
|
1193
|
+
* HPS: Add verify support [SecureSubmit]
|
|
1194
|
+
* Add Bank Frick gateway [varyonic]
|
|
1195
|
+
* Add Global Transport gateway [duff]
|
|
1196
|
+
* iATS: Add #store and #unstore [duff]
|
|
1197
|
+
* Authorize.Net: Fix amount formatting [ntalbott]
|
|
1198
|
+
* Authorize.Net: Truncate order_id to 20 characters [ntalbott]
|
|
1199
|
+
* Authorize.Net: Truncate more fields [duff]
|
|
1200
|
+
* Authorize.Net: Truncate invoiceNumber [ntalbott]
|
|
1201
|
+
* Adyen: Add support for verify operation [duff]
|
|
1202
|
+
* USAePay: Add track_data support [louiskearns]
|
|
1203
|
+
* Payex: Use the right url for the purchase call [duff]
|
|
1204
|
+
* Braintree: Allow dynamic descriptors [duff]
|
|
1205
|
+
* Openpay: Add support for device session id [guillermo-delucio, ismaelem]
|
|
1206
|
+
* Redsys: Add support for verify [duff]
|
|
1207
|
+
* Redsys: Handle unknown currencies [duff]
|
|
1208
|
+
* Stripe: Make #unstore signature consistent [duff]
|
|
1209
|
+
* Remove defunct Samurai gateway [ntalbott]
|
|
1210
|
+
* eWay Rapid: Tweak authorization support [duff]
|
|
1211
|
+
* Litle: Add support for dynamic descriptors [duff]
|
|
1212
|
+
* Add TNS gateway [markabe]
|
|
1213
|
+
* TNS: Update countries and supported card types [markabe]
|
|
1214
|
+
* Conekta: Add AMEX as a supported card type [MauricioMurga]
|
|
1215
|
+
* Checkout: pass through currency type [markabe]
|
|
1216
|
+
* Bogus: return standard error codes [jpcaissy]
|
|
1217
|
+
* Add PaymentToken and ApplePayPaymentToken objects for token-based transactions [bizla]
|
|
1218
|
+
* Authorize.Net: Add ApplePay in-app transaction support [bizla]
|
|
1219
|
+
* Stripe: Add ApplePay in-app transaction support [bizla]
|
|
1220
|
+
* eWAY Rapid: Add PartnerID param [j-mutter]
|
|
1221
|
+
* GlobalTransport: Truncate order_id [duff]
|
|
1222
|
+
* Redsys: Allow a description to be specified [duff]
|
|
1223
|
+
* NetworkMerchants: Fix currency [j-mutter]
|
|
1224
|
+
* Redsys: Improve handling of order_id [duff]
|
|
1225
|
+
* Checkout: Add support for void, refund, and verify [markabe]
|
|
1226
|
+
|
|
1227
|
+
== Version 1.44.1 (Aug 28, 2014)
|
|
1228
|
+
|
|
1229
|
+
* Allow SSLv3 for PsiGate [mutemule]
|
|
1230
|
+
* Set default :state to n/a for NetworkMerchants [cjoudrey]
|
|
1231
|
+
|
|
1232
|
+
== Version 1.44.0 (Aug 21, 2014)
|
|
1233
|
+
|
|
1234
|
+
* Moneris: Add :avs_enabled option [bslobodin]
|
|
1235
|
+
* Stripe: Populate authorization in failed responses, when available [bslobodin]
|
|
1236
|
+
* Moneris: Use the name on the card [duff]
|
|
1237
|
+
* Balanced: More 1.1 API fixes and mappings [ntalbott]
|
|
1238
|
+
* Balanced: Handle "pending" refunds [duff]
|
|
1239
|
+
* Immediately convert credit card date fields to integers [ntalbott]
|
|
1240
|
+
* Balanced: Handle outside card tokens [ntalbott]
|
|
1241
|
+
* Balanced: Do not pass address if zip is missing [ntalbott]
|
|
1242
|
+
* Float active_utils at the patch version instead of the minor version [nwjsmith]
|
|
1243
|
+
* Wirecard: Fix CVV & AVS response handling [alevett]
|
|
1244
|
+
* Consolidate deprecation handling [ntalbott]
|
|
1245
|
+
* Authorize.Net CIM: Do not send x_test_request [danrabinowitz]
|
|
1246
|
+
* Authorize.Net CIM: Pass delimiter through [jsoma]
|
|
1247
|
+
* HPS: Add support for track data [SecureSubmit]
|
|
1248
|
+
* HPS: Fix processing without an address [SecureSubmit]
|
|
1249
|
+
* Balanced: Do not pass address if zip is blank [duff]
|
|
1250
|
+
* Do CreditCard attribute cleanup at assignment [ntalbott]
|
|
1251
|
+
* eWay Rapid: Add auth/capture/void support [ntalbott]
|
|
1252
|
+
* [POSSIBLE BREAKAGE] Remove dependency on active_utils Validateable [ntalbott]
|
|
1253
|
+
* Make all active_utils requires explicit [ntalbott]
|
|
1254
|
+
* Balanced: Handle legacy card tokens [ntalbott]
|
|
1255
|
+
* Braintree Blue: Default verification merchant id [speric]
|
|
1256
|
+
* [POSSIBLE BREAKAGE] Extract integrations into an offsite_payments gem [ntalbott]
|
|
1257
|
+
* [POSSIBLE BREAKAGE] Drop stated/tested compatibility with Rails < 3.2 [ntalbott]
|
|
1258
|
+
* Stop requiring unused CurrencyCode class from active_utils [ntalbott]
|
|
1259
|
+
* Move ActiveMerchant::Error into ActiveMerchant [ntalbott]
|
|
1260
|
+
* Inline RequiresParameters in Gateway & move Country from active_utils [ntalbott]
|
|
1261
|
+
* Quickpay v7: Fix passing acquirers field [moklett]
|
|
1262
|
+
* Quickpay v7: Pass an amount when storing cards [ta & moklett]
|
|
1263
|
+
* Quickpay: Expand list of supported countries [ta]
|
|
1264
|
+
* Validate CreditCard verification value [mnoack]
|
|
1265
|
+
* Authorize.Net CIM: Allow updating a payment profile without a full credit card number [speric]
|
|
1266
|
+
* Wirecard: Add optional CommerceType element [timtait]
|
|
1267
|
+
* Add Borgun gateway [markabe]
|
|
1268
|
+
* [POSSIBLE BREAKAGE] NAB Transact: Allow timeout customization [duff]
|
|
1269
|
+
* Wirecard: Add card store and purchase/authorize by reference [speric]
|
|
1270
|
+
* Worldpay: Add support for Switch cards [dougal]
|
|
1271
|
+
* FirstData e4: Send correct card type [npverni]
|
|
1272
|
+
* Elavon: Add store/update support [npverni]
|
|
1273
|
+
* Wirecard: Catch an empty ERROR <Message> Element [timtait]
|
|
1274
|
+
* Finansbank (CC5): Add void/refund/credit support [muhammetdilek]
|
|
1275
|
+
* Wirecard: Use authorization_check for Amex store [npverni]
|
|
1276
|
+
* Elavon: Make void work for authorizations [duff]
|
|
1277
|
+
* Add Commercegate gateway [vitaliyvasin]
|
|
1278
|
+
* Wirecard: Fix "amex" references [mendable]
|
|
1279
|
+
* HPS: Do not pass empty elements [SecureSubmit]
|
|
1280
|
+
* Paymill: Add more supported card types [nikoloff]
|
|
1281
|
+
* Paymill: Add source [nikoloff]
|
|
1282
|
+
* Paymill: Add description for preauthorizations [nikoloff]
|
|
1283
|
+
* Paymill: Add remote tests using tokens [nikoloff]
|
|
1284
|
+
* HPS: Add developer, version number and site trace options [SecureSubmit]
|
|
1285
|
+
* Update 1stPayGateway.Net gateway [rwdaigle]
|
|
1286
|
+
* Payflow: Add verbosity option [doppler]
|
|
1287
|
+
* Allow ignoring the result of any MultiResponse step [ntalbott]
|
|
1288
|
+
* Stripe: Add ability to verify a card [duff]
|
|
1289
|
+
* Paypal: Add ability to verify a card [duff]
|
|
1290
|
+
* Authorize.net: Add ability to verify a card [duff]
|
|
1291
|
+
* Braintree: Add ability to verify a card [duff]
|
|
1292
|
+
* Enhance gateway generator to support verify [duff]
|
|
1293
|
+
* PayPal Express: Add funding source support [baraabourghli]
|
|
1294
|
+
* Optimal: Add IP address to requests [justinplouffe]
|
|
1295
|
+
* Pin: Add authorize & capture support [keithpitt]
|
|
1296
|
+
* Pin: Add update support [keithpitt]
|
|
1297
|
+
* Vindicia: Stop using the vindicia-api gem [ntalbott]
|
|
1298
|
+
* Clean up the warnings fog [ntalbott]
|
|
1299
|
+
* Quickpay: Map options[:ip] for fraud analysis [ta]
|
|
1300
|
+
* SagePay: Truncate fields [duff]
|
|
1301
|
+
* First Data E4: Add ability to verify a card [duff]
|
|
1302
|
+
* Elavon: Add ability to verify a card [duff]
|
|
1303
|
+
* Worldpay: Pass email and IP address [duff]
|
|
1304
|
+
* Worldpay: Use updated address format [duff]
|
|
1305
|
+
* Moneris: Fix address splitting [ntalbott]
|
|
1306
|
+
* FirstData E4: Allow passing CAVV through [Senjai]
|
|
1307
|
+
* Braintree Blue: Remember the capture transaction id [duff]
|
|
1308
|
+
* Eway Rapid: Truncate some fields [duff]
|
|
1309
|
+
* Optimal Payment: Make account mandatory field [rwdaigle]
|
|
1310
|
+
* Worldpay: Improve address defaulting [duff]
|
|
1311
|
+
* Authorize.Net: Add maestro as a supported card type [vparihar01]
|
|
1312
|
+
* Worldpay: Improve address defaults [duff]
|
|
1313
|
+
* Braintree Blue: Pass cardholder_name when tokenizing [radar]
|
|
1314
|
+
* Wirecard: Improve error handling [mendable]
|
|
1315
|
+
* Litle: Add verify support [markabe]
|
|
1316
|
+
* USAePay: Add verify support [markabe]
|
|
1317
|
+
* BridgePay: Add verify support [duff]
|
|
1318
|
+
* Braintree Blue: Add payment_method_token flag [JDutil]
|
|
1319
|
+
* SagePay: Add optional FI fields [rob-anderson]
|
|
1320
|
+
* Iridium: Add AVS and CVV results [X0Refraction]
|
|
1321
|
+
* NAB Transact: Add credit support [nagash]
|
|
1322
|
+
* Braintree Blue: Add application_id support [npverni]
|
|
1323
|
+
* Realex: Add maestro mapping [uriklar]
|
|
1324
|
+
* Add Worldpay US gateway [markabe]
|
|
1325
|
+
* Cybersource: Add shipping address [pkoppula]
|
|
1326
|
+
|
|
1327
|
+
== Version 1.43.2 (May 12, 2014)
|
|
1328
|
+
|
|
1329
|
+
* Remove 2Checkout's #line_item due to conflict with Klarna/Shopify [edward]
|
|
1330
|
+
* Auth.Net CIM: Fix ordering of order/trans_id [pdamer]
|
|
1331
|
+
* Add PagoFacil gateway [bhserna, abisosa]
|
|
1332
|
+
* [POSSIBLE BREAKAGE] Stripe: Allow for updating of stored card [speric]
|
|
1333
|
+
* Authorize.Net: Deprecate ARB [ntalbott]
|
|
1334
|
+
* Authorize.Net CIM: Add recurring billing flag [gabealmer]
|
|
1335
|
+
* Spreedly: Add support for :ip [megamoose]
|
|
1336
|
+
* PayPal Express: Improve received_at handling [jwarchol]
|
|
1337
|
+
* PayPal Express: Add ReqBillingAddress flag [johnb-razoo]
|
|
1338
|
+
* Beanstream: Add support for Legato single use tokens [tylerrooney]
|
|
1339
|
+
* PayPal Digital Goods: Allow mobile [tomprats]
|
|
1340
|
+
* Maxipago: Add installment support [alexandremcosta]
|
|
1341
|
+
* Deprecate recurring API support [ntalbott]
|
|
1342
|
+
* NMI: fix CreditCard check [bslobodin]
|
|
1343
|
+
* SagePay: Add tokenization support [kernow]
|
|
1344
|
+
* PayPal Express: Reference transaction details [lrostovsky]
|
|
1345
|
+
* Balanced: Update to API 1.1 [steveklabnik]
|
|
1346
|
+
* Add Cashnet gateway [hoenth]
|
|
1347
|
+
* Conekta: Standardize address options [MauricioMurga]
|
|
1348
|
+
* Wirecard: Add support for reference purchases [timtait]
|
|
1349
|
+
* Worldpay: Add support for external references [matsubo]
|
|
1350
|
+
* Balanced: Voiding a capture is not allowed [duff]
|
|
1351
|
+
* Add HPS gateway (Heartland Payment Systems) [SecureSubmit]
|
|
1352
|
+
* Balanced: Fix handling of 500 errors [ntalbott]
|
|
1353
|
+
* Universal: Remove all billing address fields [bslobodin]
|
|
1354
|
+
* Balanced: Stop creating a customer on each call [ntalbott]
|
|
1355
|
+
* Balanced: Refactor and handle legacy authorizations [ntalbott]
|
|
1356
|
+
* SagePay Form: Update to v3.00 [bslobodin]
|
|
1357
|
+
* GestPay: Use a more specific error class when parsing [odorcicd]
|
|
1358
|
+
* PagSeguro: Improve error handling [celsodantas]
|
|
1359
|
+
* PxPay: Support for newer, query-less redirect URLs [odorcicd, bslobodin]
|
|
1360
|
+
* eWAY Rapid: Update to 3.1 API [atomgiant]
|
|
1361
|
+
* Misc refactorings [justinplouffe]
|
|
1362
|
+
* Remove greedy rescue, and convert some errors to be user-facing [odorcicd]
|
|
1363
|
+
* PayPal Express: pass logo image for setup request [dimko]
|
|
1364
|
+
* Improve credit card validation [duff]
|
|
1365
|
+
|
|
1366
|
+
== Version 1.43.1 (May 1, 2014)
|
|
1367
|
+
|
|
1368
|
+
* Merchant Warrior: Scrub names [duff]
|
|
1369
|
+
* Validate Gateway.supported_countries [rwdaigle]
|
|
1370
|
+
* Stripe: Add recurring flag support [bslobodin]
|
|
1371
|
+
* Stripe: Use localized amounts for currencies w/o minor units [bslobodin]
|
|
1372
|
+
* WebPay: Leverage fixes to Stripe to remove duplicate code [bslobodin]
|
|
1373
|
+
* Klarna: Miscellanenous fixes [edward]
|
|
1374
|
+
* Mollie iDEAL: Use order's description [wvanbergen]
|
|
1375
|
+
|
|
1376
|
+
== Version 1.43.0 (April 24, 2014)
|
|
1377
|
+
|
|
1378
|
+
* PagSeguro: New offsite integration [celsodantas]
|
|
1379
|
+
* Sage Pay: Fix amount parsing in notifications [berkcaputcu]
|
|
1380
|
+
* Sage Pay: Use API v3.00 [bslobodin]
|
|
1381
|
+
* BridgePay: Switch method of success detection [markabe]
|
|
1382
|
+
* BridgePay: Use Return as TransType for refunds [markabe]
|
|
1383
|
+
* IATS: Complete rewrite using first class API [rwdaigle]
|
|
1384
|
+
* IATS: Fix invalid country code UK -> GB [rwdaigle]
|
|
1385
|
+
* DataCash: Fix refund processing using original authorization [bslobodin]
|
|
1386
|
+
* Transnational gateway renamed to Network Merchants [bslobodin]
|
|
1387
|
+
* PayMill: Handle non-JSON server responses [bslobodin]
|
|
1388
|
+
|
|
1389
|
+
== Version 1.42.9 (April 15, 2014)
|
|
1390
|
+
|
|
1391
|
+
* Spreedly: Add ip, description and gateway_specific_fields [faizalzakaria]
|
|
1392
|
+
* Sage (US): Support store/unstore of cards [rwdaigle]
|
|
1393
|
+
* Pin: Add american express to supported cards [nagash]
|
|
1394
|
+
* Raven: Update handling of CVV/AVS [bslobodin]
|
|
1395
|
+
* Raven: Use UUID for RequestID [bslobodin]
|
|
1396
|
+
|
|
1397
|
+
== Version 1.42.8 (April 4, 2014)
|
|
1398
|
+
|
|
1399
|
+
* Cecabank: Handle invalid xml response body [duff]
|
|
1400
|
+
* Wirecard: Capture error code in the response [duff]
|
|
1401
|
+
* Litle: Remove gem dependency [duff]
|
|
1402
|
+
* Litle: Fix case of missing address parts [duff]
|
|
1403
|
+
* Universal: Add universal offsite API implementation [bslobodin]
|
|
1404
|
+
* Iridium: Add more currencies [bslobodin]
|
|
1405
|
+
* iDeal: Add Mollie iDeal offsite implementation [wvanbergen, maartenvg]
|
|
1406
|
+
|
|
1407
|
+
== Version 1.42.7 (March 18, 2014)
|
|
1408
|
+
|
|
1409
|
+
* SagePay: Add support for ReferrerID [markabe]
|
|
1410
|
+
* Cecabank: Fix expiration date formatting [duff]
|
|
1411
|
+
* Add WePay gateway [faizalzakaria]
|
|
1412
|
+
* SmartPs: Add ECI option to SmartPs [odorcicd]
|
|
1413
|
+
* Rescue and re-raise ActionViewHelperError when offsite helpers raise an error [odorcicd]
|
|
1414
|
+
* Add FirstGiving gateway [faizalzakaria]
|
|
1415
|
+
* FirstGiving: Fix refunds [ntalbott]
|
|
1416
|
+
* Samurai: Handle server errors [ntalbott]
|
|
1417
|
+
* WePay: Fix refund [duff]
|
|
1418
|
+
|
|
3
1419
|
== Version 1.42.6 (February 24, 2014)
|
|
4
1420
|
|
|
5
1421
|
* Litle: Truncate order_id [duff]
|
|
@@ -454,6 +1870,8 @@
|
|
|
454
1870
|
* Braintree Blue gateway: Always pass CVV on update [shayfrendt]
|
|
455
1871
|
* eWAY gateway: Update docs. Require address [juggler]
|
|
456
1872
|
* Cybersource gateway: Add support for subscriptions [fabiokr]
|
|
1873
|
+
* WePay: Use better endpoint for recurring with no CVV [davidsantoso]
|
|
1874
|
+
|
|
457
1875
|
|
|
458
1876
|
== Version 1.24.0 (June 8, 2012)
|
|
459
1877
|
|
|
@@ -725,7 +2143,7 @@ value [jduff]
|
|
|
725
2143
|
* Support default Return class for all Integrations that don't use returns [Soleone]
|
|
726
2144
|
* Add support for passing additional options when creating a Notification to all Integrations [Soleone]
|
|
727
2145
|
* Update BraintreeBlue#refund to have consistent method signature [Jonathan Rudenberg]
|
|
728
|
-
* Add rails/init.rb for gem campatability in Rails [
|
|
2146
|
+
* Add rails/init.rb for gem campatability in Rails [R?dolfs O?i??]
|
|
729
2147
|
* Fix Paypal Express response parser [Jonathan Rudenberg]
|
|
730
2148
|
* Braintree/Transax: Add tax field [wisq]
|
|
731
2149
|
|
|
@@ -1041,7 +2459,7 @@ value [jduff]
|
|
|
1041
2459
|
* Update Secure Pay Au to meet specs for MessageInfo elements [cody]
|
|
1042
2460
|
* Add support for the Australian Secure Pay payment gateway [cody]
|
|
1043
2461
|
* Allow LinkPoint cancellations for recurring billing. [yanagimoto.shin]
|
|
1044
|
-
* Add support for
|
|
2462
|
+
* Add support for ?land Islands to the country list [cody]
|
|
1045
2463
|
|
|
1046
2464
|
== Version 1.3.1 (January 28, 2008)
|
|
1047
2465
|
|