3.03
[Business-OnlinePayment.git] / Changes
1 Revision history for Perl extension Business::OnlinePayment.
2
3 3.03    Tue Apr 29 11:14:25 PDT 2014
4         - Document Reverse Authorization action
5         - Document expiration is MM/YY and fix the example
6         - Document repository moved from CVS to git
7         - Add avs_code and cvv2_response to build_subs, they're standard fields
8         - Document best-practice eval of the submit() method in example
9         - Rework build_subs(), thanks to Michal Schwern, closes: CPAN#22073
10
11 3.02    Fri Aug 19 16:20:04 PDT 2011
12         - Fix fatal error calling ->info('supported_actions') on a gateway that
13           does not yet support introspection (e.g. AuthorizeNet)
14         - Fix introspection with a complicated supported_actions
15         - Documentation fix for recurring_billing flag
16         - Add optional transaction field to documentation: currency
17         - Fix spelling mistake in preCharge.pm POD, thanks to gregor herrmann,
18           Closes: CPAN#69647
19
20 3.01    Wed Jul 14 13:54:57 PDT 2010
21         - Add optional transaction fields to documentation: tax, freight,
22           duty, tax_exempt, po_number.
23         - Add return fields to documentation: order_number, avs_code,
24           cvv2_response, response_code, response_headers, response_page.
25         - Add beginning of introspection interface for processor modules.
26         - Add electronic check fields to documentation: bank_city, bank_state
27         - Add clarification to notes_for_module_writers_v3 on authorization vs.
28           order_number
29         - (3.01_03) Add ECHECK_void_requires_account to introspection
30         - (3.01_04) Refactor most of the B:OP:HTTPS code out to Net:HTTPS::Any
31         - (3.01_04) Add card_token documentation.  Add token_support to
32           introspection.
33
34 3.00     Mon Aug 17 15:55:11 PDT 2009
35         - It finally happened.
36         - doc: add repo info
37
38 3.00_09  Mon Jul 21 20:44:08 PDT 2008
39         - doc: Allowable values of account_type
40         - doc: Recurring billing actions and fields
41         - doc: new standard fields track1, track2, patch from Chris Travers,
42           thanks!
43         - B:OP:HTTPS: Normalize https_get and https_post response_code to
44           "NNN message" without HTTP version even when using Net::SSLeay.
45
46 3.00_08  Wed Jun 13 17:51:14 PDT 2007
47         - B:OP:HTTPS: set response_page, response_code, response_headers
48         - B:OP:HTTPS: Normalize https_post (and debugging) response_code to
49           "NNN message" even when using LWP/Crypt::SSLeay.
50         - B:OP: defined &$class is not how you detect if a class has been loaded
51           (just using use should be fine).  Closes: CPAN#22071
52         - Enable retrieval of fraud transaction score and transaction ID,
53           B:OP and B:FD:preCharge patch from Jason Hall, thanks!
54
55 3.00_07  Fri Mar 23 14:54:57 PDT 2007
56         - B:OP:HTTPS request headers now work with Crypt::SSLeay too.
57
58 3.00_06  Tue Mar 13 12:26:04 PDT 2007
59         - B:OP:HTTPS: add optional \%options (options hashref) to
60           https_get and https_post to allow modules using this to set
61           headers, etc. required for PayflowPro HTTP protocol support
62         - B:OP:HTTPS: support setting Net::SSLeay "$mime_type6" argument
63         - B:OP:HTTPS: pass $DEBUG value to $Net::SSLeay::trace (debug control)
64         - new() now passes %data (processor data) to set_defaults
65         - update B:OP:HTTPS to allow setting request headers
66         - doc: list a bunch of previously undocumented fields
67
68 3.00_05  29 Nov 2006
69         - Update Makefile.PL so Business::FraudDetect::preCharge is installed,
70           included by make dist, etc.
71         - Phil Lobbes is responsible for the rest of the work in this release.
72           Thanks!
73           - Reworked _pre_submit functionality:
74             - Add Class data %WrappedSubmitClassMethod to remember "wrapped"
75               submit 
76             - Fix new() to check %WrappedSubmitClassMethod to avoid creating
77               deep recursion 
78             - Used feedback from MSCHWERN / Bug #22074 to cleanup
79               new/_pre_submit more
80             - Now always wrap submit() method with _pre_submit() (but only
81               once)
82             - no longer populate _child_submit, code in anon sub was cleaned
83               up
84             - use return values from _pre_submit to determine if real submit
85               is called.  the return values from _pre_submit should be
86               reviewed/verified still
87             - _risk_detect(): explicity set return value
88             - _pre_submit(): explicity set return value
89           - Updated tests:
90             - 8 new tests and 1 new "MOCK3" driver for testing _pre_submit()
91               functionality
92             - test for new() replacing subclass submit and causing deep
93               recursion
94             - minor cleanup of test drivers
95             - fix "submit unchanged" test case: now wrapped with _pre_submit()
96               always
97           - Updated POD documentation:
98             - Minor documentation change in print statements use ',' instead
99               of '.'         
100
101 3.00_04  Tue Oct 10 12:49:43 PDT 2006
102         - failure statues (see notes_for_module_writers_v3)
103         - oops, forgot _03 changelog in _03
104         - B:OP:HTTPS: require Net::SSLeay 1.30 and remove _my_https_post kludge
105         - eliminate warnings about redefined subroutines
106         - Business::FraudDetect and Business::FraudDetect::preCharge included
107         - From Phil Lobbes:
108           - content() now returns empty hash if no content is defined
109           - build_subs now uses can() so it doesn't redefine subs (and generate
110             warnings)
111           - DOC: SYNOPSIS now uses correct "card_number" and not "cardnumber"
112           - created test cases for (all?) methods except _risk_detect
113             _pre_submit 
114           - Removed some old commented out 2.x statements
115           - set $VERSION using eval per modperlstyle
116           - new() now will strip off multiple leading dashes before calling
117             build_subs
118             NOTE: we should probably have it remove any \W to make perl happy
119           - required_fields() now croaks with a list of missing fields
120           - Lots of general cleanup, no functional changes. "fill
121             paragraphs" in POD, remove extra whitespace, sorted %fields,
122             dump_contents now sorts %contents, added myself to AUTHORS.
123         - From Frederic Briere (closes: CPAN#21082):
124           - DOC: s/exp_date/expiration/ 
125
126 3.00_03  Wed Mar 16 02:41:59 PST 2005
127         - https_post now accepts a scalar of raw content instead of key value
128           pairs
129
130 3.00_02  Mon Jan 10 21:36:53 PST 2005
131         - HTTPS base class now has https_post in addition to https_get
132
133 3.00_01  Thu Aug 26 04:49:26 2004
134         - first of the v3 dev releases
135
136 0.01  Sun Jul 25 13:59:10 1999
137         - original version; created by h2xs 1.19
138