Magento Enterprise 2.4.6-p4 Update to 2.4.6-p5 – Upgrade Guide

magento2.4.6security-patchupgrade

Anyone can tell me the steps to upgrade Magento Enterprise version 2.4.6-p4 to 2.4.6-p5?
am I just only run below commands?

$ composer require "magento/magento-cloud-metapackage":"2.4.6-p5" --no-update

$ composer update

and then just run the composer update will do the job? Please help
enter image description here

does this upgrade include the following security update release from Adobe?
https://helpx.adobe.com/security/products/magento/apsb24-18.html

enter image description here

Best Answer

To upgrade Adobe Commerce on Cloud, use the following command format:

composer require "magento/magento-cloud-metapackage":">=CURRENT_VERSION <NEXT_VERSION" --no-update

For your specific case, where an upgrade to the latest patch release of version 2.4.6 is required, use this command:

composer require "magento/magento-cloud-metapackage":">=2.4.6 <2.4.7" --no-update

Then run composer update magento/magento-cloud-metapackage

If it does not work, you may need to run this command with the --with-dependencies param:

composer update magento/magento-cloud-metapackage --with-dependencies

You can check out the official documentation at https://experienceleague.adobe.com/en/docs/commerce-cloud-service/user-guide/develop/upgrade/commerce-version

Adobe Commerce and Magento Open Source version 2.4.6-p5 include fixes for all the security issues mentioned in the bulletin APSB24-18 https://helpx.adobe.com/security/products/magento/apsb24-18.html

Related Topic