Skip to content
This repository has been archived by the owner on Jan 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #123 from heidelpay/develop
Browse files Browse the repository at this point in the history
Version 1.1.1
  • Loading branch information
Ryouzanpaku authored Feb 18, 2021
2 parents f8ecc08 + 4e6a32f commit 59906e1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
7 changes: 2 additions & 5 deletions Block/System/Config/WebhooksButtons.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
use Magento\Framework\Data\Form\Element\AbstractElement;
use Magento\Framework\Exception\LocalizedException;
use Magento\Framework\Exception\NoSuchEntityException;
use Magento\Framework\View\Helper\SecureHtmlRenderer;
use Magento\Store\Model\StoreManagerInterface;
use Zend_Json;

Expand Down Expand Up @@ -56,17 +55,15 @@ class WebhooksButtons extends Field
* @param RequestInterface $request
* @param StoreManagerInterface $storeManager
* @param array $data
* @param SecureHtmlRenderer|null $secureRenderer
*/
public function __construct(
Context $context,
RequestInterface $request,
StoreManagerInterface $storeManager,
array $data = [],
?SecureHtmlRenderer $secureRenderer = null
array $data = []
)
{
parent::__construct($context, $data, $secureRenderer);
parent::__construct($context, $data);

$this->_request = $request;
$this->_storeManager = $storeManager;
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [1.1.1][1.1.1]
### Fix
* Incompatibility with magento 2.3.x causing DI compilation to fail.

## [1.1.0][1.1.0]
### Added
Expand All @@ -27,3 +30,4 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
[1.0.1]: https://github.com/heidelpay/magento2-merchant-gateway/compare/1.0.0..1.0.1
[1.0.2]: https://github.com/heidelpay/magento2-merchant-gateway/compare/1.0.1..1.0.2
[1.1.0]: https://github.com/heidelpay/magento2-merchant-gateway/compare/1.0.2..1.1.0
[1.1.1]: https://github.com/heidelpay/magento2-merchant-gateway/compare/1.1.0..1.1.1
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="../../../../../lib/internal/Magento/Framework/Module/etc/module.xsd">
<module name="Heidelpay_MGW" schema_version="1.1.0" setup_version="1.1.0">
<module name="Heidelpay_MGW" schema_version="1.1.1" setup_version="1.1.1">
<sequence>
<module name="Magento_Checkout"/>
<module name="Magento_Config" />
Expand Down

0 comments on commit 59906e1

Please sign in to comment.