forked from activemerchant/active_merchant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
2448 lines (2224 loc) · 131 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
= ActiveMerchant CHANGELOG
== HEAD
* Checkout V2: Allows AVS and CVV result details to come through on authorizations [deedeelavinder] #2650
* Global Collect: Adds boolean option for pre_authorization [deeedeelavinder] #2651
* Credorax: Pass Transaction Type field [curiousepic] #2653
== Version 1.75.0 (November 9, 2017)
* Barclaycard Smartpay: Clean up test options hashes [bpollack] #2632
* Barclaycard Smartpay: Extra data fields for credits [bpollack] #2631
* Cyber Source: Correctly passes subscriptionID for store [deedeelavinder] #2633
* Ebanx: Pass fields for business person responsible [curiousepic] #2635
* Ebanx: Support Colombian transactions [bpollack] #2636
* FirstData E4 (Payeezy): Ensure numeric ECI values are zero padded [jasonwebster] #2630
* Netbanx: Only send currency and billing_details for auths and sales [anotherjosmith] #2643
* Netbanx: Revert "Fixes basic auth for netbanx by sending the account_number and api_key" [anotherjosmith] #2644
* PayU Latam: Adds `partnerID`, adjusts phone preferences, allows empty `ip_address`, and adjusts for no `cvv` [deedeelavinder] #2634
* Sage Payment Solutions: Scrub check info [curiousepic] #2639
* Worldbank US: Allow using the backup URL [bpollack] #2641
* Worldbank US: Allow using the backup URL per-request [bpollack] #2645
== Version 1.74.0 (October 24, 2017)
* Adyen: Update list of supported countries [dtykocki] #2600
* Authorize.net CIM: Handle multiple error messages [amandapuff] #2537
* Barclaycard Smartpay: Pass street and house_number fields, in addition to standard address [deedeelavinder] #2603
* Barclaycard Smartpay: Use authorization pspReference for refunds [davidsantoso] #2599
* Beanstream: Pass email fields without address [curiousepic] #2615
* Beanstream: Support recurringPayment for auth, capture, and purchase transactions [dtykocki] #2617
* Borgun: Add support for USD transactions [dtykocki] #2602
* Borgun: Include currency code from split authorization for voids [dtykocki] #2605
* Checkout V2: Expose AVS and CVV results for purchases [dtykocki] #2619
* Credorax: Update response codes [curiousepic] #2595
* CyberSource: Support 3DSecure requests [curiousepic] #2624
* Ebanx: Pass person_type and name for stored cards [curiousepic] #2621
* Ebanx: Support Store and person_type option [curiousepic] #2604
* Elavon: Update endpoint URLs [curiousepic] #2608
* Netbanx: Fix basic auth by sending the account_number and api_key [anotherjosmith] #2616
* Payeezy: Adds support for store [deedeelavinder] #2591
* PayU Latam: Set payment_country gateway attribute [curiousepic] #2611
* Redsys: Support the DKK currency type [bpollack] #2618
* WePay: Only send ip and device for non-recurring transactions [dtykocki] #2597
== Version 1.73.0 (September 28, 2017)
* Adyen: Use original authorization pspReference on Refunds [lyverovski] #2589
* Braintree Blue: Explicitly require braintree-ruby version 2.78 [anotherjosmith]
* FirstData E4: Scrub 3DS cryptogram [jasonwebster] #2596
* PayHub: Replace single quotes with double quotes in error message [matthewheath] #2572
* Wirecard: Format non-fractional currency amounts correctly [bdewater] #2594
== Version 1.72.0 (September 20, 2017)
* Adyen: Fix failing remote tests [dtykocki] #2584
* Authorize.net: Remove numeric restriction on customer ID [dtykocki] #2579
* Authorize.net: Restore default state value for non-US addresses [jasonwebster] #2563
* Beanstream: Do not default state and zip with empty country [dtykocki] #2582
* Braintree Blue: Add eci_indicator field for Apple Pay [davidsantoso] #2565
* Conekta: Add guard clause for details fallbacks [curiousepic] #2573
* Conekta: Pull required details from billing address [nfarve] #2568
* DataCash: Enable refunding recurring transactions [davidsantoso] #2560
* Ebanx: Adds Brazil Specific Parameters [nfarve] #2559
* Kushki: Add support for refunds [dtykocki] #2575
* MercadoPago: Additional tweaks for transaction requests [davidsantoso]
* MercadoPago: Default to alphanumeric order_id [davidsantoso]
* MercadoPago: Send diners_club cards as diners [davidsantoso] #2585
* PayU Latam: Correctly condition buyer element fields [curiousepic] #2578
* PayU Latam: Pass unique buyer fields and country requirements [curiousepic] #2570
* Qvalent: Support general credit [curiousepic] #2558
* SafeCharge: Update to Version 4.1.0 [nfarve] #2556
* WePay: Don't default API version header [curiousepic] #2567
* WePay: Don't require email for Store [curiousepic] #2588
== Version 1.71.0 (August 22, 2017)
* Bambora formerly Beanstream: Change casing on customerIp variable [aengusbates] #2551
* Checkout V2: Add localized_amount support to add_invoice function [nicolas-maalouf-cko] #2452
* Checkout V2: Add UAE to country list [shasum] #2548
* Checkout V2: Fix success response code validation [nicolas-maalouf-cko] #2452
* CreditCall: Only allow AVS when specified [curiousepic] #2549
* CreditCall: Parse additional params from responses [nfarve] #2552
* CreditCall: Parse more response params [nfavre] #2543
* MercadoPago: Small tweaks to building requests [davidsantoso] #2555
* Orbital: Support Network Tokenization Credit Cards [curiousepic] #2553
* Orbital: Updgrade schema version to 7.1 [curiousepic] #2546
* Remove HUF from default non-fractional currencies [curiousepic] #2538
* Stripe: Add support for statement_address parameters for EMV transactions [malcolm-mergulhao] #2524
* TransFirst Express: Don't send address2 without value [nfarve] #2545
* TransFirst Express: Fix Optional Fields Being Passed Blank [nfarve] #2550
* TransFirst: Fix partial refund [nfarve] #2541
* Vantiv (Litle): Pass 3DS fields [curiousepic] #2536
* Braintree Blue: Add phone to options [deedeelavinder] #2564
== Version 1.70.0 (August 4, 2017)
* Barclaycard Smartpay: Provider a default billing address house number [nfarve] #2520
* FirstData E4: Fix duplicate XID and CAVV values in tokenized transactions [jasonwebster] #2529
* FirstData E4: Loose XSD validation for Payeezy (FirstData E4) [jasonwebster] #2529
* GlobalTransport: Support partial authorizations [dtykocki] #2511
* Litle: Update schema and certification tests to v9.12 [curiousepic] #2522
* Litle: Update urls and name to Vantiv [curiousepic] #2531
* Mercado Pago: Add gateway support [davidsantoso] #2518
* Orbital: Add support for level 2 data [dtykocki] #2515
* PayU Latam: Pass DNI Number [curiousepic] #2517
* Qvalent: Pass 3dSecure fields [curiousepic] #2508
* SafeCharge: Correct UserID field name [curiousepic]
* SafeCharge: Pass UserID field [curiousepic] #2507
* AuthorizeNet: Allow Response Code 4 to be returned as successful [nfarve] #2530
* Forte: Remove order number from captures in Forte Gateway [nfarve] #2532
* PayU Latam: Add additional mandatory fields [deedeelavinder] #2528
== Version 1.69.0 (July 12, 2017)
* WePay: Add payer_rbits and transaction_rbits optional fields [davidsantoso]
* Adyen: Use Active Merchant standard order_id option for reference [jasonwebster] #2483
* Correct calculation for three-exponent currencies [curiousepic] #2486
* SagePay: Use VPSTxId from authorization for refunds [dtykocki] #2489
* Payflow: Move PAYPAL-NVP header option to a class attribute on the payment gateway [deuxpi] #2492
* Optimal Payments: Pass CVD indicator accurately [curiousepic] #2491
* SagePay: Make Repeat purchase if payment is a past authorization [curiousepic] #2495
* Netbanx: map response errorCodes onto standard error code [iirving] #2456
* Netbanx: Update supported countries and cardtypes [iirving] #2456
* Barclaycard Smartpay: Support 0- and 3-exponent currencies [curiousepic] #2498
* CyberSource: Fix XSD schema validation issues [jasonwebster] #2497
* WorldPay: Support three-decimal currencies [curiousepic] #2501
* NMI: Add first and lastname to echeck transactions [dtykocki] #2499
* PayFlow: Add optional email field [davidsantoso] #2505
* Worldpay: Support Credit on CFT-enabled merchant IDs [curiousepic] #2503
* FirstPay: Add processor_id field [davidsantoso] #2506
* Authorize.Net: Use two character default for billing state [dtykocki] #2496
== Version 1.68.0 (June 27, 2017)
* Authorize.Net: Return failed response if forced refund settlement fails [bizla] #2476
* Authorize.net: Concatenate address1 and address2 [dtykocki] #2479
* Braintree Blue: Braintree Blue: Add ECI indicator to Android Pay transactions [davidsantoso] #2474
* Credorax: Support 0- and 3-exponent currencies [curiousepic]
* Cybersource: update supported card types [bdewater] #2477
* FirstData: Add a default network tokenization strategy for FirstData E4 [krystosterone] #2473
* FirstPay: FirstPay: Update hostname and force TLSv1 minimum [davidsantoso] #2478
* JetPay V2: Support store transactions and token based payments [shasum] #2475
* Moneris: Add 3DS fields for decrypted Apple and Android Pay data [davidsantoso] #2457
* Openpay: Send customer name and email in authorize and purchase [dtykocki] #2468
* Payflow: Moved to name value pair (NVP) with payflow [jusleg] #2462
* Payflow: Set PAYPAL_NVP header as optional [davidsantoso] #2480
* QuickPay V10: Return last response for purchase and authorize [curiousepic] #2461
* SafeCharge: Map billing address fields [davidsantoso] #2464
* SafeCharge: Track currency from original transaction [davidsantoso] #2470
* Support three-decimal currencies [curiousepic] #2466
* Trexle: Add gateway support [hossamhossny] #2351
== Version 1.67.0 (June 8, 2017)
* Acapture: Pass 3D Secure fields [davidsantoso] #2451
* Authorize.net: Pass Level 2 Data Fields [curiousepic] #2444
* Credorax: Add 3D Secure authentication fields [davidsantoso] #2446
* Ebanx: Add gateway support [davidsantoso] #2447
* Ebanx: Reduce supported countries to Brazil and Mexico [davidsantoso]
* FirstData Payeezy: Set default ECI value for auth/purchase transactions [jasonwebster] #2448
* JetPay V2: Add new gateway [shasum] #2442
* JetPay V2: Add optional tax data to capture calls [shasum] #2445
* NMI: Add Network Tokenization support [shasum] #2431
* Orbital: Pass soft descriptors from options hash [curiousepic]
* Orbital: Update test and production urls [jcowhigjr] #2436
* Payeezy: Add client_email field for telecheck [davidsantoso] #2455
* Payeezy: Add customer_id_type and customer_id_number fields [davidsantoso] #2454
* Quickpay V10: Fix store and token use for recurring payments [wsmoak] #2180
* Elavon: Support custom fields [curiousepic] #2416
* WePay: Support risk headers [shasum] #2419
* WePay: Add Canada as supported country [shasum] #2419
* Fat Zebra: Fix xid 3D Secure field [curiousepic]
* SafeCharge: Mark support for European countries [curiousepic]
* Checkout V2: Pass customer ip option [curiousepic]
* Realex: Map AVS and CVV response codes [davidsantoso] #2424
* Opp: Send disable3DSecure custom parameter if present [davidsantoso] #2432
* SafeCharge: Map standard Active Merchant order_id field [davidsantoso] #2434
* Payeezy: Default check number to 001 if not present [davidsantoso] #2439
* Opp: Fix incorrect customParameter key to disable 3DS [davidsantoso]
== Version 1.66.0 (May 4, 2017)
* Support Rails 5.1 [jhawthorn] #2407
* ProPay: Add Canada as supported country [davidsantoso]
* ProPay: Add gateway support [davidsantoso] #2405
* SafeCharge: Support credit transactions [shasum] #2404
* WePay: Add scrub method [shasum] #2406
* iVeri: Add gateway support [curiousepic] #2400
* iVeri: Support 3DSecure data fields [davidsantoso] #2412
* Opp: Fix transaction success criteria and clean up options [shasum] #2414
== Version 1.65.0 (April 26, 2017)
* Adyen: Add Adyen v18 gateway [adyenpayments] #2272
* Authorize.Net: Force refund of unsettled payments via void [bizla] #2399
* Barclays ePDQ: removed because it has been replaced by a new API [bdewater] #2331
* Beanstream: Map ISO province codes for US and CA [shasum] #2396
* Braintree Blue: Change :full_refund option to :force_full_refund_if_unsettled [bizla] #2403
* Braintree Blue: Force refund of unsettled payments via void [bizla] #2398
* Checkout V2: Fix sandbox URL [nicolas-maalouf-cko] #2391
* Checkout V2: Fix success_from not properly checking two possible success codes [davidsantoso]
* Cybersource: Rescue XML parse exception [shasum] #2380
* GlobalCollect: Make message and error reporting more robust [curiousepic] #2370
* GlobalCollect: Set REJECTED refunds as unsuccessful transactions [davidsantoso] #2365
* GlobalCollect: Truncate firstName field to 15 characters [davidsantoso]
* JetPay: Pass down authorization payment method token to refund a capture [davidsantoso]
* Openpay: Support card points [shasum] #2401
* Orbital: Don't send CVV indicator if CVV is not present [curiousepic] #2368
* PayU LATAM: Fix incorrect capture method definition [davidsantoso]
* Payeezy: Support dynamic soft descriptors [shasum] #2384
* Pin: Add metadata optional field [shasum] #2363
* Qvalent: Add soft descriptor fields. Add authorize, capture, and void [davidsantoso]
* SafeCharge: Add gateway [davidsantoso]
* SagePay: Support Repeat transactions [curiousepic] #2395
* Stripe: Support custom application in X-Stripe-Client-User-Agent header [davidsantoso]
* TransFirst Transaction Express: Support ACH [curiousepic] #2389
* WePay: Support unique_id for idempotent transactions [shasum] #2367
* Worldpay: Force refund of unsettled payments via void [bizla] #2402
== Version 1.64.0 (March 6, 2017)
* Authorize.net: Allow settings to be passed for CIM purchases [fwilkins] #2300
* Authorize.net: Use new `unsupported_feature` standard error code [jasonwebster] #2322
* Base Gateway: Add new `unsupported_feature` standard error code [jasonwebster] #2322
* Braintree Blue: Pass cardholder_name with card [curiousepic] #2324
* Braintree: Add Android Pay meta data fields [jknipp] #2347
* CardStream: Add additional of currencies [shasum] #2337
* Credorax: Return failure response reason [shasum] #2341
* Digitzs: Add gateway [davidsantoso]
* Digitzs: Remove merchant_id from gateway credentials [davidsantoso]
* GlobalCollect: Pass options to Refund [curiousepic] #2330
* Kushki: Add new gateway [shasum] #2326
* Kushki: Remove body from void call [shasum] #2348
* Linkpoint: Raise ArgumentError when trying to instantiate without `:pem` [jasonwebster] #2329
* Omise: Enable Japan, JPY and JCB support [zdk] #2284
* PayU LATAM: Count pending refunds as succeeded [curiousepic] #2336
* PayU LATAM: Let Refund take amount value [curiousepic] #2334
* Paymill: Send new required fields on tokenization requests [tschelabaumann] #2279
* Revert "Authorize.net: Allow settings to be passed for CIM purchases" [curiousepic] #2339
* Sage: Default billing state when outside US [shasum] #2340
* Stripe: Remove idempotency key from verify [shasum] #2335
* TransFirst Transaction Express: Don't send order_id with refunds [curiousepic] #2350
* TransFirst Transaction Express: Fix improper AVS and CVV response code mapping [shasum] #2342
* WePay: Update API version [shasum] #2349
* USA ePay Advanced: Add quick_update_customer action [joshreeves] #2229
== Version 1.63.0 (February 2, 2017)
* Authorize.net: Add #unstore support [jimryan] #2293
* AuthorizeNet: Fix line items quirk [shasum]
* CardStream: Add dynamic descriptor option fields [curiousepic]
* CardStream: Support PEN currency [shasum]
* Culqi: Add new gateway [shasum]
* CyberSource: Add Lebanon to supported countries [shasum]
* Element: Add AVS and CVV codes to response [shasum]
* Firstdata E4 (Payeezy): Set correct ECI value for card present swipes [jasonwebster] #2318
* GlobalCollect: On purchase skip capture if not required [davidsantoso]
* PaymentExpress: Update supported countries [shasum]
* Remove leading or trailing whitespace from credit card name [davidsantoso]
* Remove support for Ruby 2.0 [jasonwebster]
* Secure Pay AU: Add scrubbing support to Secure Pay AU [bruno] #2253
* Stripe: Fix error in handling of track-only contactless EMV data [jasonwebster]
* Vanco: Update test URL [davidsantoso]
* WePay: Build fee structure correctly [curiousepic]
* WePay: Remove null address fields from request [davidsantoso]
* WePay: Update WePay to API version 2016-12-07 [davidsantoso]
* Wirecard: Send customer data in requests [davidsantoso]
* Worldpay: Add session id attribute [shasum]
* Worldpay: Do not default address when not provided [shasum]
== Version 1.62.0 (December 5, 2016)
* AuthorizeNet: Map to standard AVSResult codes [shasum]
* CitrusPay: Add 3DSecureId field [davidsantoso]
* CyberSource: Only get alpha2 country code when it's a known country [bruno] #2238
* Fat Zebra: Add scrubbing to Fat Zebra gateway [bruno] #2037
* Monei: Add US and CA as new supported countries [davidgf] #2209
* NAB Transact: Add scrubbing to NAB Transact [bruno] #2038
* iATS: Add scrubbing support to iATS [bruno] #2228
* Stripe: Ensure ECI values for tokenized cards are padded [jasonwebster] #2250
* Forte: Fix incorrect authorization_code response mapping [davidsantoso]
* maxiPago: Send currency with request [curiousepic]
* Credorax: Map order_id to field H9 [curiousepic]
* Authorize.net: Remove duplicate country GB [shasum]
* PayU Latam: Add processWithoutCvv2 field [shasum]
* Fat Zebra: De-nest soft descriptor fields [curiousepic]
* Credorax: Only pass c5 field for billing address1 [davidsantoso]
* Orbital: Add support for CLP currency [curiousepic]
* Authorize.net: Add line item fields and additional transaction settings [shasum]
* Authorize.net: Pass through `header_email_receipt` [shasum]
* Stripe: Scrub additional network tokenization related sensitive data [jasonwebster] #2251
* Applying: Worldpay: Format non-fractional currency amounts correctly [jasonwebster] #2267
== Version 1.61.0 (November 7, 2016)
* Add codes AQ, BQ, SX, and SS to list of countries and update SD numeric code [zxlin]
* AuthorizeNet: Update supported countries list [shasum]
* Barclay SmartPay: Add support for credit [shasum]
* Barclaycard SmartPay: Update supported countries [shasum]
* BluePay: Add Canada to supported countries list [shasum]
* BlueSnap: Update countries list [shasum]
* Braintree Blue: Add Android Pay support [mrezentes]
* Braintree Blue: Add remote test to verify card token [shasum]
* Braintree Blue: Get Android Pay tx id from payment method, not options [mrezentes]
* CardStream: Add MXN currency code [curiousepic]
* CardStream: Set captureDelay to zero on purchase [davidsantoso]
* CitrusPay: Add gateway [duff]
* CitrusPay: Update URL to current API version [davidsantoso]
* Clearhaus: Fix refund of captures [duff]
* Clearhaus: Update list of non fractal currencies [curiousepic]
* Clearhaus: Use localized amount [curiouspic]
* Conekta: Add void action [MauricioMurga]
* Credorax: Add gateway support [davidsantoso]
* CyberSource, Paymill, Payflow: Add verify_credentials [duff]
* CyberSource: Combine auth_reversal with Void [curiousepic]
* CyberSource: Increase merchant defined data fields [davidsantoso]
* CyberSource: Look up alpha2 country code [curiousepic]
* CyberSource: Use localized_amount [curiousepic]
* Element: Pass order_id and shipping address [curiousepic]
* Fat Zebra: Add cavv, xid, and sli fields [curiousepic]
* Fat Zebra: Fix improper descriptor nesting [curiousepic]
* Find countries if they are differently cased [curiousepic]
* GlobalCollect: Update credit card brand list [curiousepic]
* Jetpay: Support endpoint for Canada [shasum]
* Linkpoint: Clean whitespace from PEM [curiousepic]
* Litle: Retain amount to send in auth reversals [curiousepic]
* Litle: add scrubbing support [bruno]
* MONEI: Update supported countries list [davidgf]
* MiGS: Handle IDR currency [curiousepic]
* Migs: Add support for void [mohsenottello]
* Migs: Support some additional fields [duff]
* Moneris: Fix unit test stubs [shasum]
* Moneris: add scrubbing support [bruno]
* NMI, FirstData: Support verify_credentials [curiousepic]
* Openpay: Add support for verify [duff]
* PayJunctionV2: Add gateway support [shasum]
* PayU Latam: Add new gateway [shasum]
* PayU Latam: Update supported countries list [shasum]
* Payflow: Update supported countries list [shasum]
* PaypalExpress: Add SoftDescriptor field [talyssonoc]
* Redsys: Added DOP and CRC currency [davidsantoso]
* Sage: Add support for scrubbing [bruno]
* SagePay: Fix truncation [duff]
* SecurionPay: Update supported countries list [shasum]
* Stripe: Increase authorize amount during verify [davidsantoso]
* Stripe: Set minimum authorize amount depending on currency [davidsantoso]
* Stripe: Support new network tokenization API params [methodmissing]
* Stripe: Update supported countries list [shasum]
* TNS and CitrusPay: Support scrub and verify_credentials [duff]
* TNS and CitrusPay: Update to version 36 of the API [duff]
* TNS: Try TLS v1 [duff]
* Telr: Add gateway support [curiousepic]
* TransFirsTransactionExpress: Remove blank cvv element [davidsantoso]
* TransFirsTransactionExpress: Take into account blank string CVV [davidsantoso]
* Vanco: Improve handling of success determination [duff]
* Worldpay: Add hcgAdditionalData element [davidsantoso]
* Worldpay: Report error code [curiousepic]
== Version 1.60.0 (July 4, 2016)
* Orbital: Fix CC num leak on profile calls [drewblas]
* VisaNetPeru: Add ability to refund [duff]
* AuthorizeNet: Fix store using new profile [duff]
* Clearhaus: Support private key for signature [curiousepic]
* Clearhaus: Copy private_key when stripping [curiousepic]
* CertoDirect: Remove gateway [shiroginne]
* Braintree: Extra error messaging [jordan-brough]
* AuthorizeNetCim: Set error code for AuthorizeNetCimGateway response [ka8725]
* Quickpay v10: Remove amount requirement for store [curiousepic]
* PSLCards: correct namespace in doc for Response object from ActiveRecord::Billing to ActiveMerchant::Billing [CJ Keeney]
* Pagar.me: Add pagar.me [chrisenytc]
* Stripe: Update Readme to show stripe support [rhlrjv]
* Orbital: Add support for the BRL currency [duff]
* GlobalTransport: Require TLSv1 [duff]
* Openpay: Allow currency to be specified [darkaz]
* DataCash: Use API version 2 [curiousepic]
* Stripe: Support verify_credentials [duff]
* AuthorizeNet: Support verify_credentials [duff]
* BraintreeBlue: Support verify_credentials [duff]
* Redsys: Added SAR currency [agseco]
* QuickPay: Adding customer_ip for authorize action in quickpay [dinesh]
* MaxiPago: add void and refund [shasum]
* MaxiPago: Allow processor_id override [duff]
* Stripe: Interpret string input to store method as token identifier [bizla]
* MaxiPago: Add verify and scrub [shasum]
* Stripe: Remove metadata restriction from EMV transactions [bizla]
* SagePay: Add optional fields to SagePay requests [cristianstanescu]
* CyberSource: Assign default with override for billing address and email [shasum]
* CyberSource: Assign default order_id [duff]
* TNS: Support asia_pacific endpoint [curiousepic]
* TransFirsTransactionExpress: Fix exception [duff]
* CyberSource: Add decision manager optional fields [shasum]
* CyberSource: Add decision manager optional fields [shasum]
* TNS: Add support for TLS v1.2 [curiousepic]
* QuickpayV7: Default description field for store operation [duff]
* Elavon: Support customer_number field [duff]
* Map test_mode_live_card code to new standard error code [berkcaputcu]
* Elavon: Pass customer_number correctly [duff]
* Stripe: add SG to supported_countries attribute [timbeiko]
== Version 1.59.0 (May 18, 2016)
* Orbital: Allow AVS parts to be sent sans country [duff]
* SecureNet: Return the right error message for declines [duff]
* Moneris: Add verify [anellis]
* Moneris: Add verify [anellis]
* Jetpay: Add support for origin field[anellis]
* Jetpay: Don't default origin field [duff]
* GlobalCollect: New gateway support [curiousepic]
* Openpay: Use strict_encode64 [duff]
* Sage: Always pass along the billing state [duff]
* VisaNet Peru: New gateway support [shasum]
* Worldpay: Allow installationId to be specified at transaction time [duff]
* SecurionPay: Support store [shasum]
* Barclaycard Smartpay: Proper AVS return codes [curiousepic]
* VisaNetPeru: Pass through CVV [duff]
* Barclaycard Smartpay: Use strict_encode64 [duff]
* VisaNetPeru: Fix error when billing address empty [shasum]
* Vanco: Update live_url [duff]
* Cardstream: Reference purchase [curiousepic]
* Paymill: Fix error handling [methodmissing]
* Latitude19: New gateway support [shasum]
* BraintreeBlue: remove invalid test assertions [prburke]
* Merchant e-Solutions: Pass order_id with capture [curiousepic]
* CyberSource: Add rescue for ResponseErrors [curiousepic]
* AuthorizeNet: Always pass recurringBilling flag if present [curiousepic]
* S5: Pass order_id to TransactionID [curiousepic]
* NMI: Set ACH sec_code from options if present [curiousepic]
* VisaNet Peru: Refactor merchant_id and purchase_number handling [shasum]
* Braintree Blue: Pass descriptor_url field [curiousepic]
* VisaNet Peru: Add merchant_define_data option [duff]
* Merchant e-Solutions: pass optional 3Dsecure params [curiousepic]
* NMI: Fix refunds and voids of echecks [duff]
* VisaNet Peru: Pass dummy email when not present [curiousepic]
* PayU India: Add Maestro as supported card [curiousepic]
* Cashnet: Don't retry [duff]
* CardStream: Make Void call Cancel instead of Refund [curiousepic]
* Remove AN and KV country codes as they're not recognized by ISO-3166-1 [apdunston]
* Worldpay: Pass unchanged amount with correct currency exponent [curiousepic]
* Improve our handling of currencies sans fractions [duff]
* Stripe: Added support for the contactless magstripe entry mode option [rbalsdon]
* VisaNet Peru: Change money format to dollars [shasum]
* BlueSnap: Add gateway [duff]
* VisaNet Peru: Select the most meaningful gateway error message [shasum]
* SecurionPay: Update country list [duff]
* Support for BIN 2 MasterCard brand detection [rbalsdon]
* CardStream: Fix signature calculation [duff]
* CyberSource: Update test and live URL [marquisong]
* AuthorizeNet: Truncate nameOnAccount field [duff]
* Tns: Fix ipAddress field [duff]
* WorldNet: New gateway support [varyonic]
* BraintreeBlue: Allow channel override [duff]
* MerchantWarrior: Use Truncated Order Id [ThereExistsX]
== Version 1.58.0 (March 1, 2016)
* Move Electron check out of CreditCard into CreditCardMethods [ThereExistsX]
* CardStream: Add AED and NZD currencies [sdball]
* App55: Remove Gateway [ThereExistsX]
* Mercury: Stripping the start and end sentinels on card-present track data for max-length track1 requests [ryanbalsdon]
* SagePay: Update VISA Electron ranges [sdball]
* Clearhaus: Make request signing more transparent & robust [sdball]
* NCRSecurePay: Fix production URL [rwdaigle]
* Add ACH support to Stripe [sdball]
* PayPal Express: Fixing list of currencies without fractions [Krystosterone]
* Cashnet: Default custcode option and proper redirect handling [rwdaigle]
* TransFirst: Fix missing address and remove CC only fields for ACH [davidsantoso]
* More prominent links to contribution docs [rwdaigle]
== Version 1.57.0 (February 1, 2016)
* AuthorizeNetCim: Add unmaskExpirationDate option [RamilGilmanov]
* Element: Add gateway support [davidsantoso]
* Cardstream: 3D-secure capture fix [duff]
* Auth.net: Update store to create payment profiles [davidsantoso]
* CyberSource: Add support for mdd_fields [duff]
* Worldpay: Add support for verify [davidsantoso]
* Element: Add guard clause to handle undocumented errors [davidsantoso]
* Clearhaus: Add tests for signed requests [anellis]
* Stripe: Support adding cards to account [anellis]
* Clearhaus: Add text_on_statement option [anellis]
* Payeezy: Void and verify support [davidsantoso]
* Creditcall: Use ecommerce rather than cnp [duff]
* Payeezy: Add support for echecks [davidsantoso]
* Bridgepay: Add ability to store cards and pay with token [anellis]
* Initial support for Android Pay network tokenization cards [mrezentes]
* Transfirst: Fix exception when not all eCheck information is present [davidsantoso]
* Auth.net: Add tests for echeck refunds [davidsantoso]
* Transfirst: use default values for some eCheck data [davidsantoso]
* Element: Update the live URL endpoint [davidsantoso]
* Element: Parse responses from unexpected API errors [davidsantoso]
* Transfirst: Remove unused fields for echeck [davidsantoso]
* Sage: Internal refactoring into a single gateway class w/ common http conn [anellis]
* Cardstream: Adjust authorize and capture transactions [anellis]
* NCRSecurePay: New gateway support (Monetra white-label) [rwdaigle]
* Element: Map ReferenceNumber to order_id [duff]
* Element: Use a better MotoECICode default [duff]
* BraintreeBlue: Return transaction id for failed transactions when available [prburke]
* PayPal: Add InContextPaypalExpressGateway [xuorig]
* TransFirst: CVV is a required tag [duff]
* Checkout V2: Add Descriptor Name and City Options [anellis]
* Forte: Pass order_id [anellis]
* Merchant ESolutioins: Truncate order_id [anellis]
* Transfirst Transaction Express: New gateway support [sdball]
* Stripe: Add `stripe_account` header option [anellis]
* Cardstream: Add AVS code and message [anellis]
* Barclaycard Smartpay: New gateway support [curiousepic]
* Transfirst: Fix missing address and remove CC only fields for ACH [davidsantoso]
* Stripe: Support ACH payments [sdball]
* NCRSecurePay: Fix production URL [rwdaigle]
* Clearhaus: Make request signing more transparent & robust [sdball]
* SagePay: Properly detect Electron brand [sdball]
* Mercury: Fix for max-length track 1 [ryanbalsdon]
== Version 1.56.0 (December 1, 2015)
* Add Cardknox gateway [dlehren]
* Mercury: Add support for card present track 2 [ryanbalsdon]
* Cardstream: Improve default currency handling [duff]
* Mercury: Strip start and end sentinels on track 2 [ryanbalsdon]
* Redsys: Support new SHA256 authentication method [davidsantoso]
* Cashnet: Allow custcode override [duff]
* Add Rails 5 support [rafaelfranca]
* Set required Ruby version for install to 2 or greater [rafaelfranca]
* JetPay: Pass ud_fields in capture too [duff]
* Stripe: Correctly detect test mode refunds [aprofeit]
* Fix variables in remote gateways test template [sdball]
* Micropayment: Update fieldnames for new API [duff]
* Fix CreditCard#valid_number? erroring on non-digit characters [PatrickTulskie]
* Stripe: Correctly detect test mode voids [methodmissing]
* Garanti: Add test mode URL and update remote test credentials [cbilgili]
* Cashnet: Allow custcode override on refund [duff]
* Omise: Add a new optional api_version config [zdk]
* Elavon: Include IP address in purchase and authorize requests [aprofeit]
* TransFirst: Add support for ACH and more operations [davidsantoso]
* FirstData_e4: Fix void for even dollar transactions [duff]
== Version 1.55.0 (November 9, 2015)
* CyberSource: send customer IP address when provided [fastjames]
* Braintree: Simplify Braintree scrubbing when no transcript [duff]
* AuthorizeNet: Allow market_type override [duff]
* FirstData_e4: Support level_2 data [duff]
* FirstData_e4: Fix level_2 and level_3 [duff]
* MerchantWareFour: Use Void not PreAuthorizationVoid [duff]
* JetPay: Allow partial captures [duff]
* Creditcall: Fix production url [duff]
* FirstData_e4: Fix float error in Void [duff]
* Micropayment: Upgrade to new API [mrezentes]
* Netbilling: Add order_id to user_info [mrezentes]
* Stripe: scrub swipe/track, EMV data out of gateway transcripts [girasquid]
* Remove integration_mode [mattfawcett]
* Allow setting CVV requirement at instance level [fabiokr]
* Add SecurionPay gateway [szajbus]
* AuthorizeNet: Don't send currency to void [duff]
* Add Komoju gateway [k2nr]
* Replace Connection magic numbers with constant references [larrylv]
* Add CAMS gateway [trevorgrayson]
* PayPal Express: Fix AllowedPaymentMethod [edclements]
* Litle: Store credit card from PayPage [dontmatta]
* Orbital: Deprecate profile management API [ntalbott]
* FirstData e4: Honor currency when supplied [tchill]
* Authorize.net: Add config_error standard error code [andrewpaliga]
* PayPal Express: Add support for TotalType in SetExpressCheckout [gingerhendrix]
* eWay Rapid: Add :invoice option [DylanFM]
* Braintree: Add nonce payment method [eric1234,cwoodcox]
* Payflow: Allow passing of 3D Secure details via options [marquisong]
* Elavon: Support capture via CCCOMPLETE without credit card [marquisong]
* Securenet: Allow setting test_mode independently [wedstar]
* Replace Base.integration_mode and Base.gateway_mode with just Base.mode [aprofeit]
* Micropayment: Allow specification of a project [duff]
* QuickpayV10: Truncate order_id [duff]
* FirstData_e4: Fix Level 2 data [duff]
* Remove some duplication around name handling [duff]
* FirstData_e4: Support Tax1Number [duff]
* Add Transact Pro gateway [varyonic]
* Add Payeezy gateway [huoxito]
* USAePay: Add test mode setting via options [marquisong]
* Add Clearhaus gateway [dinesh]
* WorldpayOnlinePayments: Fix logic to determine success [ao]
* Paymill: store order_id in description field [nikoloff]
* TWD isn't a zero decimal currency [duff]
* PaypalExpress: Use custom zero decimal currencies [duff]
* Stripe: Migrate from /refund to /refunds [matthelm]
* Bogus: Adding basic EMV support [ryanbalsdon]
* PayBox Direct: Refunds and working test credentials [ivanfer]
* Vanco: Handle case of no billing_address [duff]
* BluePay: Add support for CUSTOM_ID2 field [ajporterfield]
* Creditcall: Handle no verification_value [duff]
== Version 1.54.0 (October 2, 2015)
* Beanstream: Add Network Tokenization support [girasquid]
* CenPOS: Allow order_id on void [duff]
* Provide better insight to CVV usage in requests [davidsantoso]
* Ogone: Add verify [duff]
* Beanstream: Add verify [mrezentes]
* PayPal: Map standard error codes [JakeCataford]
* Checkout.com: Fix an issue with empty phone numbers. [anotherjosmith]
* Quickpay: Edit store and add ability to purchase with stored card [anellis]
* Stripe: Set `receipt_email` to Stripe request if receipt delivery is requested [miccheng]
* Worldpay US: Add eCheck support [mrezentes]
* FirstData_e4: add level_3 data [mrezentes]
* Vanco: Support passing ip address [duff]
* Paybox Direct: Currency parsing fix [ivanfer]
* QuickpayV10: Remove currency requirement from store. [anellis]
* Raven: Use TLS 1.2 endpoint [bslobodin]
== Version 1.53.0 (September 1, 2015)
* Redsys: Add a number of currencies [agseco]
* Raven: update description, test url, and routing; fix tests [bslobodin]
* Raven: do not pass default (incorrect) PaymentType to #void [bslobodin]
* Add scrubbing to a number of gateways [anellis]
* BluePay: Add scrubbing [anellis]
* BraintreeBlue: Allow custom logger [duff]
* MerchantWareFour: Truncate invoiceNumber [duff]
* S5: Pass recurrence_mode in store [duff]
* QuickPay: Support 2-letter country codes in V10 API [girasquid]
* Stripe: Support validate:false field on store [anellis]
* CheckoutV2: Use correct live_url [duff]
* QuickPay: strip # from Order IDs before submission [girasquid]
* Litle: Use schema version 9.4 rather than 8.18 [anellis]
* Litle: Add decrypted apple_pay [anellis]
* QuickPay: fix method signature on #void [girasquid]
* Forte: Add gateway [davidsantoso]
* Stripe: return refund id for refund authorization [anellis]
* Paypal: Update api version [anellis]
* TNS: Translate countries to alpha3 codes [anellis]
* TNS: Handle non existent country [duff]
* TNS: Rescue Errors [anellis]
* CenPOS: Support avs_result and cvv_result [tjstankus]
* Stripe: Add application fee only on non-EMV transactions [bizla]
* Stripe: don't send blank, non-nil values [girasquid]
* Ogone: Send different auth type for mastercard [anellis]
* Cardstream: Add "type" field support [rwdaigle]
* Cardstream: 3dsecure transaction option [rwdaigle]
* Paystation: Map order_id to non-unique merchant reference field [anellis]
* Cardstream: Check for nil street address [anellis]
* Checkout.com and CheckoutV2.com: Update country list [duff]
* Cardstream: Handle nil addresses [rwdaigle]
* MiGS: Allow passing in currency [alovak]
* [POSSIBLE BREAKAGE] NMI: No longer use auth.net emulator [rwdaigle]
* SecureNet: Add DEVELOPERID if supplied [wedy]
* Braintree: Update country list [duff]
* NMI: Don't include dup_seconds if nil [rwdaigle]
* QuickPay: Make all operations to v10 platform synchronous [ta]
* QuickPay: Handle issue where no operations exists on payment [ta]
* NMI: Support merchant_defined_fields [duff]
* QuickpayV10: Add verify [anellis]
* BraintreeBlue: Use wiredump_device for logging only if present [braintreeps]
* QuickpayV10: Add scrubbing [anellis]
* QuickPayV10: Change tests to point to proper gateway [anellis]
* Monei: Add default options argument [davidgf]
* Ogone: Add additional 3d-secure parameters [ntalbott]
* Ogone: Refactor signature calculation [ntalbott]
* Add Creditcall gateway [davidsantoso]
* Redsys: Fix scrubbing for failed transactions [davidsantoso]
* Micropayment: Support Micropayment gateway [rwdaigle]
* USAePay: Use names from the given billing and shipping address [marquisong]
* Stripe: Add application fee on EMV authorize calls [bizla]
== Version 1.52.0 (July 20, 2015)
* Authorize.Net: Add device type to authorize.net retail requests [abecevello]
* Vanco: Change transaction type to WEB for echecks [duff]
* PayPal: Allow soft descriptor to be specified [davidsantoso]
* Authorize.net: Add disable_partial_auth field [anellis]
* SagePay: Add apply_avscv2 field [anellis]
* S5: Add Store [anellis]
* Merchant Ware v4: Add support for verify [davidsantoso]
* Mercury: No longer default to allow partial auth [duff]
* PayPal: Fix soft_descriptor and support soft_descriptor_city [duff]
* Merchant Ware: Add scrubbing [davidsantoso]
* Stripe: Make purchase via vaulted card consistent [duff]
* Moneris: Add network tokenization support [andrewpaliga]
* Ogone: Allow specifying a timeout value for requests [tomhipkin]
* PayU India: Increase allowed txnid to 30 characters [ntalbott]
* Authorize.Net: Allow passing device type through options, make wireless POS the default [abecevello]
* Authorize.Net: Update to new Akamai URL [taf2]
* Braintree: Add hold_in_escrow [anellis]
* Stripe: Allow purchases with tokens without customer specification [bizla]
== Version 1.51.0 (July 2, 2015)
* Garanti: Illegal character '&' parsing response [masaruhoshi]
* Stripe: Revert force USD for verify [duff]
* Litle: Surface XML validation errors in the response [jasonbosco]
* Litle: Pass the credit card verification value for tokenization (#store) requests, if one is set. [jasonbosco]
* S5: Make scrubbing regex less greedy [duff]
* CardStream: Add support for verify [anellis]
* Authorize.net: UTF-8 encode requests [duff]
* Banwire: Add default email [anellis]
* PayU India: Handle bad JSON [ntalbott]
* Dibs: Pass CVC param only if there's a value [bruno]
* Sage: Credit really is credit not refund [duff]
* Sage: Add ability to refund [duff]
* Cardstream: Add scrubbing [anellis]
* Litle: Add debt_repayment_flag [duff]
* iATS: Support ACH [rwdaigle]
* CheckoutV2: Add Gateway [anellis]
* CenPOS: Fix refund amount issue [duff]
* Add error_code mapping and error_code_from to gateway generator [jnormore]
* Stripe: Parse EMV ARC from error response [bizla]
* Redsys: Add MYR currency [agseco]
* Add "contactless" flag to credit card model [davidseal]
* Stripe: Add "contactless" flag support to gateway [davidseal]
* Add encrypted_pin data to credit card model [ryanbalsdon]
* Stripe: Add encrypted_pin support to gateway [ryanbalsdon]
* Stripe: Support mapping advanced decline codes to standard codes [abecevello]
* Epay: filter out invalid characters in returned URLs [dwradcliffe]
* Redsys: Strip leading zeroes from currency codes [agseco]
* Authorize.net: Add invoice information to refund [marquisong]
* Authorize.net: Add store ability [duff]
* Paystation: Add refund [mrezentes]
* Paystation: No longer require order_id everywhere [duff]
* Checkout: Support descriptor_name and descriptor_city [duff]
* Add supports_network_tokenization? to gateways [jnormore]
* Bpoint: Handle message for invalid login [anellis]
* TransFirst: Add scrubbing [davidsantoso]
* TransFirst: Add back a few request fields [davidsantoso]
== Version 1.50.0 (June 1, 2015)
* Vanco: Add gateway [duff]
* Conekta: Move device fingerprint to root [MauricioMurga]
* Conekta: Change default language to Spanish [MauricioMurga]
* Vanco: Improve authentication handling [duff]
* Vanco: Allow specification of fund_id [duff]
* S5: Add gateway [davidsantoso]
* SecureNet: Truncate order_id [duff]
* [POSSIBLE BREAKAGE] Stripe: Be explicit about API version [duff]
* Dibs: Add gateway [mrezentes]
* Dibs: Rubyize merchant_id and secret_key [mrezentes]
* Stripe: Add support for reverse_transfer [duff]
* USA ePay: Add support for manual entry indicator [AnotherJoSmith]
* Authorize.Net: Add support for manual entry indicator [AnotherJoSmith]
* CenPOS: Change description to invoice_detail [mrezentes]
* BPoint: Add gateway [tjstankus]
* S5: Remove address requirement for purchase and authorize [davidsantoso]
* Vanco: Add support for eChecks [duff]
* Remove Adyen support [ntalbott]
* CenPOS: Use ProcessCreditCard action [duff]
* CASHnet: uri encode the merchant gateway name [mrezentes]
* S5: Include card brand in request body [davidsantoso]
* Vanco: Handle multiple error responses [duff]
* Merchant Partners gateway support [rwdaigle]
* BPoint: Update params to contain all response data [tjstankus]
* BPoint: Support biller_code in options [tjstankus]
* Sagepay: Add Verify [anellis]
* S5: Build XML with UTF-8 encoding [tjstankus]
* Cashnet: Handle unparsable response body [duff]
* CenPOS: Allow specification of customer_code [duff]
* Allied Wallet: Add gateway [anellis]
* S5: set Regex closure on scrubbing method [davidsantoso]
* Dibs: Require TLSv1 [duff]
* Optimal: Handle case of no billing address [duff]
* Omise: Add gateway [zdk]
* CenPOS: Simplify currency handling [duff]
* Beanstream: Don't treat redirect as success [aprofeit]
* Add PayU India gateway [ntalbott]
* NetBilling: Require TLSv1 [duff]
* S5: Handle recurring transactions without CVV [davidsantoso]
* Stripe: Force USD for verify [duff]
* PayU India: Prevent shadowing in response parsing [ntalbott]
* QuickPay: Add support for v10 API [ta]
* Fat Zebra: Fix refund and store signatures [duff]
* Fat Zebra: Allow transactions without a CVV [duff]
== Version 1.49.0 (May 1, 2015)
* Braintree: Add support for AVS error codes [ivanvfer]
* MerchantWarrior: Truncate description field [duff]
* Braintree: Add service_fee_amount option [duff]
* SecureNet: Allow shipping_address[:name] [duff]
* MonerisUS: Add verify [mrezentes]
* Ezic: Add gateway [duff]
* Stripe: Add destination field [cwise]
* SecureNet: Fix ordering of shipping field names [duff]
* SecurePayAu: Update API URL [girasquid]
* Stripe: Add EMV "chip & sign", "chip & offline PIN" and Maestro support [bizla]
* Add Errno::EHOSTUNREACH to NetworkConnectionRetries::DEFAULT_CONNECTION_ERRORS [randito78]
* Stripe: Add support for idempotency keys [michaelherold]
* WePay: Handle JSON::ParserError exceptions [duff]
* Borgun: Update country list and homepage url [mrezentes]
* AuthorizeNet: Add cvv to request only if it's valid [tjstankus]
* Stripe: Bug fix: add amounts only on non-EMV transactions, temporarily omit EMV testcases [bizla]
* Ezic: Add support for void [duff]
* iATS: Update supported countries [mrezentes]
* Ezic: Update supported countries [duff]
* AuthorizeNet: Truncate card number [tjstankus]
== Version 1.48.0 (April 8, 2015)
* Clean up `rake gateways:hosts` output [ntalbott]
* Add Axcess MS gateway [timtait]
* Add PayHub gateway [grepruby]
* Orbital: Improve data formatting [boone]
* [POSSIBLE BREAKAGE] USAePay Transaction: Make "void release" the default [dppcode]
* Redsys: Add rudimentary vaulting [varyonic]
* Exact: Handle 401 failures better [jefflaporte]
* SagePay: make `VPSProtocol` user-configurable [boxofrad]
* Netbilling: Add store support [cshepherd]
* Add Qvalent gateway [markabe]
* Expose proxy address and port to gateways [arkes]
* Remove Ruby 1.9 [j-mutter]
* Qvalent: Do not sent order.ipAddress when storing [markabe]
* Qvalent: Fix argument name [bruno]
* Qvalent: map card storage reference to authorization [markabe]
* Qvalent: Fix scrub replacement, it was too greedy [markabe]
* PayConex: Add gateway [duff]
* AuthorizeNet: Add credit support [duff]
* CenPOS: Add gateway [markabe]
* Stripe: Update country list [markabe]
* Add Monei.net gateway [leolara]
* MerchantWarrior: Fix refund and capture signatures [duff]
* CenPOS: Add support for capture and refund [markabe]
* Authorize.net: Add support for network tokenization credit cards [jnormore]
* Stripe: Add support for passing in metadata for auths and purchases [kitt]
* Pin: Pass amount param for captures [ab9]
* NAB Transact: Improve store functionality [duff]
* Add Worldpay Online Payments [ao]
* Fat Zebra: Add multi-currency support [nagash]
* Fat Zebra: Add auth/capture capability [nagash]
* Fat Zebra: Add soft descriptor support [nagash]
== Version 1.47.0 (February 25, 2015)
* Authorize.Net: Properly send name in shipping address line, when shipping address is provided [girasquid]
* Payflow: Add verify support [ntalbott]
* Capture ConnectionError#triggering_exception [ntalbott]
* Flo2Cash: Map Reference->:order_id (not :invoice) [ntalbott]
* Flo2Cash: Fix card brand handling [ntalbott]
* Flo2Cash: Improve error handling & simplify "Simple" gateway [ntalbott]
* Remove Vindicia gateway [mutemule]
* Firstdata E4: Support other mastercard string [jcbantuelle]
* Checkout: Disallow altering endpoint via options [markabe]
== Version 1.46.0 (January 20, 2015)
* CHANGE: drop `offsite_payments` and `active_utils` as dependencies. [wvanbergen]
* CHANGE: remove `OffsitePaymentShim`. You will have to add offsite_payments as a dependency,
and update any mentions of `ActiveSupport::Billing::Integration` to
`OffsitePayments::Integrations`. [wvanbergen]
* QuickBooks Payments: Add adapter [ivanfer, bizla]
* Quickbooks: Remove requirement of oauth gem.
* PayGate: Add support for refunds [StephanAtG2]
* PayPal: Add #scrub for scrubbing PCI information out of HTTP transcripts [girasquid]
* Stripe: Add #scrub for scrubbing PCI information out of HTTP transcripts [girasquid]
* Cybersource: Add ability to verify a card [duff]
* BraintreeBlue: Expose the error code in the response params [duff]
* eWay Rapid: Update supported countries and card types [incarnate]
* PayPal: Allow specifying ButtonSource at init [ntalbott]
* Payflow: Add fraud_review support [ntalbott]
* Add IPP gateway [InfraRuby]
* Redsys: Fix order_id truncation [duff]
* AuthorizeNet: Improve duplicate_window handling [duff]
* PayPal: Fix ButtonSource bug [ntalbott]
* Checkout: Prevent multiple trackids from being passed [markabe]
* Pin: Handle JSON parsing exception in response [duff]
* Improve test suite to test against multiple ActiveSupport versions [wvanbergen]
* Misc. code cleanup [wvanbergen]
* Add Flo2Cash gateway [markabe]
* Litle: Allow order_source override [duff]
* Quickpay: Add ability to finalize a capture [askehansen]
* AuthorizeNet: Prevent test mode using live gateway [duff]
* Add Flo2Cash Simple gateway [markabe]
== Version 1.45.0 (December 1, 2014)
* HPS: Always pass CardHolderData element [SecureSubmit, ntalbott]
* PayJunction: Include 'track' parameter if provided [hron]
* WebPay: Fix API calls [tomykaira]
* Moneris US: Add store, unstore, and update [AntoineInsa]
* Moneris US: Add CVV and AVS [AntoineInsa]
* Stripe: Add support for statement_description [markabe]
* CASHNet: Add support for fname and lname [markabe]
* Orbital: Fix customer profile auth/purchase [denis]
* Payex: Fix expiry month to allow 4 digit year [duff]
* Cashnet: Allow overriding custcode [hoenth]
* Cashnet: Fix overridding item_code per transaction [ntalbott]
* Add Checkout.com gateway [ravish-ramrakha-cko]
* HPS: Add verify support [SecureSubmit]
* Add Bank Frick gateway [varyonic]
* Add Global Transport gateway [duff]
* iATS: Add #store and #unstore [duff]
* Authorize.Net: Fix amount formatting [ntalbott]
* Authorize.Net: Truncate order_id to 20 characters [ntalbott]
* Authorize.Net: Truncate more fields [duff]
* Authorize.Net: Truncate invoiceNumber [ntalbott]
* Adyen: Add support for verify operation [duff]
* USAePay: Add track_data support [louiskearns]
* Payex: Use the right url for the purchase call [duff]
* Braintree: Allow dynamic descriptors [duff]
* Openpay: Add support for device session id [guillermo-delucio, ismaelem]
* Redsys: Add support for verify [duff]
* Redsys: Handle unknown currencies [duff]
* Stripe: Make #unstore signature consistent [duff]
* Remove defunct Samurai gateway [ntalbott]
* eWay Rapid: Tweak authorization support [duff]
* Litle: Add support for dynamic descriptors [duff]
* Add TNS gateway [markabe]
* TNS: Update countries and supported card types [markabe]
* Conekta: Add AMEX as a supported card type [MauricioMurga]
* Checkout: pass through currency type [markabe]
* Bogus: return standard error codes [jpcaissy]
* Add PaymentToken and ApplePayPaymentToken objects for token-based transactions [bizla]
* Authorize.Net: Add ApplePay in-app transaction support [bizla]
* Stripe: Add ApplePay in-app transaction support [bizla]
* eWAY Rapid: Add PartnerID param [j-mutter]
* GlobalTransport: Truncate order_id [duff]
* Redsys: Allow a description to be specified [duff]
* NetworkMerchants: Fix currency [j-mutter]
* Redsys: Improve handling of order_id [duff]
* Checkout: Add support for void, refund, and verify [markabe]
== Version 1.44.1 (Aug 28, 2014)
* Allow SSLv3 for PsiGate [mutemule]
* Set default :state to n/a for NetworkMerchants [cjoudrey]
== Version 1.44.0 (Aug 21, 2014)
* Moneris: Add :avs_enabled option [bslobodin]
* Stripe: Populate authorization in failed responses, when available [bslobodin]
* Moneris: Use the name on the card [duff]
* Balanced: More 1.1 API fixes and mappings [ntalbott]
* Balanced: Handle "pending" refunds [duff]
* Immediately convert credit card date fields to integers [ntalbott]
* Balanced: Handle outside card tokens [ntalbott]
* Balanced: Do not pass address if zip is missing [ntalbott]
* Float active_utils at the patch version instead of the minor version [nwjsmith]
* Wirecard: Fix CVV & AVS response handling [alevett]
* Consolidate deprecation handling [ntalbott]
* Authorize.Net CIM: Do not send x_test_request [danrabinowitz]
* Authorize.Net CIM: Pass delimiter through [jsoma]
* HPS: Add support for track data [SecureSubmit]
* HPS: Fix processing without an address [SecureSubmit]
* Balanced: Do not pass address if zip is blank [duff]
* Do CreditCard attribute cleanup at assignment [ntalbott]
* eWay Rapid: Add auth/capture/void support [ntalbott]
* [POSSIBLE BREAKAGE] Remove dependency on active_utils Validateable [ntalbott]
* Make all active_utils requires explicit [ntalbott]
* Balanced: Handle legacy card tokens [ntalbott]
* Braintree Blue: Default verification merchant id [speric]
* [POSSIBLE BREAKAGE] Extract integrations into an offsite_payments gem [ntalbott]
* [POSSIBLE BREAKAGE] Drop stated/tested compatibility with Rails < 3.2 [ntalbott]
* Stop requiring unused CurrencyCode class from active_utils [ntalbott]
* Move ActiveMerchant::Error into ActiveMerchant [ntalbott]
* Inline RequiresParameters in Gateway & move Country from active_utils [ntalbott]
* Quickpay v7: Fix passing acquirers field [moklett]
* Quickpay v7: Pass an amount when storing cards [ta & moklett]
* Quickpay: Expand list of supported countries [ta]
* Validate CreditCard verification value [mnoack]
* Authorize.Net CIM: Allow updating a payment profile without a full credit card number [speric]
* Wirecard: Add optional CommerceType element [timtait]
* Add Borgun gateway [markabe]
* [POSSIBLE BREAKAGE] NAB Transact: Allow timeout customization [duff]
* Wirecard: Add card store and purchase/authorize by reference [speric]
* Worldpay: Add support for Switch cards [dougal]
* FirstData e4: Send correct card type [npverni]
* Elavon: Add store/update support [npverni]
* Wirecard: Catch an empty ERROR <Message> Element [timtait]
* Finansbank (CC5): Add void/refund/credit support [muhammetdilek]
* Wirecard: Use authorization_check for Amex store [npverni]
* Elavon: Make void work for authorizations [duff]
* Add Commercegate gateway [vitaliyvasin]
* Wirecard: Fix "amex" references [mendable]
* HPS: Do not pass empty elements [SecureSubmit]
* Paymill: Add more supported card types [nikoloff]
* Paymill: Add source [nikoloff]
* Paymill: Add description for preauthorizations [nikoloff]
* Paymill: Add remote tests using tokens [nikoloff]
* HPS: Add developer, version number and site trace options [SecureSubmit]
* Update 1stPayGateway.Net gateway [rwdaigle]
* Payflow: Add verbosity option [doppler]
* Allow ignoring the result of any MultiResponse step [ntalbott]
* Stripe: Add ability to verify a card [duff]
* Paypal: Add ability to verify a card [duff]
* Authorize.net: Add ability to verify a card [duff]
* Braintree: Add ability to verify a card [duff]
* Enhance gateway generator to support verify [duff]
* PayPal Express: Add funding source support [baraabourghli]
* Optimal: Add IP address to requests [justinplouffe]
* Pin: Add authorize & capture support [keithpitt]
* Pin: Add update support [keithpitt]
* Vindicia: Stop using the vindicia-api gem [ntalbott]
* Clean up the warnings fog [ntalbott]
* Quickpay: Map options[:ip] for fraud analysis [ta]
* SagePay: Truncate fields [duff]
* First Data E4: Add ability to verify a card [duff]
* Elavon: Add ability to verify a card [duff]
* Worldpay: Pass email and IP address [duff]
* Worldpay: Use updated address format [duff]
* Moneris: Fix address splitting [ntalbott]
* FirstData E4: Allow passing CAVV through [Senjai]
* Braintree Blue: Remember the capture transaction id [duff]
* Eway Rapid: Truncate some fields [duff]
* Optimal Payment: Make account mandatory field [rwdaigle]
* Worldpay: Improve address defaulting [duff]
* Authorize.Net: Add maestro as a supported card type [vparihar01]
* Worldpay: Improve address defaults [duff]
* Braintree Blue: Pass cardholder_name when tokenizing [radar]
* Wirecard: Improve error handling [mendable]
* Litle: Add verify support [markabe]
* USAePay: Add verify support [markabe]
* BridgePay: Add verify support [duff]
* Braintree Blue: Add payment_method_token flag [JDutil]
* SagePay: Add optional FI fields [rob-anderson]
* Iridium: Add AVS and CVV results [X0Refraction]
* NAB Transact: Add credit support [nagash]
* Braintree Blue: Add application_id support [npverni]
* Realex: Add maestro mapping [uriklar]
* Add Worldpay US gateway [markabe]
* Cybersource: Add shipping address [pkoppula]
== Version 1.43.2 (May 12, 2014)