Skip to content

Commit

Permalink
Merge pull request #63 from Vantiv/11.4.8_merchantSdk_field_fix
Browse files Browse the repository at this point in the history
11.4.8 merchant sdk field fix
  • Loading branch information
vivek42 authored Aug 22, 2019
2 parents ec509b3 + 5528f71 commit 31eb769
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
= LitleOnline CHANGELOG

== Version 11.4.8 (August 22, 2019)
* BugFix: merchantSdk field in generated xml request is synced.

== Version 11.4.7 (August 15, 2019)
* BugFix: Fixed the masking of accountNumber
* Feature: Added neuterUserCredentials to mask the User credentials in logged XML
Expand Down
4 changes: 2 additions & 2 deletions LitleSdkForNet/LitleSdkForNet/LitleBatchRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1376,7 +1376,7 @@ public string generateXmlHeader()
xmlHeader += "sameDayFunding=\"" + sameDayFunding.ToString().ToLower() + "\"\r\n";
}

xmlHeader += "merchantSdk=\"DotNet;11.4.7\"\r\n";
xmlHeader += "merchantSdk=\"DotNet;11.4.8\"\r\n";

xmlHeader += "merchantId=\"" + config["merchantId"] + "\">\r\n";
return xmlHeader;
Expand Down Expand Up @@ -2826,4 +2826,4 @@ public class RFRResponse
public string message;
}

}
}
2 changes: 1 addition & 1 deletion LitleSdkForNet/LitleSdkForNet/LitleOnline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ private litleOnlineRequest CreateLitleOnlineRequest()
{
var request = new litleOnlineRequest();
request.merchantId = _config["merchantId"];
request.merchantSdk = "DotNet;11.4.7";
request.merchantSdk = "DotNet;11.4.8";
var authentication = new authentication();
authentication.password = _config["password"];
authentication.user = _config["username"];
Expand Down
4 changes: 2 additions & 2 deletions LitleSdkForNet/LitleSdkForNet/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("11.4.7")]
[assembly: AssemblyFileVersion("11.4.7")]
[assembly: AssemblyVersion("11.4.8")]
[assembly: AssemblyFileVersion("11.4.8")]
2 changes: 1 addition & 1 deletion LitleSdkForNet/LitleSdkForNetTest/Unit/TestBatchRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void testBatchRequestContainsMerchantSdkAttribute()
var actual = batchRequest.generateXmlHeader();
var expected = @"
<batchRequest id=""""
merchantSdk=""DotNet;11.4.7""
merchantSdk=""DotNet;11.4.8""
merchantId=""01234"">
";

Expand Down

0 comments on commit 31eb769

Please sign in to comment.