Version 1.0.0-alpha003

Alpha
Date 2023-06-02 (606 days ago)
Downloads 1,954 downloads
NuGet View on NuGet
GitHub View on GitHub
Target Frameworks .NET 6
Umbraco Versions Umbraco 10 Umbraco 11

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

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