Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 25 additions & 24 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
pull_request:
branches:
- master
workflow_dispatch:

env:
# Setting an environment variable with the value of a configuration variable
Expand All @@ -17,11 +18,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 7.x.x
dotnet-version: 8.x.x
- name: build
run: |
./build.sh --target=restore
Expand All @@ -31,32 +32,32 @@ jobs:

siftDotNetIntegrationTest:
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/master' }}
if: ${{ github.ref == 'refs/heads/master' || github.event_name == 'workflow_dispatch' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 7.x.x
dotnet-version: 8.x.x
- name: siftDotNetIntegrationTest
run: |
./build.sh --target=restore
./build.sh --target=generate
./build.sh --target=build
./build.sh --target=testNet7 --filter=Account
./build.sh --target=testNet7 --filter=Cart
./build.sh --target=testNet7 --filter=Chargebacks
./build.sh --target=testNet7 --filter=Contents
./build.sh --target=testNet7 --filter=LoginLogout
./build.sh --target=testNet7 --filter=Notifications
./build.sh --target=testNet7 --filter=Order
./build.sh --target=testNet7 --filter=Passwords
./build.sh --target=testNet7 --filter=Promotions
./build.sh --target=testNet7 --filter=Sessions
./build.sh --target=testNet7 --filter=Transactions
./build.sh --target=testNet7 --filter=Verifications
./build.sh --target=testNet7 --filter=DecisionsRequests
./build.sh --target=testNet7 --filter=Labels
./build.sh --target=testNet7 --filter=MerchantRequests
./build.sh --target=testNet7 --filter=Scores
./build.sh --target=testNet7 --filter=VerificationsRequests
./build.sh --target=testNet --filter=Account
./build.sh --target=testNet --filter=Cart
./build.sh --target=testNet --filter=Chargebacks
./build.sh --target=testNet --filter=Contents
./build.sh --target=testNet --filter=LoginLogout
./build.sh --target=testNet --filter=Notifications
./build.sh --target=testNet --filter=Order
./build.sh --target=testNet --filter=Passwords
./build.sh --target=testNet --filter=Promotions
./build.sh --target=testNet --filter=Sessions
./build.sh --target=testNet --filter=Transactions
./build.sh --target=testNet --filter=Verifications
./build.sh --target=testNet --filter=DecisionsRequests
./build.sh --target=testNet --filter=Labels
./build.sh --target=testNet --filter=MerchantRequests
./build.sh --target=testNet --filter=Scores
./build.sh --target=testNet --filter=VerificationsRequests
12 changes: 5 additions & 7 deletions .github/workflows/publishing2NuGet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,15 @@ jobs:
SOLUTION: 'Sift.sln'
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup NuGet
uses: NuGet/[email protected]
- uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v5
with:
dotnet-version: 7.x.x
dotnet-version: 8.x.x
- name: Build
run: |
dotnet --info
dotnet --info
echo $GITHUB_REF_NAME
bash -x ./build.sh --target=pack
- name: Publish
run: nuget push artifacts\Sift*.nupkg -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}}
run: dotnet nuget push artifacts\Sift*.nupkg --source 'https://api.nuget.org/v3/index.json' --api-key ${{secrets.NUGET_API_KEY}}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ tarballs/
test-results/
Thumbs.db
.vs/
.idea/

# mac bundle stuff
*.dmg
Expand Down
74 changes: 74 additions & 0 deletions CHANGES.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# CHANGES

## 1.6.0 (2025-10-18)

### NuGet Package Updates
- Bumped `Newtonsoft.Json` from `13.0.2` to `13.0.4`
- Bumped `System.ComponentModel.Annotations` from `4.5.0` to `5.0.0`

### Breaking Changes
- **`$iata_carrier_code`** moved from `Booking` to `Segment` complex type (API v205 compliance)

### Added
- **`$exchange_rate`** field support in `$create_order`, `$update_order`, `$transaction`, `$wager` events and `$booking`, `$item`, `$discount` complex types
- **`$card_bin_metadata`** field in `$payment_method` complex type
- **`$promotions`** field in `$update_account` event
- **`$iata_carrier_code`** field in `Segment` complex type
- Apple Silicon (ARM64) native support (`osx-arm64` runtime)
- .NET 8.0 support (migrated integration tests from .NET 7)
- Comprehensive integration test coverage for all new fields

### Changed
- Renamed `Test.Integration.Net7` to `Test.Integration.Net` (targeting .NET 8.0)

## 1.5.0 (2024-12-24)

### Added
- iGaming Events API support
- New event type `$wager`
- Extra fields for `$deposit` and `$withdrawal` Transactions

## 1.4.0 (2024-09-27)

### Added
- Support for `$iata_carrier_code` field in `$booking` complex field

## 1.3.0 (2024-06-18)

### Added
- Warnings to Event Response

## 1.2.0 (2023-12-22)

### Fixed
- PSP Merchants API fixes

## 1.1.0 (2023-10-20)

### Added
- Score percentiles support in Score API

## 1.0.0 (2023-09-01)

### Changed
- Updates in Verification API (breaking changes - see README for examples)

## 0.13.0 (2023-08-31)

### Added
- Initial public release

## 0.12.0 (2023-08-28)

### Added
- Pre-release features

## 0.11.0-beta (2023-02-10)

### Added
- Beta release

## 0.10.1-beta (2022-12-05)

### Added
- Beta release
Loading
Loading