Releases: skybrud/Skybrud.Umbraco.Redirects
v4.0.21
New release for Umbraco 10-12. This release will not work on other versions of Umbraco.
Installation
Via NuGet:
.NET CLI:
dotnet add package Skybrud.Umbraco.Redirects --version 4.0.21
NuGet Package Manager:
Install-Package Skybrud.Umbraco.Redirects -Version 4.0.21
Changelog
-
Added fix for broken query string forwarding (see #193 and 07f257a)
The logic around query string forwarding was accidentally broken inv4.0.19
, but should now be working again. -
Fixed issue with site node option being overwritten when editing a redirect through the content app (see #194 and d6562e3)
The purpose of the affected code was to pre-select the site node when adding a new redirect via the content app. Unfortunately the code also applied when editing an existing redirect, thereby overwriting the selected value in the UI.
v13.0.2
New release for Umbraco 13. This release will not work on other versions of Umbraco.
Installation
Via NuGet:
.NET CLI:
dotnet add package Skybrud.Umbraco.Redirects --version 13.0.2
NuGet Package Manager:
Install-Package Skybrud.Umbraco.Redirects -Version 13.0.2
Changelog
-
Removed targets file (see 5b7a98d)
The targets file is included in the v4 releases to clean up if after the V3 package or v4.0.0. From v4.0.1 and up, the package has been a Razor Class Library, meaning the targets file hasn't really been necessary for a while. -
Minor updates to the manifest filter (see 542fb18)
Internal change that doesn't affect the package usage.
v13.0.1
New release for Umbraco 13. This release will not work on other versions of Umbraco.
Installation
Via NuGet:
.NET CLI:
dotnet add package Skybrud.Umbraco.Redirects --version 13.0.1
NuGet Package Manager:
Install-Package Skybrud.Umbraco.Redirects -Version 13.0.1
Changelog
v4.0.20
New release for Umbraco 10-12. This release will not work on other versions of Umbraco.
Installation
Via NuGet:
.NET CLI:
dotnet add package Skybrud.Umbraco.Redirects --version 4.0.20
Package Manager:
Install-Package Skybrud.Umbraco.Redirects -Version 4.0.20
Changelog
v13.0.0
v4.0.19
New release for Umbraco 10-12. This release will not work on other versions of Umbraco.
Installation
Via NuGet:
.NET CLI:
dotnet add package Skybrud.Umbraco.Redirects --version 4.0.19
Package Manager:
Install-Package Skybrud.Umbraco.Redirects -Version 4.0.19
Changelog
- Optimizaions to the
RedirectsService.GetRedirectByPathAndQuery
method (see e69ac96)
By improving the SQL queries a bit, two SQL calls can be merged into one roughly halving the execution time.
v13.0.0-alpha001
First alpha release for Umbraco 13. This release will not work on other versions of Umbraco.
Installation
Via NuGet:
.NET CLI:
dotnet add package Skybrud.Umbraco.Redirects --version 13.0.0-alpha001
Package Manager:
Install-Package Skybrud.Umbraco.Redirects -Version 13.0.0-alpha001
v4.0.18
New release for Umbraco 10-12. This release will not work on other versions of Umbraco.
Installation
Via NuGet:
.NET CLI:
dotnet add package Skybrud.Umbraco.Redirects --version 4.0.18
Package Manager:
Install-Package Skybrud.Umbraco.Redirects -Version 4.0.18
Changelog
v4.0.17
New release for Umbraco 10+. This release will not work on older versions of Umbraco.
Installation
Via NuGet:
.NET CLI:
dotnet add package Skybrud.Umbraco.Redirects --version 4.0.17
Package Manager:
Install-Package Skybrud.Umbraco.Redirects -Version 4.0.17
Changelog
v4.0.16
New release for Umbraco 10+. This release will not work on older versions of Umbraco.
Installation
Via NuGet:
.NET CLI:
dotnet add package Skybrud.Umbraco.Redirects --version 4.0.16
Package Manager:
Install-Package Skybrud.Umbraco.Redirects -Version 4.0.16
Changelog
-
Updated package manifest filter to set
PackageId
property in Umbraco 12 (see ed9ffe9)
In Umbraco 12, thePackageManifest
class now has aPackageId
property to indicate the NuGet ID of a package. As of this release, the package uses reflection to set this property when the package is used with Umbraco 12. -
Updated the Skybrud.Essentials dependency (see f42901a)
Updated the dependency fromv1.1.48
tov1.1.52
.