forked from activemerchant/active_merchant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
1523 lines (1348 loc) · 82.1 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
* 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]
== 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]
== 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]
* Orbital gateway: Don't send AVS address details for any country besides US, CA, GB and UK [Soleone]
* Payflow Express gateway: Better amount handling [jduff]
* Barclays gateway: Allow American Express [duff]
* Ogone gateway: Remove duplicated method [ntalbott]
* Cybersource gateway: Add retrieve method to pull details on a stored card [fabiokr]
== Version 1.21.0 (March 7, 2012)
* Stripe: Add support for passing IP [collision]
* Merchant e-Solutions: pass expiration date when purchasing with a stored credit card [chrisyoung]
* Braintree: Fix passing custom processor ids to old accounts [maxsilver]
* Authorize.net CIM: Add validation mode option to create_customer_profile_request [jwood]
* eWay Managed: Include transaction number in response params [jamsi]
* Fix various hash ordering issues exposed by Ruby 1.8 [ntalbott]
* Authorize.Net CIM: Add WEB echeck type [deathbob]
* Move Braintree from the gemspec to the Gemfile [ntalbott]
* Add CertoDirect gateway [hron]
* Authorize.Net CIM: Add option for setting a custom delimiter [bmorton]
* Authorize.Net CIM: Add 3.1 response fields [bmorton]
* Authorize.Net CIM: Misc fixes and doc improvements [bmorton]
* Authorize.Net CIM: Fix error when order is blank [KeeperPat]
* Beanstream: Add recurring payments support [castiglione]
* Make ePay password optional [ePay]
* Quickpay: skip testmode if transaction provided [brentmc79]
* Payflow: add additional fields [thorstadt]
* Authorize.Net CIM: Add get_customer_profile_ids [howaboutwe]
* PayPal Express: Add support for BrandName and Custom fields [exviva]
* Payflow: Handle dates with leading zeros [jcoleman]
* Authorize.Net CIM: Add CCV code support & improve tests [tgarnett]
* Add Authorize.Net SIM integration [courtland & rdp]
* Secure Pay AU: Handle periodic payments [tommeier]
* Viaklix: Add discover as a supported card type [waelchatila]
* Improvements to testing infrastructure for integrations [jduff]
* Add NAB Transact (AU) Gateway [tommeier]
* PayPal Express: Add Support for Reference Transactions using BAIDs [kenmazaika]
* Authorize.Net CIM: Add support for optional refund fields [nilmethod]
* SecurePayTech: Fix EnableCSC parameter so CVV codes are checked. [tlconnor]
* SecurePayTech: Add remote tests for CSC checking. [tlconnor]
* Samurai: Add option to retain payment methods once stored [brentmc79]
* PayPal Express Gateway: Add support for Digital Goods / Micropayments [kenmazaika]
== Version 1.20.4 (February 22, 2012)
* Fix json dependency
== Version 1.20.3 (February 7, 2012)
* Various fixes to support Ruby 1.9 [wisq]
* SkipJack: Fix partial capture [jduff]
* Optimal Payments: submit region when outside North America [jduff]
* USA ePay: Add void and refund support [duff/ntalbott]
* Add first digits to credit card [codyfauser]
* Orbital: fixes to authentication and order id [Soleone]
* Stripe: fixes to purchase method [duff/ntalbott]
== Version 1.20.2 (January 16, 2012)
* Remove authorize/capture support for Stripe [gdb]
== Version 1.20.1 (December 22, 2011)
* PayflowExpressUk: Fix parsing street2 from response [odorcicd]
* AuthorizeNet: Support tracking id [odorcicd]
* SagePay Form: Map billing address to shipping address [jduff]
== Version 1.20.0 (November 14, 2011)
* Add support for USA ePay Advanced SOAP interface [matthewcalebsmith/jduff]
* Beanstram: fix purchase with Secure Profile [pitr/jduff]
* Orbital: various fixes [Soleone]
* Add Samuari gateway by Fee Fighters [jkrall/odorcicd]
* Lock money gem to 3.7.1 or less since newer versions break in 1.9 [jduff]
* Braintree: handle gateway rejected transactions gracefully [braintreeps/jduff]
* Ogone: support different signature encryptors, custom currency and eci [ZenCocoon/rymai/jduff]
* Payflow Link: use secure token [jduff]
* Added refund method to Exact, Pay Junction and Skip Jack gateways [jduff]
* Elavon: added test url [kylekeesling/jduff]
* Fix redundent errors when credit card is expired [castiglione/jduff]
* Two Checkout: update service url [vampirechicken/jduff]
== Version 1.18.1 (September 23, 2011)
* Braintree: allow setting merchant_account_id on initialize [jduff]
* Realex: only send letters and numbers in shipping code field [Soleone]
== Version 1.18.0 (September 23, 2011)
* NoChex: Update the URL that payment requests are posted to [caseywhalen/jduff]
* QBMS: fixed test mode check [Soleone]
* Realex: encode avs info with shipping address [Soleone]
* Add Dwolla offsite gateway [armsteadj1/jduff]
* Eway: pass email, customer, description and options to store [moklett/tobi]
* New dependency: active_utils gem [odorcicd]
* Optimal Payments: fix test mode check [jduff]
== Version 1.17.0 (August 23, 2011)
* Add Payflow Link integration [jduff]
* Add CardSave gateway [MrJaba/jduff]]
* Quickpay: Support protocal version 4 and fraud parameters [anderslemke/jduff]
* Authorize.net: Add status_recurring [mm1/jduff]
* Paypal Express: Support specifying :items with purchase [sivabudh/jduff]
* ePay: Add Sweden and Norway to supported countries [ePay/jduff]
* Brainreee: Support passing merchant_account_id parameter [braintreeps/jduff]
* Paypal Express: Remove deprecated Address field in favor of ShipToAddress[jduff]
* Add Optimal Payments gateway [jamie/jduff]
* Documentation improvements [dasch/nhemsley/jstorimer/jduff]
* Authorize.Net: Pass through first name, last name, and zip for refunds. [ntalbott]
== Version 1.16.0 (July 18, 2011)
* Bogus: Support referenced transactions for #authorize, #purchase, #recurring and
#credit [dasch/jduff]
* Payment Express: Update gateway url [bayan/titanous]
* Moneybookers: Send country and account_name if provided [Soleone]
* Moneris: Add Diners Club and Discover [Soleone]
* Cybersource: add auth_reversal support [jeberly/titanous]
* WorldPay: Update endpoint URLs for offsite gateway [Soleone]
* Worldpay: Add JCB and add Maestro [Soleone]
* Authorize.net: Add Diners Club and JCB [Soleone]
* Quickpay: Add testmode for subscribe and authorize [dasch/jduff]
* Orbital: fix handling of phone numbers. [ntalbott]
* Braintree: Add Diners Club [cody]
* Add ePaymentPlans offsite payment [robertomiranda/Soleone]
* Add Stripe gateway [boucher/titanous]
* Add Paystation gateway [nikz/jduff]
* Bump minimum ActiveSupport version to 2.3.11 [titanous]
* Use securerandom from stdlib not active_support [phlipper/jduff]
== Version 1.15.0 (May 12, 2011)
* DirecPay: Fix address to not include address2 twice in some cases [Soleone]
* DirecPay: Send company if available [Soleone]
* Realex: Fix hash signature [ntalbott/Soleone]
* SecurePay AU: Update remote tests [ntalbott]
* SecurePay AU: Fix method arity for #capture, #refund, #credit and #void [Soleone]
* Barclays ePDQ: Make response parsing more robust [Soleone]
* Payflow Express: Add line item support [wolframarnold]
* Payflow Express: Add comment field support [wolframarnold]
* Payflow: Add more optional fields [wolframarnold]
* Beanstream/Paypal: Fix CREDIT_DEPRECATION_MESSAGE errors [Jonathan Rudenberg]
* BraintreeBlue: Return a hash instead of a transaction object [braintreeps]
* BraintreeBlue: Return proper AVS/CVV values [braintreeps]
* Bogus: Add #recurring [trwomey]
* Make Validateable compatible with ActiveModel [CodeMonkeySteve]
* Add DirectEBanking offsite gateway [Gerwin Brunner/Soleone]
* ActiveSupport 3.1 beta support [cgriego]
== Version 1.14.0 (Apr 29, 2011)
* SagePayForm: Implement #cancelled? for Return. [wisq]
* Add #cancelled? to Integrations::Return [wisq]
* Bogus gateway: Add refund support and better tests [wisq]
* Beanstream: Add support for storing cards [duffomelia]
* eWay: Add support for storing cards [duffomelia]
* Add validation mode to update profile request [Ken Miller]
* Authorize.net CIM: Add oldLiveMode [ntalbott]
* Authorize.net CIM: Add extra transaction types [Ken Miller]
* JetPay: gateway tweaks [ntalbott]
* Deprecate a bunch more #credit methods [ntalbott]
* RealEx: Add authorize/capture/credit/void [ntalbott]
* SecurePay AU: Add authorize/capture/credit/void [ntalbott]
* PayPal Express: Make response parsing more robust [ntalbott]
* Test deprecation warnings; add deprecation line numbers [ntabott]
* Add Orbital direct gateway [ntalbott]
* Add WorldPay direct gateway [ntalbott]
== Version 1.13.0 (Apr 19, 2011)
* Add a Gemfile for optional bundler support [ssoroka]
* Stop using has_rdoc= when rubygems version is 1.7.0 or greater, since it's deprecated [ssoroka]
* Add tax field to braintree [wisq]
* Quickpay: Also add Sweden as supported country [Soleone]
* Adding refund method for gateways that are using the credit method for referenced based refunds, added deprecation worning to the credit method [John Duff]
* Return the Braintree transaction id in the response for void and refund transaction calls [John Duff]
* PayPal Express: Extract phone number from address if no contact phone was sent [Soleone]
* Unify all offsite gateways that verify the signature of Returns or Notifications by always using the #acknowledge method and calling the secret :credential2 [Soleone]
* Valitor: Change name of credential for Return and Notification from :password to :credential2 in symmetry with the other Integrations [Soleone]
* Moneybookers: Add support for tracking token [Soleone]
* Moneybookers: Require credential when creating Notifications instead of adding an argument to #acknowledge [Soleone]
* Moneybookers: Fix Notification to return correct status [Soleone]
* Support default Return class for all Integrations that don't use returns [Soleone]
* Add support for passing additional options when creating a Notification to all Integrations [Soleone]
* Update BraintreeBlue#refund to have consistent method signature [Jonathan Rudenberg]
* Add rails/init.rb for gem campatability in Rails [Rūdolfs Ošiņš]
* Fix Paypal Express response parser [Jonathan Rudenberg]
* Braintree/Transax: Add tax field [wisq]
== Version 1.12.1 (Mar 21, 2011)
* Ogone: Make sure response.params is a real Hash [Soleone]
* WorldPay: Fix service_url in production mode [Soleone]
== Version 1.12.0 (Mar 1, 2011)
* DirecPay: Send phone number as mobile phone by default [Soleone]
* Support sending line items for PayPal Express transactions [Jonathan Rudenberg]
* Update PayPal Express XML format to latest version [Jonathan Rudenberg]
* Fix custom image header for PayPal Express [mwagg]
* Add InvoiceID and OrderDescription to PayPal Express Authorize and Capture [cody]
* Add Moneybookers integration [Alex Diakov]
* Add QBMS (Quickbooks Merchant Services) gateway [ntalbott]
* Add NMI gateway [ntalbott]
* Make fully compatible with Rails 2 & 3, and Ruby 1.8 & 1.9 [ntalbott]
* Authorize.Net: Only return AVS message for AVS-related reason codes. [ntalbott]
* Add Federated Canada gateway [ntalbott]
* Garanti: Fix text normalization for nil values [Selem Delul]
* Valitor: Always send amount without any decimal places [Soleone]
* Add WorldPay integration [Soleone]
== Version 1.11.0 (Feb 11, 2011)
* Bump dependency for activesupport from 2.3.2 to 2.3.8 [Soleone]
* Garanti: Normalize text in xml fields for non-standard characters [Selem Delul]
* Garanti: Make sure order number does not contain illegal characters [Soleone]
* Fix ActionView tests for ActiveSupport 3.0.4 [Soleone]
* DirecPay: Make address information editable by default [Soleone]
* Fix ePDQ credit to expect and handle full authorization [Nathaniel Talbott]
* Add Barclays ePDQ Gateway [Nathaniel Talbott]
* Add default fixture for Garanti and don't use fixture for Garanti [cody]
* Add cms param for ePay [ePay]
* Add Valitor Integration [Nathaniel Talbott]
== Version 1.10.0 (Jan 20, 2011)
* PayPal Express: Support returning payer phone number [Soleone]
* Fix ePay to correctly send order number [Soleone]
* Add BluePay Gateway [Nathaniel Talbott]
* Add Quantum Gateway [Joshua Lippiner]
* Add iDEAL/Rabobank gateway [Jonathan Rudenberg]
* SagePayForm: Added send_email_confirmation (default false) to enable confirmation emails [wisq]
== Version 1.9.4 (Jan 5, 2011)
* Update Garanti gateway to integrate with new API [Selem Delul]
== Version 1.9.3 (December 17, 2010)
* Fix BBS Netaxept to change transaction type from C (for MOTO: mail order telephone order) to M (for credit card orders) [Soleone]
* Fix Iridium and ePay to work with any object that responds to credit card methods not only ActiveMerchant::CreditCard objects
== Version 1.9.2 (December 9, 2010)
* Add support for PayPal mobile payments [wisq]
* Add ePay gateway [ePay, Jonathan Rudenberg]
* Allow access to the raw HTTP response [Jonathan Rudenberg]
== Version 1.9.1 (November 24, 2010)
* PayPal Express and PayPal Pro: Send JPY currency correctly without decimals [Soleone]
* Netaxept: Make sure password (token) is URL escaped and update remote tests for updated server behavior [Soleone]
* DirecPay: Add support for additional options in Return class and add convenience method to get transaction status update [Soleone]
* Add new alias credit_card.brand for credit_card.type and handle the brand correctly in Netaxept [Soleone]
* Iridium: Do not depend on ExpiryDate class for credit_card [Soleone]
* PayFlow: Use same timeout of 60 seconds in HTTP header and XML for all requests [Soleone]
* PayPal Website Payments Pro CA no longer supports American Express cards [Soleone]
* Updated BIN ranges for Discover to match recent documents [kaunartist]
== Version 1.9.0 (October 14, 2010)
* Add support for DirecPay gateway [Soleone]
* Add SagePay Form integration gateway [wisq]
* Allow Return class to include a Notification for gateways that treat the direct response as a notification [wisq]
* Add support for PayboxDirect gateway [Donald Piret]
* Add support for SecureNet gateway [Kal]
* Add support for the Inspire gateway [ryan r. smith]
== Version 1.8.0 (September 24, 2010)
* PayPal Express: Add support for billing agreements [Nathaniel Talbott]
* Allow comparing countries [Nathaniel Talbott]
* Iridium: Fix country handling [Nathaniel Talbott]
* Iridium: Fix missing billing address [Nathaniel Talbott]
* Iridium: Do not pass CV2 if not present [Nathaniel Talbott]
* Add Iridium support [Phil Smy]
* Add Netaxept support [Nathaniel Talbott]
* PaymentExpress: Use Card Holder Help Text for the response message [Nathaniel Talbott]
* Sort the country name list [Duff OMelia]
== Version 1.7.3 (September 14, 2010)
* Fix SagePay special handling for Japanese YEN currency to not send fractional amounts [Soleone]
== Version 1.7.2 (August 27, 2010)
* Update Braintree integration to play nicely with the braintree 2.5.0 gem [Soleone]
* Fix SagePay to not send fractional amounts for Japanese YEN currency [Soleone]
== Version 1.7.1 (July 28, 2010)
* Pull in only the necessary components of Active Support. Enables use of ActiveMerchant with Rails 3 [railsjedi]