HomeDev GuideAPI Reference
Dev GuideAPI ReferenceUser GuideGitHubNuGetDev CommunityDoc feedbackLog In
GitHubNuGetDev CommunityDoc feedback

Breaking changes for Commerce 14

Breaking changes for upgrading from Optimizely Customized Commerce 13 to Commerce 14.

Commerce Admin user interface replaces Commerce Manager

The Commerce Administration view is an administrative application replacing the legacy Commerce Manager administration backend system. The new user interface provides a unified and improved user experience.

The new Admin view provides support for working with markets, warehouses, catalog indexing, tax configuration, shipping, and payments.

Due to the removal of Commerce Manager, ​the following tasks are now managed through the API:

The Mediachase.BusinessFoundation assembly has also been removed as it was mainly used to support Commerce Manager.

Configurations

Support for the various configuration files in the Configs project folder has been removed. The functionality has been replaced with the use of Options classes, where you can configure settings in the appSettings file or use the ConfigureServices of the Startup class to override default values for Options. This provides a unified way of configuration methods in ASP.NET Core. See Option configuration classes.

Membership Provider not supported

The support for ASP.NET Membership Provider has been removed. Only ASP.NET Identity Provider is supported for Optimizely Customized Commerce. See Security and Migrating from SQL membership to ASP.NET identity.

Payments

Mediachase.Commerce.Plugins.Payment has been removed since it does not support AuthorizeNet. The library is no longer supported in ASP.NET Core.

Support for payment providers PayPal, DIBS, Datacash, and giftcard has been removed. The CreatedCardPayment class has been marked as obselete and will be removed in a future version. It is strongly recommended that you ensure to adopt a PCI compliant solution for managing payments in your project.

Solr search providers not supported

Support for Mediachase.Search.Solr35SearchProvider and Mediachase.Search.SolrSearchProvider packages has been removed. As a replacement, you can use the LuceneSearchProvider or FindSearchProvider. There is in-built support for FindSearchProvider in the Optimizely DXP cloud service environments. See Search.

OleDb import parser removed

The Mediachase.MetaDataPlus.Import.Parser.OleDbIncomingDataParser has been removed, and parsing of files using OleDb connection is not supported. CSV and XML data parsers are still supported.

UserTimeZone not supported

The UserTimeZone functionality has been removed from Mediachase.BusinessFoundation.Data to avoid dependency on Windows OS.

Webservice support for catalog system removed

You can no longer access the Catalog subsystem via webservice calls.

Syncronous execution of events

The following changes have been done:

  • ReportingOrderEventListener executes the listeners synchronously.
  • On MetaDataChanged events, the synchronization with the content type model repository is done synchronously.

Binary serialization not supported for ASP.NET Core types

Some ASP.NET Core built-in types are no longer binary serializable. NumberFormatInfo is one example. Since serializable Customized Commerce types like Money and Currency use NumberFormatInfo, these become unserializable as well. This is considered a breaking change for solutions that rely on binary serialization of these types, meaning that probably SerializationExceptions will be thrown.

Removed APIs

  • Mediachase.Commerce.Engine.Template and Mediachase.Commerce.Engine.Image have been removed.
  • Since HttpModules are not supported in .NET core. EPiServer.Business.Commerce.HttpModules.ProfileModule has been removed.
  • The upgrading migration steps MigrateAdminsRoleStep, PopulateUserPermissionStep, and UpdateContactUserIdStep have been removed, and you should upgrade your solution to Commerce version 13 before upgrading to version 14.

Upgrading support

To make upgrading easier, there is an upgrading tool available. See the Upgrade assistant article.