Skip to content

Commit

Permalink
Merge pull request #892 from magento/2.4-develop
Browse files Browse the repository at this point in the history
Data Migration Tool Release 2.4.4
  • Loading branch information
victor-v-rad committed Apr 12, 2022
2 parents 71c9cc9 + 7afc368 commit e5662c8
Show file tree
Hide file tree
Showing 121 changed files with 589 additions and 58 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
2.4.4
=============
* Added support for versions:

* Magento Open Source: 2.4.4
* Magento Commerce: 2.4.4

* Fixed bugs:

* New monolog version caused composer dependency conflict
* Customer login is not working after Migration from Magento 1.x

2.4.3
=============
* Added support for versions:

* Magento Open Source: 2.4.3
* Magento Commerce: 2.4.3

* Fixed bugs:

* Delta fix the wrong table prefix

2.4.2
=============
* Added support for versions:
Expand Down
26 changes: 15 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,17 @@ This section discusses how to install the Magento Data Migration Tool. You can i
### Install the tool from GitHub
To install the migration tool from GitHub, use the following steps:

1. Log in to your Magento 2 server as a user with privileges to write to the Magento 2 file system or <a href="http://devdocs.magento.com/guides/v2.4/install-gde/install/prepare-install.html#install-update-depend-apache">switch to the web server user</a>.
2. Go to Magento 2 root directory.
3. Enter the following commands:
1. Log in to your Magento 2 server as a user with privileges to write to the Magento 2 file system or <a href="http://devdocs.magento.com/guides/v2.4/install-gde/install/prepare-install.html#install-update-depend-apache">switch to the web server user</a>.
2. Go to Magento 2 root directory.
3. Enter the following commands:

composer config repositories.data-migration-tool git https://github.com/magento/data-migration-tool
composer require magento/data-migration-tool:<version>
bin/magento module:enable Magento_DataMigrationTool

where `<version>` is release version (e.g. 2.4.0)
where `<version>` is release version (e.g. 2.4.4)

3. Wait while dependencies are updated.
5. Wait while dependencies are updated and the tool is enabled.

### Install the tool from repo.magento.com
To install the Data Migration Tool, you must update `composer.json` in the Magento root installation directory to provide the location of the migration tool package.
Expand All @@ -82,29 +83,32 @@ To install the migration tool, you must:

To update `composer.json`:

1. Log in to your Magento server as the <a href="http://devdocs.magento.com/guides/v2.4/install-gde/install/prepare-install.html#install-update-depend-apacheweb">web server user</a> or as a user with `root` privileges.
1. Log in to your Magento server as the <a href="http://devdocs.magento.com/guides/v2.4/install-gde/install/prepare-install.html#install-update-depend-apacheweb">web server user</a> or as a user with `root` privileges.

2. Change to your Magento installation directory.
2. Change to your Magento installation directory.

3. Enter the following command to reference Magento packages in `composer.json`:
3. Enter the following command to reference Magento packages in `composer.json`:

composer config repositories.magento composer https://repo.magento.com

4. Enter the following command to require the current version of the package:
4. Enter the following command to require the current version of the package:

composer require magento/data-migration-tool:<version>

where `<version>` is either an exact version or next significant release syntax.

Exact version example:

composer require magento/data-migration-tool:2.4.0
composer require magento/data-migration-tool:2.4.4

Next significant release example:

composer require magento/data-migration-tool:~2.4

5. Wait while dependencies are installed.
5. Wait while dependencies are installed.
6. Enter the following command to enable the tool

bin/magento module:enable Magento_DataMigrationTool

## More details
See the <a href="http://devdocs.magento.com/guides/v2.4/migration/bk-migration-guide.html">Migration Guide</a> for the detailed help with your data migration process.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "magento/data-migration-tool",
"description": "Migration Tool",
"version": "2.4.3",
"version": "2.4.4",
"require": {
"symfony/console": "~4.4.0",
"magento/framework": "*",
"monolog/monolog": "^1.17"
"monolog/monolog": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^9"
"phpunit/phpunit": "~9.5.0"
},
"autoload": {
"psr-4": {"Migration\\": "src/Migration"},
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.11.0.0/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2884,6 +2884,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.11.0.1/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2884,6 +2884,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.11.0.2/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2872,6 +2872,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.11.1.0/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2860,6 +2860,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.11.2.0/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2860,6 +2860,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.12.0.0/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2782,6 +2782,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.12.0.1/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2782,6 +2782,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.12.0.2/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2782,6 +2782,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.13.0.0/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2775,6 +2775,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.13.0.1/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2775,6 +2775,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.13.0.2/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2775,6 +2775,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.13.1.0/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2781,6 +2781,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.0.0/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2781,6 +2781,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.0.1/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2781,6 +2781,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.1.0/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2783,6 +2783,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.2.0/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2820,6 +2820,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.2.1/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2820,6 +2820,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.2.2/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2826,6 +2826,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.2.3/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2826,6 +2826,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.2.4/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2826,6 +2826,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.3.0/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2838,6 +2838,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.3.1/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2798,6 +2798,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.3.10/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2949,6 +2949,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.3.2/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2790,6 +2790,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.3.3/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2790,6 +2790,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.3.4/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2943,6 +2943,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.3.6/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2943,6 +2943,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.3.7/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2943,6 +2943,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
3 changes: 3 additions & 0 deletions etc/commerce-to-commerce/1.14.3.8/map.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2943,6 +2943,9 @@
<ignore>
<document>email_coupon_attribute</document>
</ignore>
<ignore>
<document>jwt_auth_revoked</document>
</ignore>
</document_rules>
<field_rules>
<transform>
Expand Down
Loading

0 comments on commit e5662c8

Please sign in to comment.