forked from activemerchant/active_merchant
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CHANGELOG
1816 lines (1619 loc) · 95.9 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
* 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]
== 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]
== 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)
* Remove 2Checkout's #line_item due to conflict with Klarna/Shopify [edward]
* Auth.Net CIM: Fix ordering of order/trans_id [pdamer]
* Add PagoFacil gateway [bhserna, abisosa]
* [POSSIBLE BREAKAGE] Stripe: Allow for updating of stored card [speric]
* Authorize.Net: Deprecate ARB [ntalbott]
* Authorize.Net CIM: Add recurring billing flag [gabealmer]
* Spreedly: Add support for :ip [megamoose]
* PayPal Express: Improve received_at handling [jwarchol]
* PayPal Express: Add ReqBillingAddress flag [johnb-razoo]
* Beanstream: Add support for Legato single use tokens [tylerrooney]
* PayPal Digital Goods: Allow mobile [tomprats]
* Maxipago: Add installment support [alexandremcosta]
* Deprecate recurring API support [ntalbott]
* NMI: fix CreditCard check [bslobodin]
* SagePay: Add tokenization support [kernow]
* PayPal Express: Reference transaction details [lrostovsky]
* Balanced: Update to API 1.1 [steveklabnik]
* Add Cashnet gateway [hoenth]
* Conekta: Standardize address options [MauricioMurga]
* Wirecard: Add support for reference purchases [timtait]
* Worldpay: Add support for external references [matsubo]
* Balanced: Voiding a capture is not allowed [duff]
* Add HPS gateway (Heartland Payment Systems) [SecureSubmit]
* Balanced: Fix handling of 500 errors [ntalbott]
* Universal: Remove all billing address fields [bslobodin]
* Balanced: Stop creating a customer on each call [ntalbott]
* Balanced: Refactor and handle legacy authorizations [ntalbott]
* SagePay Form: Update to v3.00 [bslobodin]
* GestPay: Use a more specific error class when parsing [odorcicd]
* PagSeguro: Improve error handling [celsodantas]
* PxPay: Support for newer, query-less redirect URLs [odorcicd, bslobodin]
* eWAY Rapid: Update to 3.1 API [atomgiant]
* Misc refactorings [justinplouffe]
* Remove greedy rescue, and convert some errors to be user-facing [odorcicd]
* PayPal Express: pass logo image for setup request [dimko]
* Improve credit card validation [duff]
== Version 1.43.1 (May 1, 2014)
* Merchant Warrior: Scrub names [duff]
* Validate Gateway.supported_countries [rwdaigle]
* Stripe: Add recurring flag support [bslobodin]
* Stripe: Use localized amounts for currencies w/o minor units [bslobodin]
* WebPay: Leverage fixes to Stripe to remove duplicate code [bslobodin]
* Klarna: Miscellanenous fixes [edward]
* Mollie iDEAL: Use order's description [wvanbergen]
== Version 1.43.0 (April 24, 2014)
* PagSeguro: New offsite integration [celsodantas]
* Sage Pay: Fix amount parsing in notifications [berkcaputcu]
* Sage Pay: Use API v3.00 [bslobodin]
* BridgePay: Switch method of success detection [markabe]
* BridgePay: Use Return as TransType for refunds [markabe]
* IATS: Complete rewrite using first class API [rwdaigle]
* IATS: Fix invalid country code UK -> GB [rwdaigle]
* DataCash: Fix refund processing using original authorization [bslobodin]
* Transnational gateway renamed to Network Merchants [bslobodin]
* PayMill: Handle non-JSON server responses [bslobodin]
== Version 1.42.9 (April 15, 2014)
* Spreedly: Add ip, description and gateway_specific_fields [faizalzakaria]
* Sage (US): Support store/unstore of cards [rwdaigle]
* Pin: Add american express to supported cards [nagash]
* Raven: Update handling of CVV/AVS [bslobodin]
* Raven: Use UUID for RequestID [bslobodin]
== Version 1.42.8 (April 4, 2014)
* Cecabank: Handle invalid xml response body [duff]
* Wirecard: Capture error code in the response [duff]
* Litle: Remove gem dependency [duff]
* Litle: Fix case of missing address parts [duff]
* Universal: Add universal offsite API implementation [bslobodin]
* Iridium: Add more currencies [bslobodin]
* iDeal: Add Mollie iDeal offsite implementation [wvanbergen, maartenvg]
== Version 1.42.7 (March 18, 2014)
* SagePay: Add support for ReferrerID [markabe]
* Cecabank: Fix expiration date formatting [duff]
* Add WePay gateway [faizalzakaria]
* SmartPs: Add ECI option to SmartPs [odorcicd]
* Rescue and re-raise ActionViewHelperError when offsite helpers raise an error [odorcicd]
* Add FirstGiving gateway [faizalzakaria]
* FirstGiving: Fix refunds [ntalbott]
* Samurai: Handle server errors [ntalbott]
* WePay: Fix refund [duff]
== Version 1.42.6 (February 24, 2014)
* Litle: Truncate order_id [duff]
* Conekta: Fix #refund; respect :currency [leofischer]
* SagePay: Truncate description field [duff]
* Add Cecabank gateway [molpe]
* Add Openpay [darkaz]
* Openpay: Simplify test versus production mode [duff]
* Wirecard: Handle a utf-8 description [duff]
* Litle: Partial capture support [ttdonovan]
* Ogone: Allow D3D for alias purchases [pwoestelandt]
* USAePay Advanced: Fix verification_value mapping [dppcode]
* Orbital: Add additional success conditions [boone]
* Orbital: Handle special CVV responses [boone]
* Balanced: Allow working with balanced.js [michaelherold]
* Balanced: Allow passing customer name [michaelherold]
* Balanced: Add support for meta [michaelherold]
* Improve gateway generator [ntalbott]
* Add maxiPago gateway [alexandremcosta]
* Authorize.Net: Remove x_test_request support [ntalbott]
* Conekta: Add default description [bslobodin]
* Add PayDollar integration [bslobodin]
== Version 1.42.5 (February 7th, 2014)
* Add Doku Indonesia [bizla]
* Cardstream: Update gateway to use latest API [odorcicd]
== Version 1.42.4 (January 8th, 2014)
* DataCash: Set 'ecomm' as capturemethod [DavidGeukers]
* Cybersource: Fix subscriptions with a setup fee [ntalbott]
* Stripe: Do not pass customer details to the /cards endpoint [michellebu]
* Stripe: Allow Stripe API version to be initialized with the gateway [odorcicd]
== Version 1.42.3 (December 18th, 2013)
* Balanced: Add support for appears_on_statement_as [duff]
* Authorize.Net: Make already actioned responses failures [odorcicd]
* Add Payex gateway [atomgiant]
* Paymill: Fix authorizations [duff]
* Braintree Blue: Allow specifying the credit card token [ntalbott]
* Braintree Blue: Allow specifying the customer id [ntalbott]
* Braintree Blue: Scrub invalid emails and zips [ntalbott]
* Braintree Blue: Return :credit_card_token as a top level param [ntalbott]
* Braintree Blue: Allow unstoring just a credit card [ntalbott]
* Braintree Blue: #store adds cards to existing customers [ntalbott]
* USA ePay Advanced: Fix check handling [nearapogee]
* USA ePay Advanced: Fix credit card expiration handling [nearapogee]
* USA ePay Advanced: Fix handling of custom transaction responses for single items [nearapogee]
* USA ePay Advanced: Fix capture amount [nearapogee]
* NAB Transact: Fix merchant descriptor with capture/refund requests [nagash]
* Braintree Blue: Add custom_fields & device_data parameters [parallel588]
* Webpay: Add authorize & capture [keikubo]
* MerchantWarrior: Pass description [duff]
* Stripe: Separate email from description [duff]
* Add Payscout gateway [llopez]
* Merchant Warrior: Use billing_address [duff]
* Add SoEasyPay gateway [ir-soeasycorp]
* Bogus: Add check support [npverni]
* Payflow: Add Check support [crazyivan]
* Stripe: Allow expanding objects inline [odorcicd]
== Version 1.42.2 (November 13th, 2013)
* Renew public certificate
== Version 1.42.1 (November 13th, 2013)
* Signed version of 1.42.0
== Version 1.42.0 (November 13th, 2013)
* Fix NoMethodError "tr" for params with dash [TimothyKlim]
* Authorize.Net: Add cardholder authentication options (CAVV) support [structure]
* CardStreamModern: Added better checks on inputs from the gateway [ExxKA]
* Stripe: Send :ip to the gateway instead of :browser_ip [f3ndot]
* Wirecard Page: new offsite gateway [mbretter]
* Mercury: Add support for requesting a token [kcdragon]
* Add App55 gateway [ianbutler55]
* UsaEpayTransaction: Support for split payments [GBH]
* Add Swipe Checkout gateway [matt-optimizerhq]
* Spreedly Core: Allow overriding the gateway token when running a transaction [hoenth]
* Spreedly Core: Add order_id [hoenth]
* Spreedly Core: Allow store without retain [hoenth]
* Stripe: Support multiple cards on account [pierre]
* Stripe: Add card_id parameter to unstore call [pierre]
* Remove usage of `uname -a` [ntalbott]
* Litle: Allow easier access to the response code [duff]
* Stripe: Add the option to pass a version header [odorcicd]
* Elavon: Update supported countries [duff]
* Add Raven PacNet gateway [llopez]
* BitPay: Fix BitPay issues and implement Notification#acknowledge [odorcicd]
== Version 1.41.0 (October 24th, 2013)
* Stripe: Payments won't fail when specifying a customer with a creditcard number [melari]
* Add Conekta gateway [leofischer]
* Wirecard: Add support for void and refund [duff]
* Orbital: Mandatory field fix [juicedM3, jduff]
== Version 1.40.0 (October 18th, 2013)
* Paymill: Revert Add support for specifying the :customer [melari]
* Quickpay: Make v7 of the API default [kvs]
* Bitpay: Add return [tahnok]
== Version 1.39.2 (October 10th, 2013)
* Eway Rapid: Fix a bug with access codes that have equal signs in them [odorcic]
== Version 1.39.1 (October 9th, 2013)
* Bitpay: Invoice Fix [orenmazor]
== Version 1.39.0 (October 9th, 2013)
* Moneris: Add optional (off by default) verification_value support [duff]
* Citrus: New Integration [viatechs, melari]
* Payu Paisa: New Integration [melari]
* Spreedly: Pass country with other address fields [hoenth]
* SecureNet: Fix order of xml params [duff]
* Paymill: Add support for void [duff]
* Add MoneyMovers gateway [jeffutter]
* Ogone: Add a :store_amount option [rymai]
* Ogone: Require TLSv1 [ntalbott]
* Moneris: Add support for purchasecorrection [pgib]
* Spreedly: Add ability to retain on success [duff]
* Spreedly: Pass verification value [duff]
* Paymill: Add support for specifying the :customer [Sbastien]
* Realex: Correct AVS input format [ExxKA]
* USAEpay Transaction: Use sandbox when in test mode [radar]
* Braintree Blue: Do not use global config [rdj]
* eWay Rapid: Add response messages [BenZhang]
* Paysbuy: Add 'Pending' notification status [divineforest]
* Cybersource: Use standard :phone field [cade]
* Orbital: Fix/tweak AVS codes [boone]
* Quickpay: Add v7 support [larspind]
* Authorize.Net CIM: Add option to not mark transactions as test [alanandrade]
== Version 1.38.1 (September 16, 2013)
* Moneris: Remove verification_value support [melari]
== Version 1.38.0 (September 6, 2013)
* FirstData E4: Include missing address information for AVS and CVV [melari]
* Litle: Deprecate credit method in favor of refund [melari]
* Moneris: Add verification_value support [duff]
* Webpay: Fixes issues with partial JPY currency [keikubo, melari]
* SecureNet: Add INVOICENUM and INVOICEDESC optional fields [duff]
* Balanced: Make BalancedGateway::Error inherit from ActiveMerchantError [duff]
* Balanced: Fix #void interface [duff]
* HiTrust: Return correct error message for positive retcodes [melari]
* Moving to pessimistic versioning [davefp]
== Version 1.37.0 (August 20, 2013)
* MerchantWarrior: Fix handling of amounts [duff]
* Ipay88: New gateway [kamal, siong1987, jduff]
* IATS: New gateway [unkown, jduff]
* MerchantWarrior: Send the CVV to the gateway [duff]
* PayU: Fix a major bug with status types [melari]
* SecureNet: Allow production transactions [duff]
* Stripe: Allow a card_not_present_fee to be specified [melari]
== Version 1.36.0 (August 2, 2013)
* Fat Zebra: More consistent handling of tokens [adrianmacneil]
* Add Platron integration [alexwl]
* Litle: Support wiredump_device [pierre]
* Litle: support paypage registrations [pierre]
* SecureNet: Cleanup and refactoring [duff]
* Mercury: Proper refund and void support [opendining]
* PaymentExpress: Return token in authorization [ntalbott]
* Stripe: Support for partial application fee refunds [melari, odorcicd]
* NMI: Support for recurring flag [duff]
* SecureNet: Use working live url [duff]
== Version 1.35.1 (July 22, 2013)
* Stripe: Allow application_fees to be refunded via the refund_application_fee flag [melari]
== Version 1.35.0 (July 17, 2013)
* Add Barclays ePDQ Extra Plus gateway [ntalbott]
* PayPal: Add MassPay payment to recipients by UserID [damonmorgan]
* Authorize.Net: Add authorization_code to response params [noahlh]
* Make Rails 4 a supported version [sanemat]
* CyberSource: Add pinless debit card support [JoshMcKin]
* Verkkomaksut: Add item title field [kaapa]
* Add MerchantWare V4 gateway [hron]
* Eway Rapid: Add #store method [adrianmacneil]
* Barclays ePDQ Extra Plus: Use correct PROD url [ntalbott]
* Hitrust: update test & live urls [melari]
* NAB Transact: Add auth & capture support [nagash]
* Mercury: Support card-less capture and refund [ntalbott]
* Mercury: Support void [ntalbott]
== Version 1.34.1 (June 28, 2013)
* WorldPay: Add dynamic return URL [jordanwheeler]
* Merchant One: New gateway [coteyr, melari]
* Balanced: Fix exception for invalid email [duff]
* Update supported countries for Paymill & PaymentExpress [duff]
* Worldpay: Add support for diners club [duff]
* Stripe: Include address with card data [melari]
== Version 1.34.0 (June 20, 2013)
* PayPal Express gateway: Add unstore support [duff]
* Stripe: Send application_fee with capture requests [melari]
* Make #unstore method signature consistent across gateways [duff]
* Dwolla: Major bug fixes. [capablemonkey, melari]
* Stripe: Add support for including track data [melari]
== Version 1.33.0 (May 30, 2013)
* Netaxept: Completely revamped to use the "M" service type [rbjordan3, ntalbott]
* Litle: Void authorizations via an auth reversal [jrust]
* Add RBK Money integration [england]
* Direcpay: Update test url [ashish-d]
* PayPal Express gateway: Add support for creating billing agreements [fabiokr]
* PayPal Express gateway: Add reference authorizations [fabiokr]
* Add Cardstream Modern gateway [ExxKA]
* Pin: Fix special headers [duff]
* PayPal Express gateway: Remember the billing agreement id as Response#authorization [duff]
* PayPal Express gateway: Allow an amount of 0 [duff]
* PayPal Express gateway: Reduce parameter requirements [duff]
* Quickpay integration: Update notification parser to handle API v6 [larspind]
* Sage gateway: Deprecate #credit call [duff]
* Update notification generator to better match current notification class [lulalala]
* Paymill gateway: Change .com -> .de [louiskearns]
* Quickpay integration: Fix v6 response parsing [larspind]
* First Data e4: Add TransArmor store/tokenization support [gabetax]
* MerchantWarrior: Format expiration month/year correctly [klebervirgilio]
* Add iconv for ActiveSupport 2.3 under Ruby 2.0 [sanemat]
* Add Transnational gateway [bvandenbos]
* Authorize.Net: Add Check as payment method [andrunix]
* Merchant e-Solutions: Add ref number and recurring support [carlaares]
* Bogus gateway: Add authorization to purchase response [hron]
* Bluepay gateway: Fix Check support; general cleanup [ntalbott]
* Dwolla: Fix security issues and enable guest checkout [capablemonkey, schonfeld]
* SagePay gateway: Per-transaction 3D-secure selection [ExxKA]
* Barclays ePDQ: Handle incorrectly encoded response [jordanwheeler, aprofeit]
* Orbital: Bug fixes; add CustomerEmail, Retry Logic, Managed Billing, and Destination Address [juicedM3
* Distinguish invalid vs empty issue_numbers on CreditCards [drasch]
* Float Gemfiles to latest Rails [sanemat]
* USA ePay Advanced: Fix Check support [RyanScottLewis]
* Authorize.Net: Match up Check fields better with eCheck.Net requirements [ntalbott]
* Bluepay: Updated to bp20post api [cagerton, melari]
* Net Registry: Deprecate credit method [jduff]
* Sage: Don't include T_customer_number unless it is numeric [melari]
* Auth.net: Don't include cust_id unless it is numeric [melari]
* Epay: Deprecate credit method [melari]
* New PayU.in Integration [PayU, melari]
== Version 1.32.1 (April 4, 2013)
* CC5 and Garanti: Remove $KCODE modifications [melari]
* Paymill: Add support for store [ntalbott]
* USA ePay: Fix misspelling of "Aduth" [joelvh, ntalbott]
* Orbital: Fix nil address values throwing exceptions during truncation [melari]
== Version 1.32.0 (April 1, 2013)
* Optimal: Submit shipping address with requests [jduff]
* Iridium: Enable reference transactions for authorize [ntalbott]
* Stripe: Add authorize and capture methods [melari]
* Pin: Add a default description if none is specified to fix failures [melari]
* Litle: Add support for passing optional fields in token based transactions [forest]
* Add Finansbank gateway [scamurcuoglu]
* Paymill: Use .com instead of .de for save card url [besi]
* Worldpay integration: Use more robust endpoint urls [nashbridges]
* Braintree Blue: Return CC token in transaction hash [cyu]
* Robokassa: Fix signature for empty amount [ukolovda]
* Worldpay gateway: Fix error messages for some failures [duff]
* Worldpay gateway: Allow settled payments to be refunded [dougal]
* Spreedly: Update urls and terminology [duff]
* Make card brand error more user friendly [oggy]
* DataCash: Update test Mastercard number [jamesshipton]
* DataCash: Update test response fixtures [jamesshipton]
* Pin: Add Pin.js card token support [nagash]
* PayPal Express gateway: Fix error when no address information is in response [pierre]
* Ogone: Use BYPSP for ALIASOPERATION [ntalbott]
* Paymill: Handle error storing card [duff]
* SagePay integration: Add referrer field [melari]
* Pin: Add extra headers [duff]
* Paymill: Add support for store [ntalbott]
* USA ePay Advanced: Fix typo in message credit card data options [joelvh]
== Version 1.31.1 (February 25, 2013)
* Cybersource: Bug fixes [natejgreene, jduff]
== Version 1.31.0 (February 20, 2013)
* Worldpay: XML encoding is required to be ISO-8859-1 [dougal]
* Worldpay: Add card code for more supported card types [dougal]
* Ogone: Add action option [pwoestelandt]
* PayPal Express gateway: Add support for BuyerEmailOptInEnable [chrisrbnelson]
* Add Paymill gateway [duff]
* Add EVO Canada gateway [alexdunae]
* Fixed credit card and check interface, used correct method for checking payment type [jduff]
== Version 1.30.0 (February 13, 2013)
* Add FirstData Global Gateway e4 [frobcode]
* PaymentExpress: Add support for optional fields: ClientType and TxnData [moklett]
* PaymentExpress: Limit MerchantReference/description to 64 chars [moklett]
* Wirecard: description must be no more than 32 characters [moklett]
* Litle: Add support for passing a token to the authorize and purchase methods [forest]
* PayPal Common: Allow searching for transactions by ProfileID [aq1018]
* Add Spreedly Core gateway [duff]
* eWay Gateway: Return proper value for authorization [duff]
* eWay Gateway: Add support for refunds [duff]
* Quickpay: Add support for protocols 5 & 6 [twarberg]
* Banwire gateway: Handle JSON::ParserError [duff]
* Balanced gateway: Fix unspecified marketplace [duff]
* QBMS gateway: Allow partial addresses [duff]
* Authorize.Net CIM: Allow omitting card expiration date [shanebonham]
* Authorize.Net CIM: Add support for extraOptions to createCustomerProfileTransaction [tpiekos]
* Add NETPAY gateway [samlown]
* Balanced gateway: Add amount to the refund method signature [ntalbott]
* Orbital gateway: Fix void method signature [aprofeit, ntalbott]
* Eway Managed: Add 'query_customer' API as #retrieve [cdaloisio]
* NetPay: Fix the signature for void [duff]
* Cybersource: Add check support [bowmande]
* Moneris: Use a capture of $0 for void [ntalbott]
* PayPal Express integration: Fix received_at time zone [ntalbott]
* NAB Transact: Add refund capability [nagash]
* Stripe: Add support for application_fee [duff]
* SagePay: Add support for GiftAidPayment [duff]
* Wirecard: Add support for partial captures [richardblair]
* Add Pin gateway [madpilot]
* Balanced: Added support for on_behalf_of_uri to capture [cwise]
* Litle: Add support for passing an order_source [forest]
* Add Merchant Warrior gateway [pronix, Fodoj, ntalbott]
* Use v4 of the MerchantWare API for voiding transactions [melari]
* Add support for Authorize.net in CA and GB [melari]
* Send customer's IP to Beanstream for fraud review [melari]
== Version 1.29.3 (December 7, 2012)
* Braintree Blue: Better wiredump_device support [ntalbott]
* Braintree: Store sets vault id as authorization [ntalbott]
* WorldPay: Fix currencies without fractions like JPY and HUF by rounding down amount [Soleone]
== Version 1.29.2 (December 7, 2012)
* Moneris: fix issue with the default options not being merged [jduff]
* Sage Pay: Make 0000 default post code for everyone if missing [BlakeMesdag]
== Version 1.29.1 (December 5, 2012)
* Add eWay Rapid 3.0 gateway [ntalbott]
* Fix AVS responses missing attributes [jduff]
== Version 1.29.0 (November 30, 2012)
* Authorize.Net gateway: Support description and order_id for capture [ntalbott]
* Add Mercury gateway [adr1anx, opendining]
* Webmoney integration: Add gross, item_id, and amount accessors to notification [fr33z3]
* Fix running tests under ActiveSupport 2.3.14 [ntalbott]
* SagePay Form integration: Remove dependency on ActiveSupport's String#truncate [ntalbott]
* Elavon gateway: Add support for the sales tax parameter [stevestmartin]
* Add WebPay gateway [keikubo]
* iTransact gateway: make void API consistent [frobcode]
* Stripe gateway: Pass city in add_address [npverni]
* Paypal gateway: Add option to change the outstanding balance of a recurring billing profile [mattwhite]
* Mercury gateway: Fix authorizations API [ntalbott]
* Mercury gateway: Support refund properly [ntalbott]
* Braintree Blue gateway: Add support for the recurring flag [ntalbott]
* Add HDFC gateway [ntalbott]
* HDFC gateway: Add more supported currencies [ntalbott]
* HDFC gateway: Add support for passing ECI value [ntalbott]
* HDFC gateway: Allow setting test mode via options [ntalbott]
* HDFC gateway: Pass phone number in UDF3 [ntalbott]
* HDFC gateway: Fix unescaped '&' entity in XML [ntalbott]
* HDFC gateway: More robust entity fixing [ntalbott]
* Add A1Agregator integration [england]
* Refactored handling of #test? and @options [ntalbott]
* Realex gateway: Realex gateway: Fix billing address format [ntalbott]
* Orbital gateway: handle custom AVS response codes [jonm-okc]
* Orbital gateway: Fix infinite connection retry [jonm-okc, ntalbott]
* PayPal integration: Add support for MassPay IPN notifications [damonmorgan]
* Orbital gateway: Fix status of void result [jonm-okc]
* Add Redsys gateway [samlown]
* Cybersource gateway: Add support for subscription credit [fabiokr]
* Use Thor for generators [ntalbott]
* Psigate gateway: Add void support [samuelreh]
* Add Liqpay integration [beorc]
* Paypal Express gateway: Add shipping accessor to response [v-fedorov]
== Version 1.28.0 (August 10, 2012)
* PayPal Express: support non standard locale codes [Soleone]
* Litle: allow setting test mode per transaction [jduff]
* Add Banwire gateway [acolin]
* Authorize.Net CIM gateway: Move cardCode after order to comply with the XSD [davetron5000]
* Add WebMoney integration [Mehonoshin]
* EasyPay: Make symmetric with other integrations [nashby]
* Add Paysbuy integration [divineforest]
* Bogus gateway: Use last digit for pass/fail [mipearson]
* Elavon gateway: Separate from Viaklix, implement refund & void [duff]
* Orbital gateway: Update to API version 5.6 and add support for profile requests [rbarazi]
== Version 1.27.0 (August 10, 2012)
* Add First Data integration [courtland]
* Add WebPay integration [nashby]
* Add Suomen Maksuturva integration [akonan]
* Payway gateway: Fix card storage [BenZhang]
* Payflow Pro gateway: Add MaxFailPayments support [gregwinn]
* Add Paxum integration [Mehonoshin]
* Add Balanced gateway [mjallday]
* Plug'n Pay gateway: Add tests for partial capture [csaunders]
* Braintree Blue gateway: Add credit card details to responses [dougbradbury]
* PayPal gateway: Support for 'Full' refund type [kurenn]
* Worldpay: fix refund [jduff/omh]
* Add PxPay offsite integration [boourns]
* Wirecard: always capture 'authorization' transaction [ntalbott]
* Add rake task to verify ssl certs [boourns]
== Version 1.26.0 (July 6, 2012)
* Orbital gateway: fix broken requests by ensuring the order of XML elements matches their DTD [Soleone]
* CyberSource gateway: clean up formatting [ntalbott]
* Netbilling gateway: Add refund/credit/void support [ntalbott]
* Add PayGate XML gateway [rubyisbeautiful]
* Add PayWay gateway [BenZhang]
* PayWay gateway: Tweaks to make more ActiveMerchant like [ntalbott]
* Netbilling gateway: Fix error handling [ntalbott]
* Netbilling gateway: Add refund/credit/void support [zenom, ntalbott]
== Version 1.25.0 (July 3, 2012)
* eWAY gateway: Add support for Diners Club cards [Soleone]
* Orbital gateway: Never send country code for orders outside of US, CA and GB [Soleone]
* Add EasyPay integration [nashby]
* Updating LitleOnline requirement to 8.13.2 to take advantage of better validation and get bugfix for Username [GregDrake]
* USAepay gateway: Add description support [ntalbott]
* Add Paypal Payments Advanced integration [csaunders]
* Authorize.Net gateway: Improve #refund docs [neerajdotname]
* Wirecard gateway: Fix for missing address hash [ntalbott]
* Clean up requires of RubyGems and JSON gems. Rename remote Litle test to match naming conventions [codyfauser]
* Cybersource gateway: Fix updating address only [fabiokr]
* Cybersource gateway: Move email requirement [fabiokr]
* Add the Metrics Global gateway [DanKnox]
* Braintree Blue gateway: Support wiredump_device [moklett]
* Add Fat Zebra gateway [amasses]
* Braintree Blue gateway: Always pass CVV on update [shayfrendt]
* eWAY gateway: Update docs. Require address [juggler]
* Cybersource gateway: Add support for subscriptions [fabiokr]
* WePay: Use better endpoint for recurring with no CVV [davidsantoso]
== Version 1.24.0 (June 8, 2012)
* PayPal gateway: Support for incomplete captures [mbulat]
* Moneris gateway: Add support for vault [kenzie]
* NAB Transact gateway: Add support for card descriptors [nagash]
* SagePayForm: truncate long description fields [jnormore]
* Paybox Direct: treat all response codes besides '00000' as failures
[Soleone]
* Deprecate CreditCard#type method in favor of CreditCard#brand [jduff]
* Cybersource gateway: Add subscriptions support [fabiokr, jaredmoody]
* eWay gateway: Improved docs, and more accurate required parameters [juggler]
* Braintree Blue gateway: Always pass CVV on card update [shayfrendt]
* Add Fat Zebra gateway [amasses]
* Braintree Blue gateway: Add support for wiredump_device [moklett]
* Add Metrics Global gateway [DanKnox]
* Cybersource gateway: Do not require email address for subscription operations [fabiokr]
* Cybersource gateway: Fix passing only an address when updating a subscription [fabiokr]
* Wirecard gateway: Fix for missing address; general cleanup [ntalbott]
* Authorize.Net gateway: Document ability to just pass the last four to #refund [neerajdotname]
* Add EasyPay integration [nashby]
== Version 1.23.0 (May 23, 2012)
* Add Litle gateway [GregDrake]
* PaymentExpress gateway: add support for BillingId and DpsBillingId for token [mikel]
* 2checkout integration: Add ability to auto settle [craigchristenson]
* 2checkout integration: Switch default mode to single page [craigchristenson]
* Cybersource: Revert - Add retrieve method to pull details on a
stored card [jduff]
* Cybersource: Revert - Add recurring payment support [jduff]
* PaymentExpress: add Cvc2Presence flag when submitting verification
value [jduff]
* SecurePayAU: fix CreditCard check [jduff]
* Barclays: fix order capture [csaunders/ntalbott/jduff]
== Version 1.22.0 (May 17, 2012)
* Remove version restriction for money gem [ylansegal]
* Add iTransact XML gateway [motske]
* PayPal Express Gateway: add options[:landing_page] [markus]
* USA ePay: Fix handling of AVS [duff]
* Ogone: Add store method to create an alias without making a purchase [joelcogen]
* Spelling fix: purcahse -> purchase [mnoack]
* ePay: Added more useful results for authorization errors [Dennis O'Connor]
* Add Robokassa integration [nashby]
* PayPal Gateway: Add recurring API [dscataglini]
* Braintree: Add support for :verify_card option on store [brentmc79]
* Moneris: cannot void a preauthorization [eddanger]
* Add Moneris US gateway [eddanger]
* Add Dotpay integration [kacperix]
* Payflow: Add description, comment and comment2 tags [ksnyder]
* Dotpay: Fix field mapping [kacperix]
* Authorize.Net CIM: Optionally add 'order' details to transactions [pote]
* Braintree: Allow including billing address when storing a customer [brentmc79]
* PayPal Gateway: Refactored PaymentDetails & PaymentDetailsItem common code [dscataglini]
* Viaklix/Elavon: Separate "demo accounts" from "test transactions" [mltsy]
* PayPal Gateway: Add transaction_details, balance, authorize_transaction, and manage_pending_transaction API calls [dscataglini]
* PayPal Gateway: Add support for TransactionSearch & DoReferenceTransaction [dscataglini]
* Cybersource: Add recurring payment support [jaredmoory]
* Tidy up gateway lists [ashokak]
* Paybox: remove Iconv usage [ntalbott]
* Dotpay: Add amount mapping, pin setter, and support for test? [kacperix]
* Braintree Blue: Make address country map to alpha2 [ntalbott]
* Use GB as the alpha2 country code for the UK [ntalbott]
* Realex: Handle XML response with unescaped ampersand [ntalbott]
* Add Vindicia gateway [steved555]
* Payment Express: use %w[] for country list [parndt]
* Braintree Blue: Match remote test up with change to :country [braintreeps]
* PayPal Integration: Fix received_at method time parsing [subbarao]
* Add MiGS Gateway [mnoack, nagash]
* Quickpay integration: Fix payment_service_for helper [TheMaster]
* Braintree Blue gateway: Improve update method [brentmc79]
* 2checkout integration: Add mode mapping & line items helper [AlexanderZaytsev]
* USA ePay Advanced gateway: Fix expiration date format. [cctalbott]
* Add ePay integration [ePay]
* 2checkout integration: Add support for single page payment routine [AlexanderZaytsev]
* Ogone: Add support for 3D Secure [rymai, ZenCocoon]
* Stripe gateway: Remove authorize and capture methods since they are not supported [jduff]
* Stripe gateway: default test to false if no livemode parameter is specified [jduff]
* Paybox Direct gateway: 'card absent' and 'do not honour' should be considered failures, not fraudulent [jduff]
* Add Verkkomaksut integration [akonan]
* Remove trailing spaces from generator templates [akonan]
* Payflow gateway: Allow modification of RetryNumDays [jrust]
* Payflow gateway: Don't auto-set start_date on modification [jrust]
* Bluepay gateway: Add ACH & recurring support [jslingerland]