v13.0.0-alpha003
New alpha release for Umbraco 13 🎉
Installation
Install via NuGet - either via the .NET CLI:
dotnet add package Limbo.Umbraco.Spa --version 13.0.0-alpha003
or the NuGet Package Manager:
Install-Package Limbo.Umbraco.Spa -Version 13.0.0-alpha003
Changelog
-
Introduced new
ISpaContentModel
interface (see b566fb7)
In the past, the content model of aSpaRequest
must have been an instance ofSpaContentModel
, which extends Umbraco'sPublishedContentModel
class (which typically reflects a ModelsBuilder generated model). This has worked well as we historically have returned the ModelsBuilder models directly in the API.However for some of our newer sites (e.g. our Citi sites), we instead have tailored view models, that we're returning instead. To support this, introducing the
ISpaContentModel
interface was necessary.