Releases: skybrud/Skybrud.Umbraco.Feedback
v4.0.0-alpha002
New alpha release for Umbraco 9 🎉
Installation
Install via NuGet - either via the .NET CLI:
dotnet add package Skybrud.Umbraco.Feedback --version 4.0.0-alpha002
or the NuGet package manager:
Install-Package Skybrud.Umbraco.Feedback -Version 4.0.0-alpha002
v3.0.0
Skybrud.Umbraco.Feedback v4.0.0-alpha001
First alpha release for Umbraco 9 🎉
Installation
Install for Umbraco 9 via NuGet:
dotnet add package Skybrud.Umbraco.Feedback --version 4.0.0-alpha001
Skybrud.Umbraco.Feedback v2.0.0-beta006
New beta release for Umbraco 7.
Installation
Changelog
- Added support for batch operations (see 94ef3dd)
It's now possible to select multiple entries within the current page to archive them, delete them or change their status.
Skybrud.Umbraco.Feedback v3.0.0-alpha004
New alpha release for Umbraco 8.
Installation
Changelog
- If not specified, the
Name
,Email
, andComment
fields should always benull
instead of an empty string (see 193f78b)
This was an issue in theFeedbackService.UpdateEntry
method, which now has been updated both to trim the input value, and replace the trim result withnull
should it be empty. The fix also adds a new migration that will fix existing feedback in the database.
Skybrud.Umbraco.Feedback v3.0.0-alpha003
Skybrud.Umbraco.Feedback v3.0.0-alpha002
Skybrud.Umbraco.Feedback v3.0.0-alpha001
Skybrud.Umbraco.Feedback v2.0.0-beta005
Changelog
-
The
SetStatus
andSetAssignedTo
methods should update theFeedbackEntry
instance directly instead of the underlyingFeedbackDatabaseEntry
instance (see 62cfe50)
When only updating theFeedbackDatabaseEntry
instance, changes won't be reflected in the correspondingFeedbackEntry
instance. This the status or responsible user before the changes is returned in the API instead of the new value. The code has now been updated to change theFeedbackEntry
instance directly, which then also automatically updates theFeedbackDatabaseEntry
instance. -
Added missing translation keys for
en-US
(see 7111152)
Two of the translation keys were missing foren-US
.
Skybrud.Umbraco.Feedback v2.0.0-beta004
Changelog
-
Added new cleanup feature (see 680b1d6)
The new feature now allows editors to delete all entries made before a given date.