From 706e2f4ef8d9a78542d65906bbb334811d0301bb Mon Sep 17 00:00:00 2001 From: Julian Verdurmen <304NotModified@users.noreply.github.com> Date: Sat, 27 Feb 2021 17:27:05 +0100 Subject: [PATCH] Release 4.11 (#645) --- CHANGELOG.MD | 17 +++++++++++++++++ appveyor.yml | 4 ++-- .../NLog.Web.AspNetCore.csproj | 13 ++++++++----- 3 files changed, 27 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 006f6218..b8aa1549 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -3,6 +3,23 @@ See also [releases](https://github.com/NLog/NLog.Web/releases) and [milestones](https://github.com/NLog/NLog.Web/milestones). Date format: (year/month/day) +### v4.11-aspnetcore (2021/02/27) +- [#644](https://github.com/NLog/NLog.Web/pull/644) Added readme.txt for the NuGet packages (#644) (@304NotModified) +- [#639](https://github.com/NLog/NLog.Web/pull/639) Enable deterministic build (#639) (@304NotModified) +- [#642](https://github.com/NLog/NLog.Web/pull/642) Added SourceLink (#642) (@304NotModified) +- [#631](https://github.com/NLog/NLog.Web/pull/631) AspNetLayoutRendererBase - Added more debug-info when failing to lookup HttpContext (#631) (@snakefoot) +- [#630](https://github.com/NLog/NLog.Web/pull/630) HttpContext - Extended ObjectDisposedException handling (#630) (@snakefoot) +- [#631](https://github.com/NLog/NLog.Web/pull/631) AspNetLayoutRendererBase - Added more debug-info when failing to lookup HttpContext (#631) (@snakefoot) +- [#626](https://github.com/NLog/NLog.Web/pull/626) Add AddNLogWeb with NLog LogFactory and NLogAspNetCoreOptions for better isolation (#626) (@snakefoot) +- [#641](https://github.com/NLog/NLog.Web/pull/641) Bump NLog.Extensions.Logging from 1.7.0 to 1.7.1 (#641) (@dependabot[bot]) + +### v4.11-aspnet4 (2021/02/27) +- [#644](https://github.com/NLog/NLog.Web/pull/644) Added readme.txt for the NuGet packages (#644) (@304NotModified) +- [#639](https://github.com/NLog/NLog.Web/pull/639) Enable deterministic build (#639) (@304NotModified) +- [#642](https://github.com/NLog/NLog.Web/pull/642) Added SourceLink (#642) (@304NotModified) +- [#635](https://github.com/NLog/NLog.Web/pull/635) Fix AssemblyVersionLayoutRenderer on ASP.NET to work with async=true (#634, #635) (@snakefoot) +- [#631](https://github.com/NLog/NLog.Web/pull/631) AspNetLayoutRendererBase - Added more debug-info when failing to lookup HttpContext (#631) (@snakefoot) +- [#636](https://github.com/NLog/NLog.Web/pull/636) Bump NLog from 4.7.6 to 4.7.8 (#629, #636) (@dependabot[bot]) ### v4.10-aspnetcore (2020/12/30) - [#614](https://github.com/NLog/NLog.Web/pull/614) ASPNETCORE_ENVIRONMENT takes now precedence over DOTNET_ENVIRONMENT (#614) (@snakefoot) diff --git a/appveyor.yml b/appveyor.yml index 685019e0..3d209d19 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 4.10.0.{build} +version: 4.11.0.{build} clone_folder: c:\projects\nlogweb configuration: Release image: Visual Studio 2019 @@ -17,7 +17,7 @@ skip_tags: true build_script: - ps: | - $versionPrefix = "4.10.0" + $versionPrefix = "4.11.0" $versionSuffix = "" $versionBuild = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER} $versionNuget = $versionPrefix diff --git a/src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj b/src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj index 62085f7c..a54b1efc 100644 --- a/src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj +++ b/src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj @@ -21,11 +21,14 @@ Supported platforms: NLog.Web.AspNetCore logging;log;NLog;web;aspnet;aspnetcore;MVC;Microsoft.Extensions.Logging;httpcontext;session -- ASPNETCORE_ENVIRONMENT takes now precedence over DOTNET_ENVIRONMENT (#614) (@snakefoot) -- Move to PackageIcon and PackageLicenseExpression for NuGet package (#616) (@snakefoot, @304NotModified) -- Added support for HttpContext.User claim lookup using ${aspnet-user-claim} (#609) (@snakefoot) -- Introduced AddNLogWeb to avoid conflict with AddNLog from NLog.Extension.Logging (#602) (@snakefoot) -- Updated NLog.Extensions.Logging dependency +- Added readme.txt for the NuGet packages (#644) (@304NotModified) +- Added SourceLink (#642) (@304NotModified) +- Enable deterministic build (#639) (@304NotModified) +- AspNetLayoutRendererBase - Added more debug-info when failing to lookup HttpContext (#631) (@snakefoot) +- HttpContext - Extended ObjectDisposedException handling (#630) (@snakefoot) +- AspNetLayoutRendererBase - Added more debug-info when failing to lookup HttpContext (#631) (@snakefoot) +- Add AddNLogWeb with NLog LogFactory and NLogAspNetCoreOptions for better isolation (#626) (@snakefoot) +- Bump NLog.Extensions.Logging from 1.7.0 to 1.7.1 (#641) (@dependabot[bot]) See also https://github.com/NLog/NLog.Web/releases