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