Skip to content

Commit 6634814

Browse files
committed
1.74.2 (FINAL RELEASE)
1 parent fbc887a commit 6634814

File tree

5 files changed

+17
-2
lines changed

5 files changed

+17
-2
lines changed

Model/ChangeTracker/PartManager.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ public function getListingProductParts(): \Generator
5353

5454
if ($batchCounter % self::PART_BATCH_SIZE === 0) {
5555
yield $this->createPart($batch);
56+
$batch = [];
5657
}
5758
}
5859

Model/Setup/Upgrader.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ class Upgrader
225225
'1.72.2' => ['1.73.0'],
226226
'1.73.0' => ['1.74.0'],
227227
'1.74.0' => ['1.74.1'],
228+
'1.74.1' => ['1.74.2'],
228229
];
229230

230231
//########################################
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace Ess\M2ePro\Setup\Upgrade\v1_74_1__v1_74_2;
6+
7+
class Config extends \Ess\M2ePro\Model\Setup\Upgrade\Entity\AbstractConfig
8+
{
9+
public function getFeaturesList(): array
10+
{
11+
return [];
12+
}
13+
}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "m2e/ebay-amazon-magento2",
33
"description": "M2E Pro is a Magento trusted (TM), award-winning extension, which allows merchants of all sizes to fully integrate Magento based system(s) into eBay/Amazon/Walmart platforms.",
44
"type": "magento2-module",
5-
"version": "1.74.1",
5+
"version": "1.74.2",
66
"license": "proprietary",
77
"keywords": ["ebay", "amazon", "walmart", "magento"],
88
"homepage": "https://m2epro.com/",

etc/module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
55

6-
<module name="Ess_M2ePro" setup_version="1.74.1">
6+
<module name="Ess_M2ePro" setup_version="1.74.2">
77
<sequence>
88
<module name="Magento_Backend" />
99
<module name="Magento_Catalog" />

0 commit comments

Comments
 (0)