Skip to content

Commit

Permalink
Merge pull request #371 from magento-panda/develop
Browse files Browse the repository at this point in the history
Data Migration Tool Release 2.2.0
  • Loading branch information
victor-v-rad authored Oct 3, 2017
2 parents ccb67d3 + 293c36b commit 715cef2
Show file tree
Hide file tree
Showing 548 changed files with 141,559 additions and 120,266 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
2.2.0
=============
* Integrity check errors can be ignored with a new `-a|--auto` CLI argument
* Customer step was rewritten to be more clear
* Added support for mapping functionality into Stores step
* Added possibility of using secure connection to MySQL
* Added support for PHPUnit 6
* Added support for versions:

* Magento Open Source: 2.2.0
* Magento Commerce: 2.2.0

* Fixed bugs:

* An error on EAV step when records from the `eav_entity_attribute` table have references to non-existent records from the `eav_attribute_set` table

2.1.9
=============
* Added support for versions:
Expand Down
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ We're pleased you're considering moving from the world's #1 eCommerce platform
Magento 2 migration involves four components: data, extensions and custom code, themes, and customizations.

### Data
We've developed the **Magento 2 Data Migration Tool** to help you efficiently move all of your products, customers, and order data, store configurations, promotions and more to Magento 2. See the <a href="http://devdocs.magento.com/guides/v2.1/migration/bk-migration-guide.html" target="_blank">Magento Migration Guide</a> for details.
We've developed the **Magento 2 Data Migration Tool** to help you efficiently move all of your products, customers, and order data, store configurations, promotions and more to Magento 2. See the <a href="http://devdocs.magento.com/guides/v1.0/migration/bk-migration-guide.html" target="_blank">Magento Migration Guide</a> for details.

### Extensions and custom code
We've been working hard with the development community to help you use your Magento 1 extensions in Magento 2. Now we're proud to present the <a href="https://marketplace.magento.com/" target="_blank">Magento Marketplace</a>, where you can download or purchase the latest versions of your favourite extensions.
Expand All @@ -19,11 +19,11 @@ Magento 2 uses new approaches and technologies that give merchants an unmatched
### Supported versions
This edition of tool supports the following versions for migration:

* Community Edition (CE) version 1.6.x, 1.7.x, 1.8.x, 1.9.x
* Magento Open Source version 1.6.x, 1.7.x, 1.8.x, 1.9.x

* Enterprise Edition (EE) version 1.11.x, 1.12.x, 1.13.x, 1.14.x
* Magento Commerce version 1.11.x, 1.12.x, 1.13.x, 1.14.x

Also the following versions are already supported if you choose to migrate from Magento 1 CE to Magento 2 EE:
If you migrate from Magento Open Source to Magento Commerce, the following versions are supported:

* 1.6.x, 1.7.x, 1.8.x, 1.9.x

Expand All @@ -42,8 +42,6 @@ Before you start your migration, you must do all of the following:

Open ports in your firewall so the migration tool can communicate with the databases and so the databases can communicate with each other.

* 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.

Reach out to your extension providers to see if they have been ported yet.
Expand Down Expand Up @@ -105,4 +103,4 @@ To update `composer.json`:
9. Wait while dependencies are installed.

## More details
See the <a href="http://devdocs.magento.com/guides/v2.1/migration/bk-migration-guide.html">Migration Guide</a> for the detailed help with your data migration process.
See the <a href="http://devdocs.magento.com/guides/v1.0/migration/bk-migration-guide.html">Migration Guide</a> for the detailed help with your data migration process.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "magento/data-migration-tool",
"description": "Migration Tool",
"version": "2.1.9",
"version": "2.2.0",
"require": {
"symfony/console": "~2.3",
"magento/framework": "~100.1",
"monolog/monolog": "~1.16.0"
"symfony/console": "~2.3, !=2.7.0",
"magento/framework": "~101.0.0",
"monolog/monolog": "^1.17"
},
"autoload": {
"psr-4": {"Migration\\": ["src/Migration", "tests/unit/testsuite/Migration"]},
Expand Down
Loading

0 comments on commit 715cef2

Please sign in to comment.