Helper scripts to aid upgrading magento 2 websites
This tool looks for files which have been modified as part of the upgrade and attempts to see if you have any overrides in your site. This allows you to focus in on the things that have changed and are specific to your site.
This tool checks for
- Preferences (in global/frontend/adminhtml di.xml)
- Overrides
- phtml / js
- layout xml
- html (knockout templates)
- Plugins for methods which have been affected by the upgrade.
This tool is experimental and a work in progress. It may not catch every preference/override/etc.
If you have any improvements please raise a PR or an Issue.
All the below should be used on a local setup, never do any of this anywhere near a production website.
In your project composer install
and move the original vendor directory to a backup location
cd /path/to/magento2/
composer install
mv vendor/ vendor_orig/
Update your magento version to the one required, with b2b or other extensions if applicable.
composer install
composer require magento/product-enterprise-edition 2.2.6 --no-update
composer require magento/extension-b2b 1.0.6 --no-update
composer update magento/extension-b2b magento/product-enterprise-edition --with-dependencies
At this point you may receive errors of incompatible modules, often they are tied to a specific version of magento. Correct the module dependencies and composer require the updated version until you can run composer install
successfully.
Once you have a completed the composer steps you can create a diff which can be analysed.
diff -ur vendor_orig/ vendor/ > vendor.patch
By generating the diff in this manner (as opposed to using wget https://github.com/magento/magento2/compare/2.1.15...2.1.16.diff
) we can guarantee that all enterprise and magento extensions are also covered in one patch file.
In a clone of this repository you can analyse the project and patch file.
git clone https://github.com/AmpersandHQ/ampersand-magento2-upgrade-patch-helper
cd ampersand-magento2-upgrade-patch-helper
composer install
php bin/patch-helper.php analyse /path/to/magento2/
This will output a grid of files which have overrides/preferences/plugins that need to be reviewed and possibly updated to match the changes defined in the newly generated vendor_files_to_check.patch
.
+--------------------------+---------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------+
| Type | Core | To Check |
+--------------------------+---------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------+
| Preference | vendor/magento/module-advanced-pricing-import-export/Model/Export/AdvancedPricing.php | Ampersand\Test\Model\Admin\Export\AdvancedPricing |
| Preference | vendor/magento/module-authorizenet/Model/Directpost.php | Ampersand\Test\Model\Admin\Directpost |
| Preference | vendor/magento/module-authorizenet/Model/Directpost.php | Ampersand\Test\Model\Frontend\Directpost |
| Preference | vendor/magento/module-authorizenet/Model/Directpost.php | Ampersand\Test\Model\Directpost |
| Plugin | vendor/magento/module-catalog/Controller/Adminhtml/Product/Action/Attribute/Save.php | Dotdigitalgroup\Email\Plugin\CatalogProductAttributeSavePlugin::afterExecute |
| Plugin | vendor/magento/module-checkout/Block/Onepage.php | Klarna\Kp\Plugin\Checkout\Block\OnepagePlugin::beforeGetJsLayout |
| Plugin | vendor/magento/module-checkout/Controller/Index/Index.php | Amazon\Login\Plugin\CheckoutController::afterExecute |
| Override (phtml/js/html) | vendor/magento/module-checkout/view/frontend/web/template/summary/item/details.html | app/design/frontend/Ampersand/theme/Magento_Checkout/web/template/summary/item/details.html |
| Override (phtml/js/html) | vendor/magento/module-customer/view/frontend/templates/account/dashboard/info.phtml | app/design/frontend/Ampersand/theme/Magento_Customer/templates/account/dashboard/info.phtml |
| Override (phtml/js/html) | vendor/magento/module-customer/view/frontend/web/js/model/authentication-popup.js | app/design/frontend/Ampersand/theme/Magento_Customer/web/js/model/authentication-popup.js |
| Plugin | vendor/magento/module-multishipping/Controller/Checkout/Overview.php | Vertex\Tax\Model\Plugin\MultishippingErrorMessageSupport::beforeExecute |
| Plugin | vendor/magento/module-multishipping/Controller/Checkout/OverviewPost.php | Vertex\Tax\Model\Plugin\MultishippingErrorMessageSupport::beforeExecute |
| Plugin | vendor/magento/module-reports/Model/ResourceModel/Product/Collection.php | Dotdigitalgroup\Email\Plugin\ReportsProductCollectionPlugin::aroundAddViewsCount |
| Plugin | vendor/magento/module-sales/Block/Adminhtml/Order/Create/Form.php | Vertex\Tax\Block\Plugin\OrderCreateFormPlugin::beforeGetOrderDataJson |
| Plugin | vendor/magento/module-sales/Model/Order/ShipmentDocumentFactory.php | Temando\Shipping\Plugin\Sales\Order\ShipmentDocumentFactoryPlugin::aroundCreate |
| Override (phtml/js/html) | vendor/magento/module-sales/view/frontend/layout/sales_order_print.xml | app/design/frontend/Ampersand/theme/Magento_Sales/layout/sales_order_print.xml |
| Plugin | vendor/magento/module-sales-rule/Model/ResourceModel/Rule/Collection.php | Dotdigitalgroup\Email\Plugin\RuleCollectionPlugin::afterSetValidationFilter |
| Plugin | vendor/magento/module-shipping/Controller/Adminhtml/Order/ShipmentLoader.php | Temando\Shipping\Plugin\Shipping\Order\ShipmentLoaderPlugin::afterLoad |
| Override (phtml/js/html) | vendor/magento/module-ui/view/base/web/templates/block-loader.html | app/design/frontend/Ampersand/theme/Magento_Ui/web/templates/block-loader.html |
+--------------------------+---------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------+
You should review the above 19 items alongside /path/to/magento2/vendor_files_to_check.patch
This guide will help setup an assist for upgrading Magento 2 to a new version.
Run the following set of command to install libxdiff:
cd /usr/src
wget http://www.xmailserver.org/libxdiff-0.23.tar.gz
sudo tar -xzf libxdiff-0.23.tar.gz
cd libxdiff-0.23
sudo ./configure
sudo make
sudo make install
Then check if php
, phpize
and php-config
are all on the same version as the PHP version you're trying to install php-xdiff for.
Run the command:
sudo pecl install xdiff
To install xdiff for your current PHP version.
Then create xdiff.ini
file in /etc/php/<version>/mods-available
with the following contents:
extension=xdiff.so
Active the xdiff extension by running:
sudo phpenmod xdiff
Xdiff is now installed and activated for your current PHP version.
Clone this repository and run composer install
inside the directory.
Then go to the directory of your Magento 2 project you wish to upgrade.
Run composer install
in that project (before upgrading) and make sure it runs on your local machine.
Run the command mv vendor/ vendor_orig/
to create a backup of your vendor directory (Ampersand uses this to compare the files).
Then proceed to adjust your composer.json
file to upgrade Magento to the required version.
Then run composer update <changed-packages-here> --with-dependencies
.
Run the command: diff -ur vendor_orig/ vendor/ > vendor.patch
to create a diff file of the vendor directory of your Magento 2 project.
And finally from the command line (inside the Ampersand project) run the command:
php bin/patch-helper.php analyse /path/to/magento2/
This command will automatically try to patch as much as possible templates for you. The leftovers will be shown in the terminal after execution.
Beware: The automatically patched files can have some parts that cannot be automatically patched, therefore you still need to manually verify them.
Beware 2: before committing make sure that all .patch
files in your app/design
directory are removed. The patch files that are located next to each un-appliable template file are helpers for the upgrade (so you can check the differences).
After you have checked every patch you can remove the patches so you won't commit them.
cd app/design
find . -name "*.patch" -type f -delete