Skip to content

Releases: limbo-works/Limbo.Umbraco.Spa

v13.0.0-alpha004

09 Jan 11:36
Compare
Choose a tag to compare

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

07 Jan 10:19
Compare
Choose a tag to compare

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.

v13.0.0-alpha002

08 May 18:46
Compare
Choose a tag to compare

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

18 Mar 17:32
Compare
Choose a tag to compare

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

  • Removed teapot status code (see 69a2d88)

  • Updated Skybrud dependencies (see 1d223eb)

  • Added upper bound for Umbraco dependencies (see 1d223eb)

  • Updated the NotFoundPage constant to no longer use the sky prefix (eb6e370)

v13.0.0-alpha001

09 Feb 15:24
Compare
Choose a tag to compare

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

14 Sep 11:06
Compare
Choose a tag to compare

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

28 Aug 09:12
Compare
Choose a tag to compare

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

08 Nov 16:46
Compare
Choose a tag to compare

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

23 Sep 09:37
Compare
Choose a tag to compare

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 on metaData.Title instead of content.Name. This means that the title for both Open Graph and Twitter Cards can be controlled via the SpaMetaDataFactory.GetTitle method.

v1.0.0-alpha004

15 Sep 09:39
Compare
Choose a tag to compare

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.