Skip to content

Commit 85c7559

Browse files
Merge pull request #95 from QuentinFintecture/3.5.5
3.5.5
2 parents 2f7ae61 + a471580 commit 85c7559

File tree

8 files changed

+12
-6
lines changed

8 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66

7+
## [3.5.5] - 2025-02-24
8+
9+
- Add `RequestToPay` webhook type in whitelist
10+
711
## [3.5.4] - 2024-05-31
812

913
- Add a link to our online CMS documentation

Controller/WebhookAbstract.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ abstract class WebhookAbstract implements CsrfAwareActionInterface
5252
'Refund',
5353
'BuyNowPayLater',
5454
'ManualTransfer',
55+
'RequestToPay'
5556
];
5657

5758
public function __construct(

Gateway/Config/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class Config extends BaseConfig
88
{
99
const CODE = 'fintecture';
10-
const VERSION = '3.5.4';
10+
const VERSION = '3.5.5';
1111

1212
const KEY_SHOP_NAME = 'general/store_information/name';
1313
const KEY_ACTIVE = 'active';

Model/Cache/Type.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ class Type extends \Magento\Framework\Cache\Frontend\Decorator\TagScope
1212
/**
1313
* @param \Magento\Framework\App\Cache\Type\FrontendPool $cacheFrontendPool
1414
*/
15-
public function __construct(\Magento\Framework\App\Cache\Type\FrontendPool $cacheFrontendPool
16-
) {
15+
public function __construct(\Magento\Framework\App\Cache\Type\FrontendPool $cacheFrontendPool)
16+
{
1717
parent::__construct(
1818
$cacheFrontendPool->get(self::TYPE_IDENTIFIER),
1919
self::CACHE_TAG

Setup/Patch/Data/RemoveFintectureBankTypeConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ public function getAliases()
4343

4444
public static function getVersion(): string
4545
{
46-
return '3.5.4';
46+
return '3.5.5';
4747
}
4848
}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"email": "contact@fintecture.com"
88
},
99
"type": "magento2-module",
10-
"version": "3.5.4",
10+
"version": "3.5.5",
1111
"license": [
1212
"GPL-3.0"
1313
],

etc/module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
4-
<module name="Fintecture_Payment" setup_version="3.5.4">
4+
<module name="Fintecture_Payment" setup_version="3.5.5">
55
<sequence>
66
<module name="Magento_Sales"/>
77
<module name="Magento_Payment"/>

tests/Model/BankTypeTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* 2020 Fintecture SAS
45
*

0 commit comments

Comments
 (0)