Skip to content

Commit 7e1a61b

Browse files
authored
Merge pull request #7167 from ronaldbarendse/deploy/release-notes-20250612
Add Deploy 16 release notes and update version specific upgrade notes
2 parents 2d53791 + c1beecc commit 7e1a61b

File tree

3 files changed

+90
-5
lines changed

3 files changed

+90
-5
lines changed

16/umbraco-deploy/release-notes.md

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: Get an overview of the things changed and fixed in each version of Umbraco Deploy.
33
---
44

5-
# Release notes
5+
# Release Notes
66

77
In this section we have summarised the changes to Umbraco Deploy and [Deploy Contrib](https://github.com/umbraco/Umbraco.Deploy.Contrib) released in each version. Each version is presented with a link to the [Deploy issue tracker](https://github.com/umbraco/Umbraco.Deploy.Issues/issues) showing a list of issues resolved in the release. We also link to the individual issues themselves from the detail.
88

@@ -16,6 +16,25 @@ If you are upgrading to a new major version you can find the details about the b
1616

1717
This section contains the release notes for Umbraco Deploy 15 including all changes for this version.
1818

19+
### [16.0.0](https://github.com/umbraco/Umbraco.Deploy.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F16.0.0) (May 12th 2025)
20+
21+
* Compatibility with Umbraco 16.0.0
22+
23+
### [16.0.0-rc5](https://github.com/umbraco/Umbraco.Deploy.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F16.0.0) (May 10th 2025)
24+
25+
* Compatibility with Umbraco 16.0.0-rc6
26+
27+
### [16.0.0-rc4](https://github.com/umbraco/Umbraco.Deploy.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F16.0.0) (May 10th 2025)
28+
29+
* Compatibility with Umbraco 16.0.0-rc5
30+
* Removed obsolete code
31+
32+
### [16.0.0-rc3](https://github.com/umbraco/Umbraco.Deploy.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F16.0.0) (May 3rd 2025)
33+
34+
* Compatibility with Umbraco 16.0.0-rc4
35+
* Add `deployEntityTypeMapping` manifest to allow mapping client-side entity types (used in workspaces and routes) to their server-side entity types (used in UDIs, artifacts, and service connectors)
36+
* Use default `TryParseUdiRangeFromNodeId` implementation for internally registered entity types
37+
1938
### [16.0.0-rc2](https://github.com/umbraco/Umbraco.Deploy.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F16.0.0) (May 30th 2025)
2039

2140
* Compatibility with Umbraco 16.0.0-rc3
@@ -28,6 +47,22 @@ This section contains the release notes for Umbraco Deploy 15 including all chan
2847

2948
## Umbraco.Deploy.Contrib
3049

50+
### [16.0.0](https://github.com/umbraco/Umbraco.Deploy.Contrib/releases/tag/release-16.0.0) (May 12th 2025)
51+
52+
* Compatibility with Umbraco 16.0.0 and Deploy 16.0.0
53+
54+
### [16.0.0-rc5](https://github.com/umbraco/Umbraco.Deploy.Contrib/releases/tag/release-16.0.0-rc5) (May 10th 2025)
55+
56+
* Compatibility with Umbraco 16.0.0-rc6 and Deploy 16.0.0-rc5
57+
58+
### [16.0.0-rc4](https://github.com/umbraco/Umbraco.Deploy.Contrib/releases/tag/release-16.0.0-rc4) (May 10th 2025)
59+
60+
* Compatibility with Umbraco 16.0.0-rc5 and Deploy 16.0.0-rc4
61+
62+
### [16.0.0-rc3](https://github.com/umbraco/Umbraco.Deploy.Contrib/releases/tag/release-16.0.0-rc3) (May 3rd 2025)
63+
64+
* Compatibility with Umbraco 16.0.0-rc4 and Deploy 16.0.0-rc3
65+
3166
### [16.0.0-rc2](https://github.com/umbraco/Umbraco.Deploy.Contrib/releases/tag/release-16.0.0-rc2) (May 30th 2025)
3267

3368
* Compatibility with Umbraco 16.0.0-rc3 and Deploy 16.0.0-rc2

16/umbraco-deploy/upgrades/version-specific.md

Lines changed: 42 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,52 @@ Version 16 contains breaking changes. The breaking changes appear in areas relat
2121

2222
#### Entity type registration
2323

24-
Entity type registration is simplified by removing client-side concerns from the server and aligning built-in and custom Umbraco CMS entities (like Forms and Commerce).
24+
Entity type registration is simplified by removing client-side concerns from the server and aligning built-in Umbraco CMS and custom entities (like Forms and Commerce).
2525

2626
* `IDiskEntityService.RegisterDiskEntityType(...)` - This now only requires the entity type, removing the `name`, `isUmbracoEntity` and `installedUdisGetter` parameters.
2727
* `ITransferEntityService.RegisterTransferEntityType(...)` - This is also simplified, removing the `name`, `isUmbracoEntity`, `treeAlias`, `matchesRoutePath`, `matchesNodeId` and `entitiesGetter` parameters.
2828

29-
The name was only used in the backoffice, for example, to group items in the transfer queue and schema comparison dashboard. It now uses localizations (`deploy_entityTypes_{entityType}` or `general_{entityType}`), falling back to the plain entity type.
30-
31-
The `isUmbracoEntity` flag was used in the schema comparison dashboard and for setting signatures to fetch entities differently from custom ones. Making `installedUdisGetter` and `entitiesGetter` mandatory could fetch these items, but this is already possible via service connectors (`IServiceConnector.GetRangeAsync()` and `IServiceConnector.GetArtifact()`).
29+
The name was only used in the backoffice, for example, to group items in the transfer queue and schema comparison dashboard. It now uses localizations (`deploy_entityTypes_{entityType}` or `general_{entityType}`), falling back to the plain entity type if no translation is provided.
30+
31+
The `isUmbracoEntity` flag was used when fetching entities in the schema comparison dashboard and for setting signatures. This could only be enabled for built-in Umbraco entities directly supported by Deploy. Custom entities required providing the `installedUdisGetter` or `entitiesGetter` parameter for these features to work correctly. However, getting all entities is already possible via the service connectors (`IServiceConnector.GetRangeAsync()` and `IServiceConnector.GetArtifact()`), making these parameters redundant.
32+
33+
The `treeAlias`, `matchesRoutePath`, and `matchesNodeId` parameters are removed because the client-side already tracks the entity types. It's recommended to use the same entity types on both the client (in workspaces and routes) and the server (in UDIs, artifacts, and service connectors). If different, Deploy supports mapping the client-side entity types to their server-side counterpart using a `deployEntityTypeMapping` manifest, as shown in the following example:
34+
35+
```json
36+
{
37+
"id": "Umbraco.Commerce.Deploy",
38+
"name": "Umbraco Commerce Deploy",
39+
"version": "16.0.0",
40+
"extensions": [
41+
{
42+
"type": "localization",
43+
"alias": "Uc.Deploy.Localization.En",
44+
"weight": -100,
45+
"name": "English",
46+
"meta": {
47+
"culture": "en",
48+
"localizations": {
49+
"deploy_entityTypes": {
50+
"umbraco-commerce-product-attribute": "Umbraco Commerce Product Attribute",
51+
"umbraco-commerce-product-attribute-preset": "Umbraco Commerce Product Attribute Preset",
52+
}
53+
}
54+
}
55+
},
56+
{
57+
"type": "deployEntityTypeMapping",
58+
"alias": "Uc.Deploy.EntityTypeMapping",
59+
"name": "Umbraco Commerce Deploy Entity Type Mapping",
60+
"entityTypes": {
61+
"uc:product-attribute": "umbraco-commerce-product-attribute",
62+
"uc:product-attributes": "umbraco-commerce-product-attribute",
63+
"uc:product-attribute-preset": "umbraco-commerce-product-attribute-preset",
64+
"uc:product-attribute-presets": "umbraco-commerce-product-attribute-preset"
65+
}
66+
}
67+
]
68+
}
69+
```
3270

3371
### Dependencies
3472

16/umbraco-forms/release-notes.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,18 @@ This section contains the release notes for Umbraco Forms 16 including all chang
5050

5151
This Deploy add-on adds support for transferring, restoring, exporting and importing (including migrating between major versions) of Umbraco Forms data.
5252

53+
### 16.0.0 (June 12th 2025)
54+
55+
* Update Forms and Deploy dependencies to 16.0.0
56+
57+
### 16.0.0-rc5 (June 10th 2025)
58+
59+
* Update Forms and Deploy dependencies to 16.0.0-rc5
60+
61+
### 16.0.0-rc4 (June 10th 2025)
62+
63+
* Update Forms and Deploy dependencies to 16.0.0-rc4
64+
5365
### 16.0.0-rc3 (June 3rd 2025)
5466

5567
* Update Forms and Deploy dependencies to 16.0.0-rc3

0 commit comments

Comments
 (0)