Skip to content

Commit

Permalink
Merge pull request #1470 from mailchimp/Version-101.2.46
Browse files Browse the repository at this point in the history
new version 101.2.46 for magento 2.2
  • Loading branch information
gonzaloebiz authored Jul 19, 2022
2 parents 5b403bf + 859a3f0 commit 450a93e
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

## [101.2.46](https://github.com/mailchimp/mc-magento2/tree/101.2.46) (2022-07-19)

[Full Changelog](https://github.com/mailchimp/mc-magento2/compare/101.2.45...101.2.46)

**Implemented enhancements:**

- Rewrite "This MailChimp account is not connected to Magento" label to make it more clear [\#1448](https://github.com/mailchimp/mc-magento2/issues/1448)
- Add a synchorization column in the customer grid [\#1439](https://github.com/mailchimp/mc-magento2/issues/1439)
- Add a synchorization column in the product grid [\#1438](https://github.com/mailchimp/mc-magento2/issues/1438)
- Add button on backend to create the abandoned cart automation [\#1432](https://github.com/mailchimp/mc-magento2/issues/1432)

**Fixed bugs:**

- Missing fields in Cart.php on db call [\#1460](https://github.com/mailchimp/mc-magento2/issues/1460)
- Wrong field map value when is null [\#1425](https://github.com/mailchimp/mc-magento2/issues/1425)
- Can't get the response file from a batch [\#1414](https://github.com/mailchimp/mc-magento2/issues/1414)
- Unmark the modified flag in the ecommerce table when an object is synced [\#1408](https://github.com/mailchimp/mc-magento2/issues/1408)
- Don't use Zend\_Db\_Select::COLUMNS [\#1405](https://github.com/mailchimp/mc-magento2/issues/1405)

## [101.2.45](https://github.com/mailchimp/mc-magento2/tree/101.2.45)

[Full Changelog](https://github.com/mailchimp/mc-magento2/compare/101.2.44...101.2.45)
Expand Down
2 changes: 2 additions & 0 deletions Ui/Component/Listing/Column/Customers.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ public function prepareDataSource(array $dataSource)
$customer = $this->_customerFactory->create()->load($item['entity_id']);
$params = ['_secure' => $this->_requestInterface->isSecure()];
$alt = '';
$url = '';
$text = '';
if ($this->_helper->getConfigValue(\Ebizmarts\MailChimp\Helper\Data::XML_PATH_ACTIVE, $customer->getStoreId())) {
$mailchimpStoreId = $this->_helper->getConfigValue(
\Ebizmarts\MailChimp\Helper\Data::XML_MAILCHIMP_STORE,
Expand Down
2 changes: 2 additions & 0 deletions Ui/Component/Listing/Column/Products.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ public function prepareDataSource(array $dataSource)
$product = $this->_productFactory->create()->load($item['entity_id']);
$params = ['_secure' => $this->_requestInterface->isSecure()];
$alt = '';
$url = '';
$text = '';
if ($product->getTypeId() == \Magento\Catalog\Model\Product\Type::TYPE_SIMPLE ||
$product->getTypeId() == \Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL ||
$product->getTypeId() == \Magento\ConfigurableProduct\Model\Product\Type\Configurable::TYPE_CODE ||
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
},
"description": "Connect MailChimp with Magento",
"type": "magento2-module",
"version": "101.2.45",
"version": "101.2.46",
"authors": [
{
"name": "Ebizmarts Corp",
Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Ebizmarts_MailChimp" setup_version="101.2.45">
<module name="Ebizmarts_MailChimp" setup_version="101.2.46">
<sequence>
<module name="Magento_Newsletter"/>
<module name="Magento_Sales"/>
Expand Down

0 comments on commit 450a93e

Please sign in to comment.