Skip to content

Commit 1bfa1fc

Browse files
committed
Version 4.2.2
1 parent 2e716b7 commit 1bfa1fc

File tree

5 files changed

+94
-76
lines changed

5 files changed

+94
-76
lines changed

.semver

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
:major: 4
33
:minor: 2
4-
:patch: 1
4+
:patch: 2
55
:special: ''
66
:metadata: ''

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,34 @@
1-
# Version 4.2.2 (coming soon)
1+
# Version 4.2.2
22

33
* Min. PHP Version set to 7.3
44
* Support PhpUnit 8.0
55
* Please take a look at [UPGRADE-4.0.0](UPGRADE-4.0.0.md)
66

77
## Features
88

9-
* none
9+
* add new config for ignored attribute on update defined in configuration.json
10+
* Example:
11+
* Ignore attribute code `msrp_display_actual_price_type` from catalog_product entity on update value
12+
* Ignore ALL attribute codes from catalog_category entity on update value
13+
```
14+
"ignore-attribute-value-on-update": {
15+
"catalog_product": [
16+
"msrp_display_actual_price_type"
17+
],
18+
"catalog_category": []
19+
}
20+
```
1021

1122

1223
## Bugfixes
1324

1425
* import:
1526
* Fix import duplicate data for global eav_attribute
1627
* Fix clear empty value per row
28+
* import-product-url-rewrite:
29+
* Url DB exception handle over strict-mode and ignore DB exceptions
30+
* import-dbal-collection:
31+
* Fix PHP 8.1 deprecation warnings
1732

1833
# Version 4.2.1
1934

RoboFile.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class RoboFile extends \Robo\Tasks
4040
'target.dir' => __DIR__ . '/target',
4141
'symfony.dir' => __DIR__ . '/symfony',
4242
'webapp.name' => 'import-cli-simple',
43-
'webapp.version' => '4.2.1'
43+
'webapp.version' => '4.2.2'
4444
);
4545

4646
/**

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
"license": "MIT",
55
"require": {
66
"php": ">=7.3.0",
7-
"techdivision/import": "^17.3.4",
7+
"techdivision/import": "^17.3.5",
88
"techdivision/import-cli": "^12.1.1",
99
"techdivision/import-app-simple": "^18.0.0",
10-
"techdivision/import-configuration-jms": "^17.3.0",
10+
"techdivision/import-configuration-jms": "^17.3.1",
1111
"techdivision/import-ee": "^16.0.0",
1212
"techdivision/import-attribute": "^22.0.2",
1313
"techdivision/import-attribute-set": "^17.0.0",
1414
"techdivision/import-customer": "^17.0.4",
15-
"techdivision/import-customer-address": "^17.0.4",
15+
"techdivision/import-customer-address": "^17.0.5",
1616
"techdivision/import-category": "^21.0.0",
1717
"techdivision/import-category-ee": "^22.0.0",
1818
"techdivision/import-product": "^25.1.0",
1919
"techdivision/import-product-msi": "^20.0.0",
2020
"techdivision/import-product-tier-price": "^18.0.0",
21-
"techdivision/import-product-url-rewrite": "^25.0.0",
21+
"techdivision/import-product-url-rewrite": "^25.0.1",
2222
"techdivision/import-product-link": "^25.0.1",
2323
"techdivision/import-product-media": "^27.0.0",
2424
"techdivision/import-product-bundle": "^25.0.0",
@@ -39,9 +39,9 @@
3939
"techdivision/import-converter-product-attribute": "^10.0.1",
4040
"techdivision/import-converter-customer-attribute": "^3.0.0",
4141
"techdivision/import-serializer-csv": "^1.0.2",
42-
"techdivision/import-dbal-collection": "^1.1.1",
42+
"techdivision/import-dbal-collection": "^1.1.2",
4343
"techdivision/import-cache-collection": "^1.0.0",
44-
"techdivision/import-configuration": "^5.2.0"
44+
"techdivision/import-configuration": "^5.2.1"
4545
},
4646
"require-dev": {
4747
"doctrine/dbal": "2.5.*",

0 commit comments

Comments
 (0)