Skip to content

Commit

Permalink
OctopusDeploy release: 13.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
securesubmit-buildmaster committed Nov 7, 2024
1 parent fe6d4f3 commit 9f99d3f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@

# Changelog

## Latest Version - v13.0.3 (10/15/24)
## Latest Version - v13.0.4 (11/06/24)
### Enhancements:
- [Portico] Added 'GatewayTxnId' value to GatewayException message when available

## v13.0.3 (10/15/24)
### Enhancements:
- [Portico] Added support for 'CreditIncrementalAuth' transaction type

## Latest Version - v13.0.2 (10/03/24)
## v13.0.2 (10/03/24)
### Enhancements:
- [Portico] Added support for 'CardHolderPhone' element
- [GP-API] Update 3DS Object fields in transaction endpoint ("server_trans_ref" and "ds_trans_ref")
Expand Down
2 changes: 1 addition & 1 deletion metadata.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<xml>
<releaseNumber>13.0.3</releaseNumber>
<releaseNumber>13.0.4</releaseNumber>
</xml>
4 changes: 4 additions & 0 deletions src/Gateways/PorticoConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -1309,6 +1309,10 @@ protected function mapResponse($rawResponse, BaseBuilder $builder, $request)
$gatewayRspText = (string)$root->Header->GatewayRspMsg;

if (!in_array($gatewayRspCode, $acceptedCodes)) {

if (!empty($root->Header->GatewayTxnId))
$gatewayRspText .= '. GatewayTxnId: ' . $root->Header->GatewayTxnId;

throw new GatewayException(
sprintf(
'Unexpected Gateway Response: %s - %s. ',
Expand Down

0 comments on commit 9f99d3f

Please sign in to comment.