Releases: limbo-works/Limbo.Umbraco.Spa
v13.0.0-alpha004
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-alpha004
or the NuGet Package Manager:
Install-Package Limbo.Umbraco.Spa -Version 13.0.0-alpha004
Changelog
-
Updated the
SpaRequestHelper.FindDomainAndCulture
to also look up the content node assigned to the domain (see 233ba97)
Depending on the specific setup, this may be required further down the request pipeline. -
Improved handling for when the domain is added to the culture instead of the site node (see 3ac1d8e)
Our sites usually have both a site none and one or more culture nodes. Normally the domain is added to the site node, meaning the culture URLs will be something like/en
and/da
. But in some cases, the domain is instead added to the culture node, which is now better supported. -
Added additional information to the SPA HTML error page (see bbdeb87)
If in debug mode, and an exception is thrown during the processing of a SPA request, an HTML error page is shown with various information about the current request. This response now includes some additional information about the current site, culture and page if available.
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.
v13.0.0-alpha002
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-alpha002
or the NuGet Package Manager:
Install-Package Limbo.Umbraco.Spa -Version 13.0.0-alpha002
v2.0.0-alpha005
New alpha release for Umbraco 10+ 🎉
Installation
Install via NuGet - either via the .NET CLI:
dotnet add package Limbo.Umbraco.Spa --version 2.0.0-alpha005
or the NuGet Package Manager:
Install-Package Limbo.Umbraco.Spa -Version 2.0.0-alpha005
Changelog
v13.0.0-alpha001
First alpha release for Umbraco 13 🎉
Installation
Install via NuGet - either via the .NET CLI:
dotnet add package Limbo.Umbraco.Spa --version 13.0.0-alpha001
or the NuGet Package Manager:
Install-Package Limbo.Umbraco.Spa -Version 13.0.0-alpha001
v2.0.0-alpha004
New alpha release for Umbraco 10+ 🎉
Installation
Install via NuGet - either via the .NET CLI:
dotnet add package Limbo.Umbraco.Spa --version 2.0.0-alpha004
or the NuGet Package Manager:
Install-Package Limbo.Umbraco.Spa -Version 2.0.0-alpha004
v2.0.0-alpha003
New alpha release for Umbraco 10 🎉
Installation
Via NuGet:
dotnet add package Limbo.Umbraco.Spa --version 2.0.0-alpha003
or:
Install-Package Limbo.Umbraco.Spa -Version 2.0.0-alpha003
v2.0.0-alpha002
New alpha release for Umbraco 10 🎉
Installation
Via NuGet:
dotnet add package Limbo.Umbraco.Spa --version 2.0.0-alpha002
or:
Install-Package Limbo.Umbraco.Spa -Version 2.0.0-alpha002
v1.0.0-alpha005
New alpha release for Umbraco 9 🎉
Installation
Via NuGet:
dotnet add package Limbo.Umbraco.Spa --version 1.0.0-alpha005
or:
Install-Package Limbo.Umbraco.Spa -Version 1.0.0-alpha005
Changelog
- Fixed meta data factory Open Graph title (see 8548914)
The Open Graph title is now based onmetaData.Title
instead ofcontent.Name
. This means that the title for both Open Graph and Twitter Cards can be controlled via theSpaMetaDataFactory.GetTitle
method.
v1.0.0-alpha004
New alpha release for Umbraco 9 🎉
Installation
Via NuGet:
dotnet add package Limbo.Umbraco.Spa --version 1.0.0-alpha004
or:
Install-Package Limbo.Umbraco.Spa -Version 1.0.0-alpha004
Changelog
- Fixed bad domain lookup (see d45b010)
Due to an inverted if statement that shouldn't be inverted, the package failed to look up domains that didn't include a custom port number.