-
Notifications
You must be signed in to change notification settings - Fork 0
/
RELEASE-NOTES.txt
69 lines (51 loc) · 3.07 KB
/
RELEASE-NOTES.txt
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
v4.3.0
- Add PaymentMethod to transaction status details
v4.2.0
- Add GooglePay and ApplePay support
v4.1.0
- Downgrade to .NET Standard 2.0 to support .NET Framework
v4.0.0
- Adding required initiator parameter introduced by the TBC regulation: When the merchant has to cut a certain amount from the client on any given date without the client's approval, it is necessary for the merchant to add an additional parameter (initiator = merchant)
- Adding 'RegisterPreAuthorizationAndGetReoccuringPaymentId' method (command "d").
- Adding 'ExecuteReoccurringPreAuthorizationAsync()' method (command "f").
- Note: Pre-authorization is the temporary amount blocking operation, which must be followed by a pre-authorization confirmation ('ExecutePreAuthorizationAsync()', command "t") or reversal operation ('ReverseTransactionAsync()', command "r"). In case none of them follow, the system by default will automatically delete the blocked amount after 30 working days. The block period is regulated by the card issuer (Issuer Bank). Pre-authorization can only be completed within 30 working days, follow the next commands to clarify.
v3.2.0
- Optimize HTTP connection creation. Use singleton HttpClient per merchant
v3.1.0
- Use command="p" instead of command="z" when the amount is 0 to conform to MasterCard regulations
v3.0.0
- Added possibility to configure multiple merchants
- Added integration with ASP.NET Core dependency injection
v2.5.0
- Add legacy environment called LegacyProduction for merchants using old host securepay.ufc.ge
v2.4.0
- Fix IsError and ErrorMessage values when exception occurs
v2.3.0
- Fixed biller client response processing due to UFC adding "_oc" suffix to response.
v2.2.0
- Fix transaction state value for transactions when error is returned from server. Show Failed instead of unknown.
v2.1.0
- Added transaction state in CheckTransactionResult with the following possible values (Pending, Succeeded, Failed)
v2.0.0 [**Breaking**]
- Renamed operation result class names from Response To Result suffix
- Do not throw exception for HTTP communication problems, insted return Exception in a result as a property
- Return HTTP request URL in the result as a property
- Return HTTP request post params query string in the result as a property
v1.5.0
- Fixed error success checks
v1.4.0 [**Breaking**]
- Fixed ReocurringPaymentExpiry year value.
- Pass in description value to ExecuteCreditTransaction mthod call
- **Breaking** Renamed ExecuteCreditTransaction to ExecuteCreditTransactionAsync
- **Breaking** Renamed CloseBusinessDay to CloseBusinessDayAsync
v1.3.0
- Added CloseBusinessDay operation (command=p).
- Added RegisterTransactionAndGetReoccuringPaymentIdWithoutCharge operation (command=p).
- Fixed success check for Reversal and Refund operations.
- ReocurringPaymentExpiry property of CheckTransactionResultResponse is now set to the last day of the month rather than the first day.
v1.2.0
[Unreleased]
v1.1.0
- Bug fixes.
v1.0.0
- Initial release.