Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,19 @@ Use the [general upgrade guide](../) to complete the upgrade of your project.

<details>

<summary>Umbraco 15</summary>

* **Snapshots are removed**

Snapshots have been removed, meaning any code using `IPublishedSnapshot`, and by extension `IPublishedSnapshotAccessor`, must be updated. Inject `IPublishedContentCache` or `IPublishedMediaCache` and use those directly instead.

* **Modelsbuilder models needs to be rebuilt**

Models generated by ModelsBuilder used the `IPublishedSnapshot` interface, which has been removed. This means that the models need to be rebuilt. The approach to this will differ depending on the mode chosen:

* InMemoryAuto - Remove the `umbraco\Data\TEMP\InMemoryAuto` folder to trigger a rebuild of the models.
* SourceCodeAuto and SourceCodeManual - Remove the old models located in the `\umbraco\models` folder by default. Trigger a rebuild of the models from the ModelsBuilder dashboard in the backoffice.

<summary>Umbraco 14</summary>

Read more about the release of Umbraco 14 in the [Blog Post](https://umbraco.com/blog/umbraco-14-release/).
Expand Down Expand Up @@ -952,7 +965,7 @@ Task<bool> TryFindContent(IPublishedRequestBuilder request);
[**Async tree search**](https://github.com/umbraco/Umbraco-CMS/pull/12344)

```CSharp
IEnumerable<SearchResultEntity?> Search(string query, int pageSize, long pageIndex, out long totalFound, string? searchFrom
IEnumerable<SearchResultEntity?> Search(string query, int pageSize, long pageIndex, out long totalFound, string? searchFrom
= null)
```

Expand Down Expand Up @@ -996,7 +1009,7 @@ In the `_ViewImports.cshtml` of your project, remove the following lines:

```
@addTagHelper *, Smidge
@inject Smidge.SmidgeHelper SmidgeHelper
@inject Smidge.SmidgeHelper SmidgeHelper
```

Otherwise, it will cause an error on the front end.
Expand Down