Skip to content

Commit

Permalink
MAGETWO-48593: Adapt Data Migration Tool to Magento 2.1 MLS12
Browse files Browse the repository at this point in the history
  • Loading branch information
victor-v-rad committed Jul 7, 2016
1 parent 902c8bf commit 7a1fc6a
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 26 deletions.
17 changes: 0 additions & 17 deletions .gitignore
Expand Up @@ -9,23 +9,6 @@ atlassian*
/.idea
/.gitattributes
/node_modules
/etc/ce-1.9.1/deltalog.xml
/etc/ce-1.9.1/config.xml
/etc/ce-1.9.1/eav-document-groups.xml
/etc/ce-1.9.1/log-document-groups.xml
/etc/ce-1.9.1/map-eav.xml
/etc/ce-1.9.1/map.xml
/etc/ce-1.9.1/map-log.xml
/etc/ce-1.9.1/settings.xml
/etc/ee-1.14.1/deltalog.xml
/etc/ee-1.14.1/config.xml
/etc/ee-1.14.1/eav-document-groups.xml
/etc/ee-1.14.1/log-document-groups.xml
/etc/ee-1.14.1/map.xml
/etc/ee-1.14.1/map-eav.xml
/etc/ee-1.14.1/map-log.xml
/etc/ee-1.14.1/map-sales.xml
/etc/ee-1.14.1/settings.xml

/tests/unit/tmp
/tests/unit/phpunit.xml
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,17 @@
2.1.0
=============
* Added support for migration of Magento 1 CE stores upgraded to 1.6 and later versions from versions earlier than 1.6 version
* Added support for migration for the following versions:

* Magento CE v. 1.9.2.4, v. 2.1.0
* Magento EE v. 1.14.2.4, v.2.1.0

* Fixed bugs:
* Fixed an issue with RMA creation after migration
* Fixed an issue with URL Rewrite duplication for CMS Pages
* [Issue#59](https://github.com/magento/data-migration-tool/issues/59) Wrong URL addresses for products and categories
* [Issue#36](https://github.com/magento/data-migration-tool/issues/36) `Incorrect table name` error on products grid page

2.0.5
=============
* Added support for:
Expand Down
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -25,11 +25,11 @@ Also the following versions are already supported if you choose to migrate from
## Prerequisites
Before you start your migration, you must do all of the following:

* Set up a Magento 2.0 system that meets our <a href="http://devdocs.magento.com/guides/v1.0/install-gde/system-requirements.html">system requirements</a>.
* Set up a Magento 2 system that meets our <a href="http://devdocs.magento.com/guides/v1.0/install-gde/system-requirements.html">system requirements</a>.

Set up your system using a topology and design that at least matches your existing Magento 1.x system.

* Do not start Magento 2.0 cron jobs.
* Do not start Magento 2 cron jobs.

* Back up or <a href="https://dev.mysql.com/doc/refman/5.1/en/mysqldump.html">dump</a> your Magento 2 database as soon after installation as possible.

Expand All @@ -39,14 +39,14 @@ Before you start your migration, you must do all of the following:

* To provide redundancy in the event of unexpected issues, we advise you to replicate your Magento 1.x database.

* Migrate Magento 1.x extension and custom code to Magento 2.0.
* Migrate Magento 1.x extension and custom code to Magento 2.

Reach out to your extension providers to see if they have been ported yet.

## Install the Data Migration Tool
This section discusses how to install the Magento Data Migration Tool. You can install it from either repo.magento.com or from a GitHub repository.

**Note**: The versions of both the migration tool and the Magento 2 code must be identical (for example, 2.0.0). To find the version of either package, open `composer.json` and find the value of `"version"`.
**Note**: The versions of both the migration tool and the Magento 2 code must be identical (for example, 2.1.0). To find the version of either package, open `composer.json` and find the value of `"version"`.

### Install the tool from GitHub
To install the migration tool from GitHub, use the following steps:
Expand All @@ -58,7 +58,7 @@ To install the migration tool from GitHub, use the following steps:
composer config repositories.data-migration-tool git https://github.com/magento/data-migration-tool
composer require magento/data-migration-tool:<version>

where `<version>` is release version (e.g. 2.0.2)
where `<version>` is release version (e.g. 2.1.0)

3. Wait while dependencies are updated.

Expand Down Expand Up @@ -91,11 +91,11 @@ To update `composer.json`:

Exact version example:

composer require magento/data-migration-tool:2.0.0
composer require magento/data-migration-tool:2.1.0

Next significant release example:

composer require magento/data-migration-tool:~2.0.0
composer require magento/data-migration-tool:~2.0

9. Wait while dependencies are installed.

Expand Down
4 changes: 2 additions & 2 deletions composer.json
@@ -1,10 +1,10 @@
{
"name": "magento/data-migration-tool",
"description": "Migration Tool",
"version": "2.0.5",
"version": "2.1.0",
"require": {
"symfony/console": "~2.3",
"magento/framework": "~100.1.0",
"magento/framework": "~100.1",
"monolog/monolog": "~1.16.0"
},
"autoload": {
Expand Down

0 comments on commit 7a1fc6a

Please sign in to comment.