Skip to content

Releases: abjerner/Limbo.Umbraco.BlockList

v13.0.2

25 Nov 12:10
Compare
Choose a tag to compare

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

Installation

Via NuGet:

.NET CLI:

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

NuGet Package Manager:

Install-Package Limbo.Umbraco.BlockList -Version 13.0.2

Changelog

  • Fix for the "Type Converter" data type option (see e4124cd)
    The underlying controller would fail on new data types, making the option pretty useless for new sites or just new data types in general. Not sure how I missed that 🤦‍♂️

v13.0.1

13 Nov 22:28
Compare
Choose a tag to compare

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

Installation

Via NuGet:

.NET CLI:

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

NuGet Package Manager:

Install-Package Limbo.Umbraco.BlockList -Version 13.0.1

Changelog

  • Added [IgnoreDataMember] attribute to the IsSinglePicker property (see d14ac15)
    The property shouldn't be serialized so we better ignore it.

  • Updated the Skybrud.Essentials dependency (see 08d7c41)
    This updates the package dependency from v1.1.56 to v1.1.57.

  • Updated the logic around how the type converter option is saved (see a1ef9cc)
    The type converter option value is now saved as an object instead of just a string. This doesn't change much at the moment, but it let's us save additional data for the type converter at a later point.

v3.0.7

07 Mar 09:26
Compare
Choose a tag to compare

New stable release for Umbraco 10-12. This release will not work with other versions of Umbraco.

Installation

Via NuGet:

.NET CLI:

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

NuGet Package Manager:

Install-Package Limbo.Umbraco.BlockList -Version 3.0.7

Changelog

  • Added [IgnoreDataMember] attribute to the IsSinglePicker property (see 665b4a7)
    The property only has a getter and the return value is based on the ValidationLimit.Max property from the parent BlockListConfiguration class. As this is an auto-property we it shouldn't be serialized.

v13.0.0

21 Feb 12:10
Compare
Choose a tag to compare

First release for Umbraco 13. This release will not work with other versions of Umbraco.

Installation

Via NuGet:

.NET CLI:

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

NuGet Package Manager:

Install-Package Limbo.Umbraco.BlockList -Version 13.0.0

v3.0.6

21 Feb 09:21
Compare
Choose a tag to compare

New stable release for Umbraco 10-12. This release will not work with other versions of Umbraco.

Installation

Via NuGet:

.NET CLI:

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

NuGet Package Manager:

Install-Package Limbo.Umbraco.BlockList -Version 3.0.6

Changelog

  • Updated the Skybrud.Essentials dependency (see 735cc8f)
    The package is now using the newest version of our Skybrud.Essentials package.

  • Minor updates to the manifest filter (see 735cc8f)
    The manifest filter will now include the package ID for versions of Umbraco where this is available.

v3.0.5

08 Sep 10:38
Compare
Choose a tag to compare

New stable 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.5

NuGet Package Manager:

Install-Package Limbo.Umbraco.BlockList -Version 3.0.5

Changelog

  • Added new cache level data type option (see d38cf96)
    Sometimes it can be useful to control the cache level, so now there is an option for it.

  • Updated the Skybrud.Essentials dependency (see cf1c7eb)
    The package is now using the newest version of our Skybrud.Essentials package.

v3.0.4

04 Jul 19:53
Compare
Choose a tag to compare

New stable 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.4

Package Manager:

Install-Package Limbo.Umbraco.BlockList -Version 3.0.4

Changelog

  • Updated the upper bound for the Umbraco dependencies to allow using the package with Umbraco 12 (see 16c7f9f)
    As Umbraco 12 was released earlier this week, and no changes are required for the package to run on Umbraco 12, the upper bound of the Umbraco dependencies has been raised to allow running on Umbraco 12.

  • Updated the Skybrud.Essentials dependency (see 6ab35cd)
    The package is now using the newest version of our Skybrud.Essentials package.

v3.0.3

17 Mar 08:58
Compare
Choose a tag to compare

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

Installation

Via NuGet:

.NET CLI:

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

Package Manager:

Install-Package Limbo.Umbraco.BlockList -Version 3.0.3

Changelog

  • Updated the package information (see c8f8d0b)
    This release updates the information the package exposes about it self. Among other things, this means that the package name and version is now shown when viewing installed packages in the Umbraco backoffice.

  • Fixed issue with type converter key/alias (b125494)
    The package used a key/alias that was based on the type's assembly qualified name, but this includes the version of the assembly, causing the same reference to break if the assembly version changes in the future. With this release, the package is still using the type's assembly qualified name, but without the assembly version.

  • Added support for single block mode (see 3dc1cc6)
    As Umbraco has introduces a single block mode, this is now also supported by this package. Custom type converters may however need to be updated to support this mode.

  • Updated the Skybrud.Essentials dependency (see 67e275b)
    The package is now using the newest version of our Skybrud.Essentials package.

  • Raised the upper bound for the Umbraco dependencies (see 4717897)
    So far the package has had an upper bound for the Umbraco dependencies that disallowed installing the package on Umbraco 11. With this release, the package now allows installing in for both Umbraco 10 and Umbraco 11.

v3.0.2

21 Nov 14:25
Compare
Choose a tag to compare

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

Installation

Via NuGet:

.NET CLI:

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

Package Manager:

Install-Package Limbo.Umbraco.BlockList -Version 3.0.2

Changelog

  • Added upper bound for Umbraco dependencies (see bb9ed03)
    This branch currently only supports Umbraco 10 and 11, so the version restriction now reflects this.

v2.0.2

21 Nov 14:17
Compare
Choose a tag to compare

New release for Umbraco 9 🎉

Installation

Changelog

This release only changes meta data of the NuGet package. It doesn't contain any new code changes.