Skip to content

Commit 0af072d

Browse files
authored
Release of 5.1.0
1 parent 1594510 commit 0af072d

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [5.1.0] - 2021-06-01
10+
### Changed
11+
- Deprecation of duplicate method TransactionResponse->getPaymentLink().
12+
13+
### Added
14+
- Add support for [API token endpoint](https://docs.multisafepay.com/api/#generate-an-api-token)
15+
- Add class ShippingItem in OrderRequest which can be used for simpler way to specify a shipping item in the [shopping cart](https://docs.multisafepay.com/api/#shopping-cart-items)
16+
- Add [POST notification validation](https://docs.multisafepay.com/faq/api/notification-url/#validating-post-notifications)
17+
18+
### Fixed
19+
- Fix bug when requesting transaction details for an order registered without a ShoppingCart returning InvalidArgumentException with clear error message
20+
921
## [5.0.1] - 2021-03-11
1022
### Changed
1123
- getGateways will now include all merchant enabled gift cards by default

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.0.1",
6+
"version": "5.1.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-
const SDK_VERSION = '5.0.1';
20+
const SDK_VERSION = '5.1.0';
2121

2222
/**
2323
* @var Version

0 commit comments

Comments
 (0)