Skip to content

Commit

Permalink
Updates for v5.02
Browse files Browse the repository at this point in the history
* Fixed issue where `RecurringResponse` object was not returning all available values in the response.
* Added `SCAExemption`, `CitDate` and `VMaid` under the `Invoice` object to support Strong Customer Authentication.
  • Loading branch information
awesmdiver committed Apr 12, 2022
1 parent 596fc90 commit 4a823c3
Show file tree
Hide file tree
Showing 41 changed files with 1,756 additions and 472 deletions.
70 changes: 65 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore

## .NET Help Files
## .NET Help Files
dotNET/Payflow SDK Docs/Help/

# User-specific files
Expand All @@ -12,7 +12,6 @@ dotNET/Payflow SDK Docs/Help/
*.user
*.userosscache
*.sln.docstates
workspace.xml

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
Expand All @@ -27,6 +26,7 @@ mono_crash.*
[Rr]eleases/
x64/
x86/
[Ww][Ii][Nn]32/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
Expand Down Expand Up @@ -65,6 +65,9 @@ project.lock.json
project.fragment.lock.json
artifacts/

# ASP.NET Scaffolding
ScaffoldingReadMe.txt

# StyleCop
StyleCopReport.xml

Expand All @@ -90,6 +93,7 @@ StyleCopReport.xml
*.tmp_proj
*_wpftmp.csproj
*.log
*.tlog
*.vspscc
*.vssscc
.builds
Expand Down Expand Up @@ -141,6 +145,11 @@ _TeamCity*
.axoCover/*
!.axoCover/settings.json

# Coverlet is a free, cross platform Code Coverage Tool
coverage*.json
coverage*.xml
coverage*.info

# Visual Studio code coverage results
*.coverage
*.coveragexml
Expand Down Expand Up @@ -288,6 +297,17 @@ node_modules/
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw

# Visual Studio 6 auto-generated project file (contains which files were open etc.)
*.vbp

# Visual Studio 6 workspace and project file (working project files containing files to include in project)
*.dsw
*.dsp

# Visual Studio 6 technical files
*.ncb
*.aps

# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
Expand Down Expand Up @@ -344,6 +364,9 @@ ASALocalRun/
# Local History for Visual Studio
.localhistory/

# Visual Studio History (VSHistory) files
.vshistory/

# BeatPulse healthcheck temp database
healthchecksdb

Expand All @@ -352,5 +375,42 @@ MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/
/dotNET/SamplesCS/src/PayPal/Payments/Samples/CS/DataObjects/BasicTransactions/DOTest.cs
/dotNET/SamplesVB/src/PayPal/Payments/Samples/VB/DataObjects/BasicTransactions/DOTest.vb

# Fody - auto-generated XML schema
FodyWeavers.xsd

# VS Code files for those working on multiple tools
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace

# Local History for Visual Studio Code
.history/

# Windows Installer files from build outputs
*.cab
*.msi
*.msix
*.msm
*.msp

# JetBrains Rider
*.sln.iml
© 2022 GitHub, Inc.
Terms
Privacy
Security
Status
Docs
Contact GitHub
Pricing
API
Training
Blog
About

# Ignore built Help directory and files
dotNET/Payflow SDK Docs/Help/*
6 changes: 6 additions & 0 deletions dotNET/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 5.0.2 (2022-03-30)

#### Changes
* Fixed issue where `RecurringResponse` object was not returning all available values in the response.
* Added `SCAExemption`, `CitDate` and `VMaid` under the `Invoice` object to support Strong Customer Authentication.

## 5.0.0 (2020-09-13)

### IMPORTANT: </p>THIS VERSION IS NOT 100% COMPATIBLE WITH OLDER VERSIONS AS SOME OF THE OBJECTS AND THEIR LOCATIONS HAVE MOVED.
Expand Down
2 changes: 1 addition & 1 deletion dotNET/PFProSDK/PFProSDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<StartupObject />
<FileUpgradeFlags>
</FileUpgradeFlags>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<OldToolsVersion>0.0</OldToolsVersion>
Expand Down
6 changes: 3 additions & 3 deletions dotNET/PFProSDK/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("PayPal Inc.")]
[assembly: AssemblyProduct("Payflow_dotNET.dll")]
[assembly: AssemblyCopyright("Copyright 2020 PayPal Inc.")]
[assembly: AssemblyCopyright("")]
[assembly: AssemblyTrademark("Payflow")]
[assembly: AssemblyCulture("")]

Expand All @@ -29,5 +29,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("5.0.0.0")]
[assembly: AssemblyFileVersion("5.0.0.0")]
[assembly: AssemblyVersion("5.0.2.0")]
[assembly: AssemblyFileVersion("5.0.2.0")]
Loading

0 comments on commit 4a823c3

Please sign in to comment.