Magento Commerce 2.0.7 Release Notes

We are pleased to present Magento Commerce (formerly Enterprise Edition) 2.0.7. This release includes several functional fixes.

Backward-incompatible changes are documented in Magento 2.0 Backward Incompatible Changes.

Fixed issues

  • Resolved multiple issues with the accurate display of the contents of the cart, mini cart, and checkout, including:

    • Estimated shipping and taxes. Previously, these values were not always displayed consistently.

    • Checkout. Previously, the checkout process did not display all items.

    • Contents of the mini cart. Previously, mini cart sometimes appeared empty when it actually contained items.

    • When a user first logged in, the User menu did not display the expected information about him.

  • The payment gateway now works as expected in a Magento installation running PHP 7.0.3. Previously, when you would place an order in an installation running PHP 7.0.3, the checkout page would become unresponsive, and the transaction would not appear in the payment gateway. (GITHUB-2984, GITHUB-2878, GITHUB-3305, GITHUB-4076).

System requirements

Our technology stack is built on PHP and MySQL. Magento 2.0.1 and later supports PHP 5.5, 5.6, 7.0.2, and MySQL 5.6. For more information, see System Requirements.

Installation instructions

New installations

New users can now complete a full installation of Magento Commerce 2.0.7 from an archive file.

Download a new installation
  1. Go to the Magento website, and click My Account. Then, log in to your account.
  2. In the panel on the left, choose Downloads. Choose Magento Commerce 2.x, and do the following:

    a. Click Magento Commerce 2.x Release.

    b. In the list, choose Version 2.0.7.

    c. Click Download.

  3. Follow the instructions to upgrade and verify your installation. If you need help, go to the Support tab of your Magento account, and Open a Ticket.

Upgrade existing installations

This section discusses how to upgrade to Magento Commerce 2.0.7.

Upgrade using the Setup Wizard

Use the instructions in Start System Upgrade. When prompted to choose a version, choose 2.0.7.

Upgrade an existing installation from the GitHub repository

Developers who contribute to the codebase can upgrade manually from the Magento Commerce GitHub repository.

  1. Go to the Contributing Developers page.

  2. Follow the instructions to pull the updates from the repository and update using Composer.

Upgrade using the command line

To upgrade to Magento Commerce 2.0.7 using the command line:

  1. Log in to your Magento server as, or switch to, the Magento file system owner.
  2. Change to the directory in which you installed the Magento software.

    For example, cd /var/www/html/magento2

  3. Enter the following command to disable the cache:

    php bin/magento cache:disable
    
  4. Enter the following commands in the order shown:

    composer require <product> 2.0.7 --no-update
    composer update
    

    To upgrade to Magento Commerce 2.0.7, enter:

    composer require magento/product-enterprise-edition 2.0.7 --no-update
    composer update
    
  5. If prompted, enter your authentication keys.
  6. Update the database schema and data:

     php bin/magento setup:upgrade
    
  7. Enter the following command to enable the cache:

    php bin/magento cache:enable
    

Migration toolkits

The Data Migration Tool helps transfer existing Magento 1.x store data to Magento 2.x. This command-line interface includes verification, progress tracking, logging, and testing functions. For installation instructions, see Install the Data Migration Tool. Consider exploring or contributing to the Magento Data Migration repository.

The Code Migration Toolkit helps transfer existing Magento 1.x store extensions and customizations to Magento 2.0.x. The command-line interface includes scripts for converting Magento 1.x modules and layouts.