Skip to content

Releases: skybrud/Skybrud.Umbraco.GridData

v5.0.3

17 Jul 20:55
Compare
Choose a tag to compare

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

Installation

Via NuGet:

.NET CLI:

dotnet add package Skybrud.Umbraco.GridData --version 5.0.3

Package Manager:

Install-Package Skybrud.Umbraco.GridData -Version 5.0.3

Changelog

  • Updated the upper bound for the Umbraco dependencies to allow using the package with Umbraco 12 (see 394d4eb)
    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 c03b7b7)
    Might as well reference the newest version.

v5.0.2

14 Mar 14:38
Compare
Choose a tag to compare

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

Installation

Via NuGet:

.NET CLI:

dotnet add package Skybrud.Umbraco.GridData --version 5.0.2

Package Manager:

Install-Package Skybrud.Umbraco.GridData -Version 5.0.2

Changelog

  • Fixed incorrect package name (see f98b84b)
    The package name is visible via Umbraco's list of installed package. The package should still use the "Skybrud" name, but I accidentally changed it to "Limbo".

v5.0.1

11 Mar 18:50
Compare
Choose a tag to compare

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

Installation

Via NuGet:

.NET CLI:

dotnet add package Skybrud.Umbraco.GridData --version 5.0.1

Package Manager:

Install-Package Skybrud.Umbraco.GridData -Version 5.0.1

Changelog

  • Added manifest filter to indicate package version and allow package telemetry (see f925c14)
    This primarily changes the information that the package exposes about it self. This release doesn't contain any changes to how the package is used.

v5.0.0

16 Feb 18:02
Compare
Choose a tag to compare

First stable release for Umbraco 10+. This release will not work with other versions of Umbraco.

Installation

Via NuGet:

.NET CLI:

dotnet add package Skybrud.Umbraco.GridData --version 5.0.0

Package Manager:

Install-Package Skybrud.Umbraco.GridData -Version 5.0.0

v5.0.0-alpha001

05 Dec 20:15
Compare
Choose a tag to compare

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

Installation

Via NuGet:

.NET CLI:

dotnet add package Skybrud.Umbraco.GridData --version 5.0.0-alpha001

Package Manager:

Install-Package Skybrud.Umbraco.GridData -Version 5.0.0-alpha001

v4.0.0

05 Dec 18:46
Compare
Choose a tag to compare

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

Installation

Via NuGet:

.NET CLI:

dotnet add package Skybrud.Umbraco.GridData --version 4.0.0

Package Manager:

Install-Package Skybrud.Umbraco.GridData -Version 4.0.0

v3.0.3

05 Dec 18:24
Compare
Choose a tag to compare

Installation

Via NuGet:

.NET CLI:

dotnet add package Skybrud.Umbraco.GridData --version 3.0.3

Package Manager:

Install-Package Skybrud.Umbraco.GridData -Version 3.0.3

Changelog

  • Added upper bound to the Umbraco dependencies (see d2c62a7)
    The package now has an upper dependency to indicate that the package only targets Umbraco 8, and doesn't work with newer versions of Umbraco.

v2.0.8

05 Dec 17:34
Compare
Choose a tag to compare

Installation

Via NuGet:

.NET CLI:

dotnet add package Skybrud.Umbraco.GridData --version 2.0.8

Package Manager:

Install-Package Skybrud.Umbraco.GridData -Version 2.0.8

Changelog

  • Added upper bound to the Umbraco dependency (see 647bcfb)
    The package now has a public dependency for Umbraco 7.x and the dependency now also has an upper bound to indicate that this release does not work with Umbraco 8 or newer.

Skybrud.Umbraco.GridData v4.0.0-alpha002

29 Sep 21:10
Compare
Choose a tag to compare

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

Albeit this being an alpha release, I'm not aware of any issues with the implementation. But there a few things I'd like to run through before I'm pushing a stable release.

Installation

Via NuGet:

.NET CLI:

dotnet add package Skybrud.Umbraco.GridData --version 4.0.0-alpha002

Package Manager:

Install-Package Skybrud.Umbraco.GridData -Version 4.0.0-alpha002

Changelog

  • Updated Umbraco dependencies til v9.0.0 (see b23046e)
    Since Umbraco 9 has now officially been released, this package now builds against a stable version of Umbraco 9 🎉

  • Updated Skybrud.Essentials dependency to v1.1.30 (452eec2)
    While not directly related to the grid package, the newest release of Skybrud.Essentials contains a bug fix and some additions, so might as well bump the version.

Skybrud.Umbraco.GridData v3.0.2

26 Sep 15:37
Compare
Choose a tag to compare

New release for Umbraco 8. This release will not work with Umbraco 7.

Installation

Changelog

  • Introduced new IGridElementConverter interface (see 5b08a79)
    The interface and related logic adds a way to get the searchable text for controls that may hold IPublishedElement values - eg. when using DTGE.

  • Added generic support for GridControl and GridEditor (see c77d7cf and 8f28276)
    Backported from the V9 version of this package.

    For editor that has a configuration, the returned type is now GridEditor<TConfig> instead of just GridEditor, which results in the Config property being of type TConfig of IGridEditorConfig. GridEditor<TConfig> extends the GridEditor class, and TConfig must implement the IGridEditorConfig to ensure this doesn't cause any breaking changes.

    In the same way, controls will now be returned as GridControl<TValue> if is has a value - or even GridControl<TValue, TConfig> if the editor of the control also has a configuration. GridControl<TValue, TConfig> extends GridControl<TValue> which extends GridControl, and TValue must implement the IGridControlValue interface.