Is the upgrade path different for Adobe Commerce?
Same code, same upgrade path, different licence and a few extra modules.
Adobe Commerce (formerly Magento Commerce, formerly Magento Enterprise) is the paid edition. Under the hood it’s the same Magento 2 framework as Open Source, with extra modules layered on: B2B Companies + Quotes + Shared Catalogs, page builder enterprise features, content staging, target rules, reward points, gift registry, customer segments. The upgrade path is identical, composer require magento/product-enterprise-edition:^2.4.9 instead of magento/product-community-edition:^2.4.9.
Differences that matter for the upgrade:
- B2B Companies + Quotes need explicit data-validation cycles post-upgrade (schema-tied, can silently break). Add 30-50% to the upgrade timeline.
- Adobe Commerce Cloud (the managed hosting platform) has its own deploy + upgrade pipeline. You can’t just
composer update, the upgrade goes through their build/deploy system. Adds ~1 week to the timeline for the Cloud-specific dance. - Licence renewal is on a separate cycle. Upgrading the codebase doesn’t change your licence; renewing the licence doesn’t upgrade the code. Co-ordinate them with Adobe at quote time.
- Customer segments + content staging need re-test after upgrade. They’re the “sneaky breaks” on Commerce-specific upgrades.
The checker on this page works for both Open Source and Commerce, the matrix is the same.