Releases: skybrud/Skybrud.Umbraco.BorgerDk
v4.0.0
First stable release for Umbraco 9. This release will not work with earlier versions of Umbraco.
Installation
Install via NuGet - either by using the .NET CLI:
dotnet add package Skybrud.Umbraco.BorgerDk --version 4.0.0
or the NuGet package manager:
Install-Package Skybrud.Umbraco.BorgerDk -Version 4.0.0
v3.0.0
Skybrud.Umbraco.BorgerDk v4.0.0-beta001
New beta release for Umbraco 9. This release will not work with earlier versions of Umbraco.
Installation
Install via NuGet - either by using the .NET CLI:
dotnet add package Skybrud.Umbraco.BorgerDk --version 4.0.0-beta001
or the NuGet package manager:
Install-Package Skybrud.Umbraco.BorgerDk -Version 4.0.0-beta001
Skybrud.Umbraco.BorgerDk v3.0.0-beta003
New beta release for Umbraco 8. This release will not work for Umbraco 7.
Installation
Install via NuGet:
Install-Package Skybrud.Umbraco.BorgerDk -Version 3.0.0-beta003
Changelog
-
Implemented background tasks for regularly updating articles in the background (see c1adbc2)
Updating articles in the background has until now been something we'd have to handle in each solution where this package is installed, but with this release, this is now handled by a background task. -
Updated the
Skybrud.Essentials
dependency (see d0e2e88)
Not directly related to this package, but newer releases contains various fixes and improvements. -
Updated the
Skybrud.WebApi.Json
dependency (see d0e2e88 and 6e1d389)
Also not directly to this package, but nice to have this one updated to the latest version as well.
Skybrud.Umbraco.BorgerDk v3.0.0-beta002
New beta release for Umbraco 8. This release will not work for Umbraco 7.
Installation
Skybrud.Umbraco.BorgerDk v3.0.0-beta001
First beta release for Umbraco 8. This release will not work for Umbraco 7.
Installation
Skybrud.Umbraco.BorgerDk v2.2.4
Installation
Changelog
-
Fixed issue with
BorgerDkArticleSelection
class when it's given an empty model(f641e93)
The old code would fail as it expected a municipality value which isn't present in an empty model. The code has now been updated to check against this. -
Search optimizations (see af40b51)
TheGetSearchableText
method in theBorgerDkArticleSelection
class automatically strips any HTML from the searchable text. But with the old implementation, the inner text of two HTML elements might end up with no separator, which could then lead to unexpected results. The method has now been updated to add a new file after each element that is replaced. -
Introduced new
ArticlesUpdated
event for the update background task (see 3419ef3)
TheUpdateArticles
method in theBorgerDkMaintenanceController
class is responsible for updating articles in the background, so that the articles are up-to-date in Umbraco. The newArticlesUpdated
event is triggered when a set of articles has been updated - this can for instance be used to do something with the pages referring to the updated articles (eg. make sure they are re-index in Examine).