Skip to content

Commit 9b597da

Browse files
committed
1.74.3 (FINAL RELEASE)
1 parent 6634814 commit 9b597da

File tree

5 files changed

+17
-3
lines changed

5 files changed

+17
-3
lines changed

Model/Amazon/Account.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ public function getMagentoOrdersListingsCreateFromDateOrAccountCreateDate(): \Da
592592
public function getMagentoOrdersListingsCreateFromDate(): ?\DateTime
593593
{
594594
$date = $this->getSetting('magento_orders_settings', ['listing', 'create_from_date']);
595-
if ($date === null) {
595+
if (empty($date)) {
596596
return null;
597597
}
598598

Model/Setup/Upgrader.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ class Upgrader
226226
'1.73.0' => ['1.74.0'],
227227
'1.74.0' => ['1.74.1'],
228228
'1.74.1' => ['1.74.2'],
229+
'1.74.2' => ['1.74.3'],
229230
];
230231

231232
//########################################
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_2__v1_74_3;
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.2",
5+
"version": "1.74.3",
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.2">
6+
<module name="Ess_M2ePro" setup_version="1.74.3">
77
<sequence>
88
<module name="Magento_Backend" />
99
<module name="Magento_Catalog" />

0 commit comments

Comments
 (0)