Skip to content

Commit

Permalink
3.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Chenery committed Nov 11, 2017
1 parent b37e7bd commit 0ca9a5f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Modules/UrlTrackerModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void Init(HttpApplication app)
// Prevent YSOD crash
// https://stackoverflow.com/questions/3712598/httpmodule-init-safely-add-httpapplication-beginrequest-handler-in-iis7-integr
app.PostResolveRequestCache -= Context_PostResolveRequestCache;
app.PostResolveRequestCache -= Context_PostResolveRequestCache;
app.PostResolveRequestCache += Context_PostResolveRequestCache;

LoggingHelper.LogInformation("UrlTracker HttpModule | Subscribed to AcquireRequestState events");

Expand Down
2 changes: 1 addition & 1 deletion Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
// Revision
//
[assembly: AssemblyVersion("3.14.*")]
[assembly: AssemblyInformationalVersion("3.14.0")]
[assembly: AssemblyInformationalVersion("3.14.1")]

// SQL
[assembly: WebResource("InfoCaster.Umbraco.UrlTracker.SQL.MicrosoftSqlServer.create-table-1.sql", "text/plain")]
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ Amount of time, in seconds, that the forced redirects will be cached for. Defaul
This setting does nothing unless **urlTracker:forcedRedirectCacheTimeoutEnabled** is true.

## Changelog ##
* 3.14.1 [2017/11/11]
* [Bugfix] Fixed a bug where forced redirects were ignored ([#176](https://github.com/kipusoep/UrlTracker/issues/176))
* 3.14 [2017/11/06]
* This release includes the fixes from the previous BETA builds
* 3.14-beta2 [2017/09/27]
Expand Down
7 changes: 2 additions & 5 deletions UrlTracker.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,14 @@
<authors>Stefan Kip</authors>
<owners>Stefan Kip</owners>
<licenseUrl>https://opensource.org/licenses/mit-license.php</licenseUrl>
<projectUrl>https://our.umbraco.org/projects/developer-tools/301-url-tracker</projectUrl>
<projectUrl>https://github.com/kipusoep/UrlTracker</projectUrl>
<iconUrl>http://our.umbraco.org/media/wiki/8046/635072564424992426_urltracker.png</iconUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<summary>The Url Tracker is used to manage URLs within Umbraco</summary>
<description>The Url Tracker is used to manage URLs within umbraco. It automatically tracks URL changes, for instance when a node is renamed, and makes sure the old URL will redirect to the new location. This is great for SEO and great for people visiting your website via this old URL. Search engines will update the indexed URL and people won't visit the old, broken URL.
You can also create your own redirects, based on a simple URL or using a Regex pattern. You can redirect to an existing node or a manually entered URL. This is great for migrating existing indexed URLs to your new website!</description>
<releaseNotes>
[Bugfix] Removed excessive logging
[Bugfix] Performance fixes for multiple domains
[Bugfix] Only subscribe to each event once
[Enhancement] Convert 410 entries to 301 when a node is republished
[Bugfix] Fixed a bug where forced redirects were ignored
</releaseNotes>
<tags>urltracker umbraco</tags>
</metadata>
Expand Down

0 comments on commit 0ca9a5f

Please sign in to comment.