Skip to content

Commit 408f102

Browse files
authored
Release of 5.14.0 (#353)
1 parent 2becd93 commit 408f102

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

CHANGELOG.md

+13-8
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [5.14.0] - 2024-07-08
10+
### Added
11+
- PHPSDK-155: Throw ApiUnavailableException when API returns 501/503 HTTP codes
12+
- PHPSDK-156: Add getGatewayId in TransactionResponse class
13+
914
## [5.13.0] - 2024-04-16
1015
### Added
11-
+ PHPSDK-151: Update Gateways::SHOPPING_CART_REQUIRED_GATEWAYS adding 'BNPL_INST', 'IN3B2B', 'SANTANDER', 'ZINIA', 'ZINIA_IN3', 'BNPL_OB', 'BNPL_MF' gateways codes
16+
- PHPSDK-151: Update Gateways::SHOPPING_CART_REQUIRED_GATEWAYS adding 'BNPL_INST', 'IN3B2B', 'SANTANDER', 'ZINIA', 'ZINIA_IN3', 'BNPL_OB', 'BNPL_MF' gateways codes
1217

1318
## [5.12.1] - 2024-03-11
1419
### Fixed
15-
+ PHPSDK-146: Fix ApiException not being hinted as a thrown exception, even though it is, by fixing the PHP DocBlocks @throws tags
20+
- PHPSDK-146: Fix ApiException not being hinted as a thrown exception, even though it is, by fixing the PHP DocBlocks @throws tags
1621

1722
## [5.12.0] - 2023-12-01
1823
### Added
19-
+ PHPSDK-139: Add support to set var1, var2 and var3, within the OrderRequest object
20-
+ PHPSDK-140: Add support to set custom_info, within the OrderRequest object, thanks to @DaanDeSmedt
24+
- PHPSDK-139: Add support to set var1, var2 and var3, within the OrderRequest object
25+
- PHPSDK-140: Add support to set custom_info, within the OrderRequest object, thanks to @DaanDeSmedt
2126

2227
## [5.11.2] - 2023-10-13
2328
### Fixed
24-
+ PHPSDK-134: Fix errors when only reference is set, within the CustomerDetails object
29+
- PHPSDK-134: Fix errors when only reference is set, within the CustomerDetails object
2530

2631
### Changed
27-
+ PHPSDK-136: Remove PluginDetails as mandatory from the Order Request
32+
- PHPSDK-136: Remove PluginDetails as mandatory from the Order Request
2833

2934
## [5.11.1] - 2023-07-31
3035
### Added
@@ -88,10 +93,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8893

8994
## [5.5.0] - 2022-05-11
9095
### Added
91-
+ PHPSDK-90: Add MAESTRO tokens within the results of the CREDITCARD tokens request
96+
- PHPSDK-90: Add MAESTRO tokens within the results of the CREDITCARD tokens request
9297

9398
### Changed
94-
+ PHPSDK-91: Add trim on API key when initializing the SDK
99+
- PHPSDK-91: Add trim on API key when initializing the SDK
95100

96101
## [5.4.0] - 2021-11-30
97102
### Added

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "MultiSafepay PHP SDK",
44
"type": "library",
55
"license": "MIT",
6-
"version": "5.13.0",
6+
"version": "5.14.0",
77
"require": {
88
"php": "^7.2|^8.0",
99
"ext-json": "*",

src/Util/Version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818
class Version
1919
{
20-
public const SDK_VERSION = '5.13.0';
20+
public const SDK_VERSION = '5.14.0';
2121

2222
/**
2323
* @var Version

0 commit comments

Comments
 (0)