Skip to content

Commit

Permalink
1.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dyd committed Dec 4, 2023
1 parent 2843f55 commit 480611a
Show file tree
Hide file tree
Showing 88 changed files with 1,162 additions and 371 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
1.23.1
-----
**Features**:

* Added the following attributes support to the Google Pay transaction request:
* Notification Url
* Return Success Url
* Return Failure Url

1.23.0
-----
**Features**:

* Removed Recurring Type attribute support from the Web Payment Form transaction request
* Recurring Type is available for a definition like a Custom Attribute via addTransactionType('sale3d', ['recurring_type' => 'initial'])
* Removed Bank Payout Parameter constants

1.22.0
-----
**Features**:

* Added new required customer_id parameter to the Paysafecard transaction request.
* Updated Online Banking Payin transaction request bank codes for THB currency.
* Added support of new optional Return Success and Failure URL parameters to Sepa Direct Debit (SDD Sale) transaction request.
* Added Customer Attributes support to the Online Banking Payout transaction request.
* Added Bank Code parameter support to the Online Banking Payout transaction request.
* Refactored currency amount validations to throw an Invalid Argument exception when an invalid value is submitted.

1.21.12
-----
**Features**:
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -945,6 +945,9 @@ try {

// Desired Transaction Type
->addTransactionType('init_recurring_sale');
// Example: Recurring V2 available for following transaction types: sale, sale3d, authorize, authorize3d
// Recurring Type can have one value of 'initial' or 'managed'
// ->addTransactionType('sale', ['recurring_type' => 'initial']);

// Send the request
$genesis->execute();
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.21.12
1.23.1
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "genesisgateway/genesis_php",
"description": "PHP Client for Genesis Payment Processing Gateway",
"version": "1.21.12",
"version": "1.23.1",
"license": "MIT",
"keywords": [
"3ds_v2",
Expand Down
Loading

0 comments on commit 480611a

Please sign in to comment.