Version 13.0.0-beta002

Beta
Date 2024-09-18 (30 days ago)
Downloads 98 downloads
NuGet View on NuGet
GitHub View on GitHub
Target Frameworks .NET 8
Umbraco Versions Umbraco 13

New beta release for Umbraco 13. This release will not work for other versions of Umbraco.

#installation">Installation

Install the NuGet package - either via the .NET CLI:

dotnet add package Limbo.Umbraco.UrlPicker --version 13.0.0-beta002

or the NuGet package manager:

Install-Package Limbo.Umbraco.UrlPicker -Version 13.0.0-beta002

#changelog">Changelog

  • Fixed type returned by the UrlPickerItemConverterBase.ConvertList method (see 9d40126)
    If the data type is configured as a multi picker, the UrlPickerItemConverterBase class indicates that the return type is IReadOnlyList<T>, but returned values were IEnumerable<T>. With this release, returned values are now IReadOnlyList<T> as intended.

  • Changed property editor value type to JSON instead of TEXT (see d1fc2d7)
    This doesn't really change how values are saved in the database, as JSON and TEXT both use the textValue column in the umbracoPropertyData table, but Umbraco treats the two types slightly different.