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