Releases: abjerner/Limbo.Umbraco.BlockList
v1.0.2
New release for Umbraco 8 🎉
Installation
Changelog
This release only changes meta data of the NuGet package. It doesn't contain any new code changes.
v2.0.1
New release for Umbraco 9 🎉
Installation
Changelog
-
Changed visibility of
LimboBlockListPropertyEditor
constants from internal to public (see 5cae010)
Making the constants public ensures that they can be used by code outside of the package. -
Added upper bound for Umbraco dependencies (see a5f4cfc)
Both changes should help indicating which version of Umbraco this release supports.
v1.0.1
New release for Umbraco 8 🎉
Installation
Changelog
-
Changed visibility of
LimboBlockListPropertyEditor
constants from internal to public (see 2a9bec7)
Making the constants public ensures that they can be used by code outside of the package. -
Changed Umbraco package references to actual dependencies + added upper bound (see 0078c74)
Both changes should help indicating which version of Umbraco this release supports.
v3.0.1
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 benull
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.
v3.0.0
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.0
Package Manager:
Install-Package Limbo.Umbraco.BlockList -Version 3.0.0
Changelog
-
Updated package to build against Umbraco 10 (see 6ee190e)
The.csproj
file now has a dependency for Umbraco 10.0.0. -
Converted the package to a Razor Class Library (see fec8281)
To follow the Umbraco 10 trend, the package has now been converted to a Razor Class Library. -
Updated Skybrud.Essentials dependency (see c0fd65e)
This package now uses version 1.1.43 of Skybrud.Essentials. -
Improved type converter config option UI (see bc5fe37)
This hopefully makes the option a bit more friendly.