You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 15/umbraco-cms/fundamentals/setup/upgrading/version-specific/README.md
+15-2Lines changed: 15 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,19 @@ Use the [general upgrade guide](../) to complete the upgrade of your project.
19
19
20
20
<details>
21
21
22
+
<summary>Umbraco 15</summary>
23
+
24
+
***Snapshots are removed**
25
+
26
+
Snapshots has been removed, this means that any code that used `IPublishedSnapshot`, and by extension `IPublishedSnapshotAccessor`, must be updated. The specific changes depends on the use case of the snapshot, in most cases it can be solved by instead injecting `IPublishedContentCache` or `IPublishedMediaCache` and using those directly.
27
+
28
+
***Modelsbuilder models needs to be rebuilt**
29
+
30
+
Models generated by ModelsBuilder used the `IPublishedSnapshot` interface, which has been removed. This means that the models needs to be rebuilt, the approach to this will differ on the models mode chosen:
31
+
32
+
* InMemoryAuto - Remove the `umbraco\Data\TEMP\InMemoryAuto` folder, this will trigger a rebuild of the models.
33
+
* SourceCodeAuto and SourceCodeManual - Remove the old models, by default these are located in the `\umbraco\models` folder, and then trigger a rebuild of the models from the dashboard in the backoffice.
34
+
22
35
<summary>Umbraco 14</summary>
23
36
24
37
Read more about the release of Umbraco 14 in the [Blog Post](https://umbraco.com/blog/umbraco-14-release/).
0 commit comments