Skip to content

v3.0.1

Compare
Choose a tag to compare
@abjerner abjerner released this 11 Nov 09:18
· 28 commits to v3/main since this release

First release for Umbraco 10. This release will not work on older versions of Umbraco.

Installation

Via NuGet:

.NET CLI:

dotnet add package Limbo.Umbraco.BlockList --version 3.0.1

Package Manager:

Install-Package Limbo.Umbraco.BlockList -Version 3.0.1

Changelog

  • Property editor constants should be public, although most importantly EditorAlias (see 6829a1d)
    Making the constants public ensures that they can be used by code outside of the package.

  • The return value of the IBlockListTypeConverter.Convert method is now marked as nullable (see 052292e)
    The return value may be null in some situations, to the API contract should reflect this. Eg. if the configuration has a limit of 1, the converter might be in single item mode.