Version 13.0.0-alpha003

Alpha
Date 2025-01-07 (29 days ago)
Downloads 75 downloads
NuGet View on NuGet
GitHub View on GitHub
Target Frameworks .NET 8
Umbraco Versions Umbraco 13

New alpha release for Umbraco 13 🎉

#installation">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">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.