Version 13.0.0-alpha002

Alpha
Date 2025-10-16 (19 days ago)
Downloads 241 downloads
NuGet View on NuGet
GitHub View on GitHub
Target Frameworks .NET 8
Umbraco Versions Umbraco 13

#installation">Installation

Install via NuGet - either via the .NET CLI:

dotnet add package Limbo.Umbraco.FilterList --version 13.0.0-alpha002

or the NuGet package manager:

Install-Package Limbo.Umbraco.FilterList -Version 13.0.0-alpha002

#changelog">Changelog

  • Fixed property index value factory issue (see 07e6be7)
    In some cases, the values of a range slider field may be saved as [null, null] instead of something like [0, 123]. This would cause for the property index value factory - partly because the GetInt32 extension method for JArray would fails if the underlying type was null. Skybrud.Essentials has now been updated to just return the default value instead of failing, if the underlying type cannot be converted to a integer, and the property index value factory has been updated to use the TryGetInt32 method instead (now also added to Skybrud.Essentials) to make the code a bit nicer.