Skip to content

v13.0.0-alpha003

Compare
Choose a tag to compare
@abjerner abjerner released this 07 Jan 10:19
· 7 commits to v13/main since this release

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 a SpaRequest must have been an instance of SpaContentModel, which extends Umbraco's PublishedContentModel 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.