Umbraco Commerce
CMSCloudHeartcoreDXP
15.latest
15.latest
  • Umbraco Commerce Documentation
  • Release Notes
    • v15.1.0-Rc
    • v15.0.0-Rc
  • Commerce Products
    • Commerce Packages
    • Commerce Payment Providers
    • Commerce Shipping Providers
  • Getting Started
    • Requirements
    • Installation
    • Licensing
    • Configuration
    • User Interface
  • Upgrading
    • Upgrading Umbraco Commerce
    • Version Specific Upgrade Notes
    • Migrate from Vendr to Umbraco Commerce
      • Migrate Umbraco Commerce Checkout
      • Migrate custom Payment Providers
  • Tutorials
    • Build a Store in Umbraco using Umbraco Commerce
      • Installation
      • Creating a Store
        • Configuring your Store
      • Creating your first Product
      • Implementing a Shopping Cart
        • Using the Umbraco.Commerce.Cart Drop-in Shopping Cart
        • Creating a Custom Shopping Cart
      • Implementing a Checkout Flow
        • Using the Umbraco.Commerce.Checkout Drop-in Checkout Flow
        • Creating a Custom Checkout Flow
      • Configuring Store Access Permissions
  • How-To Guides
    • Overview
    • Configure SQLite support
    • Use an Alternative Database for Umbraco Commerce Tables
    • Customizing Templates
    • Configuring Cart Cleanup
    • Limit Order Line Quantity
    • Implementing Product Bundles
    • Implementing Member Based Pricing
    • Implementing Dynamically Priced Products
    • Implementing Personalized Products
    • Implementing a Currency Switcher
    • Building a Members Portal
    • Order Number Customization
    • Create an Order via Code
  • Key Concepts
    • Get to know the main features
    • Base Currency
    • Calculators
    • Currency Exchange Rate Service Provider
    • Dependency Injection
    • Discount Rules / Rewards
    • Events
      • List of validation events
      • List of notification events
    • Fluent API
    • Order Calculation State
    • Payment Forms
    • Payment Providers
    • Pipelines
    • Price/Amount Adjustments
    • Price Freezing
    • Product Adapters
    • Product Bundles
    • Product Variants
      • Complex Variants
    • Properties
    • ReadOnly and Writable Entities
    • Sales Tax Providers
    • Search Specifications
    • Settings Objects
    • Shipping Package Factories
    • Shipping Providers
    • Shipping Range/Rate Providers
    • Tax Sources
    • UI Extensions
      • Analytics Widgets
      • Entity Quick Actions
      • Order Line Actions
      • Order Properties
      • Order Collection Properties
      • Order Line Properties
      • Store Menu Items
    • Umbraco Properties
    • Unit of Work
    • Umbraco Commerce Builder
    • Webhooks
  • Reference
    • Stores
    • Shipping
      • Fixed Rate Shipping
      • Dynamic Rate Shipping
      • Realtime Rate Shipping
    • Payments
      • Configure Refunds
      • Issue Refunds
    • Taxes
      • Fixed Tax Rates
      • Calculated Tax Rates
    • Storefront API
      • Endpoints
        • Order
        • Checkout
        • Product
        • Customer
        • Store
        • Currency
        • Country
        • Payment method
        • Shipping method
        • Content
    • Management API
    • Go behind the scenes
    • Telemetry
Powered by GitBook
On this page
  • Get the latest version of Umbraco Commerce
  • NuGet
  • Visual Studio

Was this helpful?

Edit on GitHub
Export as PDF
  1. Upgrading

Upgrading Umbraco Commerce

PreviousUser InterfaceNextVersion Specific Upgrade Notes

Last updated 8 months ago

Was this helpful?

This article shows how to manually upgrade Umbraco Commerce to run the latest version. When upgrading Umbraco Commerce, be sure to also consult the notes to learn about potential breaking changes and common pitfalls.

Before upgrading, it is always advisable to take a complete backup of your site and database.

Get the latest version of Umbraco Commerce

To get the latest version of Umbraco Commerce you can upgrade using:

  • NuGet

  • Visual Studio

NuGet

  • NuGet installs the latest version of the package when you use the dotnet add package Umbraco.Commerce command unless you specify a package version: dotnet add package Umbraco.Commerce --version <VERSION>

  • After you have added a package reference to your project by executing the dotnet add package Umbraco.Commerce command in the directory that contains your project file, run dotnet restore to install the package.

Visual Studio

  1. Go to Tools -> NuGet Package Manager -> Manage NuGet Packages for Solution... in Visual Studio, to upgrade Umbraco Commerce:

  2. Select Umbraco.Commerce.

  3. Select the latest version from the Version drop-down and click Install.

  4. When the command completes, open the .csproj file to make sure the package reference is updated:

<ItemGroup>
  <PackageReference Include="Umbraco.Commerce" Version="xx.x.x" />
</ItemGroup>

If you are using one or more of the below sub-packages, they also need to be upgraded as well:

Sub-package
Description

Umbraco.Commerce.Common

A shared project of common, non-Commerce-specific patterns and helpers.

Umbraco.Commerce.Core

Core Commerce functionality that doesn't require any infrastructure-specific dependencies.

Umbraco.Commerce.Infrastructure

Infrastructure-specific project containing implementations of core Commerce functionality.

Umbraco.Commerce.Persistence.SqlServer

Persistence-specific project containing implementations of core Commerce persistence functionality for SQL Server.

Umbraco.Commerce.Persistence.Sqllite

Persistence-specific project containing implementations of core Commerce persistence functionality for SQLite.

Umbraco.Commerce.Web

Core Commerce functionality that requires a web context.

Umbraco.Commerce.Cms

Core Commerce functionality that requires an Umbraco dependency.

Umbraco.Commerce.Cms.Web

The Commerce functionality for the Umbraco presentation layer.

Umbraco.Commerce.Cms.Web.Api

A shared project of common API specific functionality.

Umbraco.Commerce.Cms.Web.Api.Management

The backoffice Management API layer.

Umbraco.Commerce.Cms.Web.Api.Payment

The Payment handling API layer.

Umbraco.Commerce.Cms.Web.Api.Storefront

The frontend Storefront API layer.

Umbraco.Commerce.Cms.Web.UI

The static Commerce assets for the Umbraco presentation layer.

Umbraco.Commerce.Cms.Startup

The Commerce functionality for registering Commerce with Umbraco.

Umbraco.Commerce

The main Commerce package entry point package.

version specific upgrade