Version Specific Upgrade Details
Version specific documentation for upgrading to new major versions of Umbraco Deploy.
Version Specific Upgrade Notes History
Breaking changes
Behavior
Configuration
// Before
"RelationTypes": [
{
"Alias": "relateParentDocumentOnDelete",
"Mode": "Weak",
},
{
"Alias": "relateShopItemOnCreate",
"Mode": "Exclude",
}
],
// After
"RelationTypes": {
"relateParentDocumentOnDelete": "Weak",
"relateShopItemOnCreate": "Exclude"
},Code
Legacy version specific upgrade notes
Last updated
Was this helpful?