Skip to content

v1.0.0-alpha003

Latest
Compare
Choose a tag to compare
@abjerner abjerner released this 02 Jun 14:10

New alpha release for Umbraco 10 and 11. This release will not work on older versions of Umbraco.

Installation

Via NuGet:

.NET CLI:

dotnet add package Limbo.Umbraco.Feedback --version 1.0.0-alpha003

Package Manager:

Install-Package Limbo.Umbraco.Feedback -Version 1.0.0-alpha003

Changelog

  • Added content ID check to the content app logic (see 093ce0d)
    This ensures that the content app isn't shown (and thereby doesn't fail) when trying to create a new site node.

  • Fixed issue with incorrect extension method being called (see 2813bb1)
    Umbraco/NPoco provides several OrderBy extension methods for Sql<T>, so the compiler would pick an incorrect overload, causing errors when sorting in ascending order. To be more specific about the method that we wish to use, this commit changes the code to call the via NPocoSqlExtensions.OrderBy like a static method instead.