Skip to content

Commit

Permalink
Merge branch 'master' of github.com:yireo/Yireo_TaxRatesManager2
Browse files Browse the repository at this point in the history
  • Loading branch information
jissereitsma committed Oct 24, 2024
2 parents ec4ca16 + 2ad147b commit 5694ab3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.2.10] - 24 October 2024
## [1.2.11] - 24 October 2024
### Fixed
- Add funding

## [1.2.10] - 2 October 2024
### Fixed
- Send mail by using the configured email address

## [1.2.9] - 9 April 2024
### Fixed
- Fix calling Rate class in the Add action #2 @se-viacheslav
Expand Down
2 changes: 1 addition & 1 deletion Cron/CheckRunner.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public function execute(): bool
private function sendMail(string $contents)
{
$name = $this->scopeConfig->getValue('trans_email/ident_support/name');
$email = $this->scopeConfig->getValue('trans_email/ident_support/email');
$email = $this->config->email();

$templateParams = [];
$templateParams['output'] = $contents;
Expand Down
2 changes: 1 addition & 1 deletion Observer/Backend/Controller/ActionPredispatch.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function execute(
return $this;
}

$controllerName = $this->request->getControllerName(); // @phpstan-ignore-line
$controllerName = $this->request->getControllerName();
if ($controllerName !== 'rate') {
return $this;
}
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "yireo/magento2-taxratesmanager2",
"license": "OSL-3.0",
"type": "magento2-module",
"version": "1.2.10",
"version": "1.2.11",
"homepage": "https://www.yireo.com/software/magento-extensions/taxratesmanager2",
"description": "Manage EU VAT rates automatically",
"keywords": [
Expand Down

0 comments on commit 5694ab3

Please sign in to comment.