Version Specific Upgrade Details
Version specific documentation for upgrading to new major versions of Umbraco Deploy.
This page covers specific upgrade documentation for when migrating to major 13 of Umbraco Deploy.
Version Specific Upgrade Notes History
Version 13 of Umbraco Deploy has a minimum dependency on Umbraco CMS core of 13.0.0. It runs on .NET 8.
Breaking changes
Version 13 contains a number of breaking changes. We don't expect many projects to be affected by them as they are in areas that are not typical extension points. For reference though, the full details are listed here:
Behavior
The default value for the configuration option
ResolveUserInTargetEnvironmentwas changed totrue.
Configuration
Configuration of relations was changed from a list to a dictionary.
// Before
"RelationTypes": [
{
"Alias": "relateParentDocumentOnDelete",
"Mode": "Weak",
},
{
"Alias": "relateShopItemOnCreate",
"Mode": "Exclude",
}
],
// After
"RelationTypes": {
"relateParentDocumentOnDelete": "Weak",
"relateShopItemOnCreate": "Exclude"
},Configuration of value connectors was changed from a list to a dictionary.
// Before
"ValueConnectors": [
{
"Alias": "nuPickers.DotNetCheckBoxPicker",
"TypeName": "Umbraco.Deploy.Contrib.Connectors.ValueConnectors.NuPickersValueConnector,Umbraco.Deploy.Contrib.Connectors",
}
],
// After
"ValueConnectors": {
"nuPickers.DotNetCheckBoxPicker": "Umbraco.Deploy.Contrib.Connectors.ValueConnectors.NuPickersValueConnector, Umbraco.Deploy.Contrib.Connectors"
},Code
The following updates describe the more significant changes to the codebase and public API:
Moved value connectors for core property editors from
Umbraco.Deploy.ContribintoUmbraco.Deploy.Infrastructure.Renamed the Deploy add-on for Umbraco Forms from
Umbraco.Deploy.FormstoUmbraco.Forms.Deploy.
These updates are more minor. We don't expect many projects to be affected by them as they are in areas that are not typical extension points:
Removed the obsolete
IsHeadlessproperty from `UmbracoCloudClientConfigurationInfo``.Made the
ProcessXmethods for each step of content connectors private.Removed the obsolete overload of
SaveContentTypeonContentTypeConnectorBase.An obsolete constructor was removed from
DictionaryItemConnector.QueueItemDtowas moved into theUmbraco.Deploy.Infrastructure.Persistencenamespace.DocumentConnectorhas a changed constructor such that we can use redirect tracking logic now exposed from CMS.Remove now unnecessary interfaces and extension methods for rich text parsing. These were introduced to ensure backward compatibility in older versions:
IMacroParser2,IImageSourceParser2andILocaLinkParser2.
Legacy version specific upgrade notes
You can find the version specific upgrade notes for versions out of support in the Legacy documentation on GitHub.
Last updated