Releases: skybrud/Skybrud.Umbraco.Redirects.Import
v13.0.0
First release for Umbraco 13. This release will not work with other versions of Umbraco.
Installation
Install the NuGet package - either via the .NET CLI:
dotnet add package Skybrud.Umbraco.Redirects.Import --version 13.0.0
or the NuGet Package Manager:
Install-Package Skybrud.Umbraco.Redirects.Import -Version 13.0.0
v4.0.3
Installation
Install the NuGet package - either via the .NET CLI:
dotnet add package Skybrud.Umbraco.Redirects.Import --version 4.0.3
or the NuGet Package Manager:
Install-Package Skybrud.Umbraco.Redirects.Import -Version 4.0.3
Changelog
v4.0.2
Installation
Install the NuGet package - either via the .NET CLI:
dotnet add package Skybrud.Umbraco.Redirects.Import --version 4.0.2
or the NuGet Package Manager:
Install-Package Skybrud.Umbraco.Redirects.Import -Version 4.0.2
Changelog
-
Fixed issue with passing through correct ID when parsing root node from domain (see #26 and 74d4550)
Thanks to a PR from @jawood1 👍 -
Replaced traditional checkbox with checkbox component (see #24 and f9f30c2)
Thanks to a PR from @bjarnef 👍 -
Added additional CSV content types (see #19 and dcf7e98)
It appears that many system may use an incorrect content type for CSV files. With this release, more CSV content types are now supported. Thanks to @jawood1 for reporting 👍 -
Fixed issue with duplicate labels in Umbraco 12 (see #25 and a81661a)
Due to a somewhat breaking change in Umbraco 12, labels for the import and export buttons would be outputted twice. Thanks to @bjarnef for reporting 👍 -
Redirects list in the dashboard will now automatically be reloaded when closing the import overlay (see #28 and 657b547)
Thanks to @bjarnef for suggesting this 👍 -
Updated all dependencies except Umbraco (see 43a4d61)
TheClosedXML
as well as theSkybrud.Essentials
andSkybrud.Umbraco.Redirects
were updated to their newest versions.
v1.0.1
New release for Umbraco 7. This release will not work for other versions of Umbraco.
Installation
Install the NuGet package - either via the .NET CLI:
dotnet add package Skybrud.Umbraco.Redirects.Import --version 1.0.1
or the NuGet package manager:
Install-Package Skybrud.Umbraco.Redirects.Import -Version 1.0.1
Changelog
- Updated the
RedirectsExportController.Json
method so the JSON is correctly formatted (see dc86087 and 443fe5e)
Due to the[AngularJsonOnlyConfiguration]
attribute on the controller, the JSON would start with the)]}',\n
, thereby creating an invalid JSON file not supported by thev4.x
version of this package. This release removes the attribute and the method now handles the JSON serialization on it's own, and now prompts the JSON file to be downloaded rather than showing it inline in the browser.
v4.0.1
Installation
Install the NuGet package - either via the .NET CLI:
dotnet add package Skybrud.Umbraco.Redirects.Import --version 4.0.1
or the NuGet package manager:
Install-Package Skybrud.Umbraco.Redirects.Import -Version 4.0.1
Changelog
-
Added
esc
shortcut to overlays (see #17 and a3d69d0)
The import and export overlays can now be closed by pressing theesc
key. Thanks to PR from @bjarnef. -
Use button element instead on anchor in export overlay (see #18 and 11b60de)
Thanks to PR from @bjarnef. -
Replaced the CSV exporter separator
Default
option withComma
(see bdaf333)
Selecting theDefault
option would case the exporter to fail. -
Updated Skybrud dependencies (see c274e1a)
TheSkybrud.Essentials
andSkybrud.Umbrao.Redirects
were updated to their newest versions.
v4.0.0
v2.0.0
First release for Umbraco 8. This release does not support other versions of Umbraco.
Installation
Install via NuGet - either via the .NET CLI:
dotnet add package Skybrud.Umbraco.Redirects.Import --version 2.0.0
or the NuGet package manager:
Install-Package Skybrud.Umbraco.Redirects.Import -Version 2.0.0
v4.0.0-alpha005
Installation
Install the NuGet package - either via the .NET CLI:
dotnet add package Skybrud.Umbraco.Redirects.Import --version 4.0.0-alpha005
or the NuGet package manager:
Install-Package Skybrud.Umbraco.Redirects.Import -Version 4.0.0-alpha005
Changelog
- Updated the upper bound for the Umbraco dependencies to allow using the package with Umbraco 12 (see 203d40d)
As Umbraco 12 was released last 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.
v1.0.0
New release for Umbraco 7. This release will not work for other versions of Umbraco.
Installation
Install the NuGet package - either via the .NET CLI:
dotnet add package Skybrud.Umbraco.Redirects.Import --version 1.0.0
or the NuGet package manager:
Install-Package Skybrud.Umbraco.Redirects.Import -Version 1.0.0
v4.0.0-alpha004
Installation
Install the NuGet package - either via the .NET CLI:
dotnet add package Skybrud.Umbraco.Redirects.Import --version 4.0.0-alpha004
or the NuGet package manager:
Install-Package Skybrud.Umbraco.Redirects.Import -Version 4.0.0-alpha004
Changelog
-
Removed error message when import was successful (see #9 and c0efa90)
An incorrect check in the Angular view caused the error message to be shown even if the import was successful. Thanks to @pmpontes for fixing 👍 -
Updated the Skybrud.Essentials dependency (see c861ab4)
The dependency has been updated fromv1.1.47
to1.1.48
. -
Updated the Skybrud.Umbraco.Redirects dependency (see b1d2532)
The dependency has been updated fromv4.0.7
to4.0.8
. -
Enabled package telemetry and updated the information the package exposes about it self (see 327dd59)
This enables Umbraco to save a bit of telemetry data about the package. -
Improved error logging of the API controller (see 455e0f1)
The import and export endpoints of the package's API controller will now write exception messages to Umbraco's log. This makes debugging issues a lot easier. -
Updated the
ClosedXml
dependency (see b2bdeec)
This package relies on theClosedXml
package for reading and writing XLSX files. The dependency has now been updated to the newest version.