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