Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

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

## [3.5.5] - 2025-02-24

- Add `RequestToPay` webhook type in whitelist

## [3.5.4] - 2024-05-31

- Add a link to our online CMS documentation
Expand Down
1 change: 1 addition & 0 deletions Controller/WebhookAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ abstract class WebhookAbstract implements CsrfAwareActionInterface
'Refund',
'BuyNowPayLater',
'ManualTransfer',
'RequestToPay'
];

public function __construct(
Expand Down
2 changes: 1 addition & 1 deletion Gateway/Config/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class Config extends BaseConfig
{
const CODE = 'fintecture';
const VERSION = '3.5.4';
const VERSION = '3.5.5';

const KEY_SHOP_NAME = 'general/store_information/name';
const KEY_ACTIVE = 'active';
Expand Down
4 changes: 2 additions & 2 deletions Model/Cache/Type.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ class Type extends \Magento\Framework\Cache\Frontend\Decorator\TagScope
/**
* @param \Magento\Framework\App\Cache\Type\FrontendPool $cacheFrontendPool
*/
public function __construct(\Magento\Framework\App\Cache\Type\FrontendPool $cacheFrontendPool
) {
public function __construct(\Magento\Framework\App\Cache\Type\FrontendPool $cacheFrontendPool)
{
parent::__construct(
$cacheFrontendPool->get(self::TYPE_IDENTIFIER),
self::CACHE_TAG
Expand Down
2 changes: 1 addition & 1 deletion Setup/Patch/Data/RemoveFintectureBankTypeConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ public function getAliases()

public static function getVersion(): string
{
return '3.5.4';
return '3.5.5';
}
}
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"email": "contact@fintecture.com"
},
"type": "magento2-module",
"version": "3.5.4",
"version": "3.5.5",
"license": [
"GPL-3.0"
],
Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Fintecture_Payment" setup_version="3.5.4">
<module name="Fintecture_Payment" setup_version="3.5.5">
<sequence>
<module name="Magento_Sales"/>
<module name="Magento_Payment"/>
Expand Down
1 change: 1 addition & 0 deletions tests/Model/BankTypeTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* 2020 Fintecture SAS
*
Expand Down