Skip to content

Commit

Permalink
Version 4.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
304NotModified committed Jan 5, 2019
1 parent dec477e commit 8952a5d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 13 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ See also [releases](https://github.com/NLog/NLog.Web/releases) and [milestones](

Date format: (year/month/day)

### v4.7.1-aspnetcore (2019/01/05)
- [#326](https://github.com/NLog/NLog.Web/pull/326) Added ThreadSafe-attribute for LayoutRenderer to optimize async Precalculate (@snakefoot)
- [#325](https://github.com/NLog/NLog.Web/pull/325) ${AspNetRequestIp} added CheckForwardedForHeader to check for X-Forwarded-For header (#325) (@Giorgi)
- [#322](https://github.com/NLog/NLog.Web/pull/322) Check that Content-Type is correct before accessing the Form (#322) (@mcliment)

### v4.7.1 aspnet4 (2019/01/05)
- [#330](https://github.com/NLog/NLog.Web/pull/330) aspnet-traceidentifier: Support for ASP.NET (non-core) - requires IIS ETW (@snakefoot)
- [#326](https://github.com/NLog/NLog.Web/pull/326) Added ThreadSafe-attribute for LayoutRenderer to optimize async Precalculate (@snakefoot)
- [#325](https://github.com/NLog/NLog.Web/pull/325) ${AspNetRequestIp} added CheckForwardedForHeader to check for X-Forwarded-For header (#325) (@Giorgi)

### v4.7-aspnetcore & aspnet4 (2018/09/22)
- [#315](https://github.com/NLog/NLog.Web/pull/315) Added ${configsetting} for reading appsettings.json etc - via NLog.Extensions.Logging (@304NotModified) (ASP.NET Core only)
- [#313](https://github.com/NLog/NLog.Web/pull/313) Added ${aspnet-request-form} (@DrewBrasher)
Expand Down
10 changes: 4 additions & 6 deletions NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<TargetFrameworks>netstandard1.5;net451;net461;netstandard2.0</TargetFrameworks>

<VersionPrefix>4.7</VersionPrefix>
<VersionPrefix>4.7.1</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Version>$(VersionPrefix)$(VersionSuffix)</Version>
<InformationalVersion>$(Version)</InformationalVersion>
Expand All @@ -30,11 +30,9 @@ Supported platforms:
<PackageId>NLog.Web.AspNetCore</PackageId>
<PackageTags>logging;log;session;NLog;web;aspnet;aspnetcore;MVC;httpcontext</PackageTags>
<PackageReleaseNotes>
- Added ${aspnet-request-form} (@DrewBrasher)
- Added ${configsetting} for reading appsettings.json etc - via NLog.Extensions.Logging (@304NotModified)
- Make separators layoutable for (${aspnet-request-querystring} and ${aspnet-request-cookie}) (@304NotModified)
- Better missing httpcontext reporting &amp; Skip null-check of HttpContextAccessor.HttpContext in DoAppend (@snakefoot)
- Removed dependency on Microsoft.AspNetCore.Http.Extensions (@snakefoot)
- Added ThreadSafe-attribute for LayoutRenderer to optimize async Precalculate (@snakefoot)
- ${AspNetRequestIp} added CheckForwardedForHeader to check for X-Forwarded-For header (#325) (@Giorgi)
- Check that Content-Type is correct before accessing the Form (#322) (@mcliment)
</PackageReleaseNotes>
<PackageIconUrl>http://nlog-project.org/N.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/NLog/NLog.Web</PackageProjectUrl>
Expand Down
6 changes: 3 additions & 3 deletions NLog.Web/NLog.Web.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ This package is for ASP.NET 3.5+

For ASP.NET Core: Check https://www.nuget.org/packages/NLog.Web.AspNetCore</description>
<releaseNotes>
- Added ${aspnet-request-form} (@DrewBrasher)
- Make separators layoutable for (${aspnet-request-querystring} and ${aspnet-request-cookie}) (@304NotModified)
- Better missing HttpContext reporting &amp; Skip null-check of HttpContextAccessor.HttpContext in DoAppend (@snakefoot)
- aspnet-traceidentifier: Support for ASP.NET (non-core) - requires IIS ETW (@snakefoot)
- Added ThreadSafe-attribute for LayoutRenderer to optimize async Precalculate (@snakefoot)
- ${AspNetRequestIp} added CheckForwardedForHeader to check for X-Forwarded-For header (#325) (@Giorgi)
</releaseNotes>
<copyright>Copyright 2014-2018</copyright>
<tags>nlog log target layoutrenderer web asp.net httpcontext</tags>
Expand Down
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 4.7.0.{build}
version: 4.7.1.{build}
clone_folder: c:\projects\nlogweb
configuration: Release
image: Visual Studio 2017
Expand All @@ -7,8 +7,8 @@ assembly_info:
patch: true
file: '**\AssemblyInfo.cs'
assembly_version: '4.0.0'
assembly_file_version: '4.7.0.{build}' #NLog.Web
assembly_informational_version: '4.7.0' #NLog.Web
assembly_file_version: '4.7.1.{build}' #NLog.Web
assembly_informational_version: '4.7.1' #NLog.Web
nuget:
project_feed: true
matrix:
Expand All @@ -20,7 +20,7 @@ build:

build_script:
- cmd: >-
call build_aspnet.bat -nuget_version=4.7.0 # NLog.Web package
call build_aspnet.bat -nuget_version=4.7.1 # NLog.Web package
call build_aspnetcore.bat # update NLog.Web.AspNetCore.csproj for version number
Expand Down

0 comments on commit 8952a5d

Please sign in to comment.