Skip to content

Commit c341a6b

Browse files
authored
Merge pull request #4 from team23/dev/FIX-TRANSPORT-BUILDER
Fix transport builder dependency
2 parents eeeeaf7 + 1127ea1 commit c341a6b

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [2.2.2] - 2024-07-18
9+
10+
### Fixed
11+
12+
- Fix transport builder
13+
814
## [2.2.1] - 2024-07-08
915

1016
### Fixed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "team23/module-email-attachments",
33
"description": "Attach different files to transaction mails",
44
"type": "magento2-component",
5-
"version": "2.2.1",
5+
"version": "2.2.2",
66
"license": ["BSD-3-Clause"],
77
"authors": [
88
{

src/module-email-attachments-admin-ui/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "team23/module-email-attachments-admin-ui",
33
"description": "Attach different files to transaction mails.",
4-
"version": "2.2.1",
4+
"version": "2.2.2",
55
"type": "magento2-module",
66
"license": ["BSD-3-Clause"],
77
"authors": [

src/module-email-attachments-api/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "team23/module-email-attachments-api",
33
"description": "Attach different files to transaction mails",
4-
"version": "2.2.1",
4+
"version": "2.2.2",
55
"type": "magento2-module",
66
"license": ["BSD-3-Clause"],
77
"authors": [

src/module-email-attachments/Model/Order/Email/SenderBuilder.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class SenderBuilder extends \Magento\Sales\Model\Order\Email\SenderBuilder
2424
*
2525
* @param Template $templateContainer
2626
* @param IdentityInterface $identityContainer
27-
* @param \Magento\Framework\Mail\Template\TransportBuilder $transportBuilder
27+
* @param TransportBuilder $transportBuilder
2828
* @param File $fileDriver
2929
* @param FileInfo $fileInfo
3030
* @param GetAttachmentsInterface $getAttachments
@@ -33,7 +33,7 @@ class SenderBuilder extends \Magento\Sales\Model\Order\Email\SenderBuilder
3333
public function __construct(
3434
Template $templateContainer,
3535
IdentityInterface $identityContainer,
36-
\Magento\Framework\Mail\Template\TransportBuilder $transportBuilder,
36+
TransportBuilder $transportBuilder,
3737
private readonly File $fileDriver,
3838
private readonly FileInfo $fileInfo,
3939
private readonly GetAttachmentsInterface $getAttachments,

src/module-email-attachments/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "team23/module-email-attachments",
33
"description": "Attach different files to transaction mails.",
4-
"version": "2.2.1",
4+
"version": "2.2.2",
55
"type": "magento2-module",
66
"license": ["BSD-3-Clause"],
77
"authors": [

0 commit comments

Comments
 (0)