Version 13.0.6

Date 2025-02-18 (45 days ago)
Downloads 2,972 downloads
NuGet View on NuGet
GitHub View on GitHub
Target Frameworks .NET 8
Umbraco Versions Umbraco 13

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

#installation">Installation

Via NuGet:

.NET CLI:

dotnet add package Skybrud.Umbraco.Redirects --version 13.0.6

NuGet Package Manager:

Install-Package Skybrud.Umbraco.Redirects -Version 13.0.6

#changelog">Changelog

  • Introduced factory method for back-office root nodes (see 6738dbf)
    The RedirectsController.GetRootNodes method is used for exposing the available root nodes to the back-office. Until now, the controller has handled converting the RedirectRootNode instances received from IRedirectsService to their RedirectRootNodeModel counterparts used in the back-office, but without any way to override this as the logic was placed in the controller.

    With this commit, some of that logic is now delegated to the RedirectsBackOfficeHelper.CreateRootNodeList method for the overall list, and the RedirectsBackOfficeHelper.CreateRootNode method for the individual root nodes. Both methods are virtual, meaning that they can be extended in classes extending the RedirectsBackOfficeHelper class.

  • Updated the logic for determining the absolute inbound URLs in the back-office (see 829e9f4)
    Historically the inbound URLs for the redirects exposed for the redirects dashboard has been relative URLs, which isn't always ideal - e.g. for site specific redirects, but also for solutions where the frontend domain doesn't match the domain used for accessing the back-office.

    With this commit, if a redirect has a root node, the new logic will try to determine a base URL from that root node. If this fails, or if a global redirect, the logic will now look for a new Skybrud:Redirects:FrontendUrl setting, which will then be used instead.

  • Added misc extension methods for configuring the package (see a5b8af4)
    The package now contains various ConfigureRedirects and PostConfigureRedirects extension methods for IServiceCollection. These extension methods may be used as shorthand for what is already possibly through native .NET extension methods.

  • Updated the Skybrud.Essentials dependency (see 2684010)
    Doesn't change anything specifically for the redirects package, but might as well update to the most recent patch release.