Skip to content

Commit

Permalink
Version 4.10 (#624)
Browse files Browse the repository at this point in the history
* Version 4.10

* Update CHANGELOG.MD
  • Loading branch information
304NotModified authored Dec 30, 2020
1 parent 45ff3f2 commit 4d93d00
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ See also [releases](https://github.com/NLog/NLog.Web/releases) and [milestones](

Date format: (year/month/day)

### 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)
- [#616](https://github.com/NLog/NLog.Web/pull/616) Move to PackageIcon and PackageLicenseExpression for NuGet package (#616) (@snakefoot, @304NotModified)
- [#609](https://github.com/NLog/NLog.Web/pull/609) Added support for HttpContext.User claim lookup using ${aspnet-user-claim} (#609) (@snakefoot)
- [#602](https://github.com/NLog/NLog.Web/pull/602) Introduced AddNLogWeb to avoid conflict with AddNLog from NLog.Extension.Logging (#602) (@snakefoot)
- Updated NLog.Extensions.Logging dependency (Various pull requests)

### v4.10-aspnet4 (2020/12/30)
- [#616](https://github.com/NLog/NLog.Web/pull/616) Move to PackageIcon and PackageLicenseExpression for NuGet package (#616) (@snakefoot, @304NotModified)
- Updated NLog dependency (Various pull requests)

### v4.9.3-aspnetcore (2020/08/01)
- [#549](https://github.com/NLog/NLog.Web/pull/549) ${aspnet-request-posted-body}: Use Async reading to prevent "Synchronous operations are disallowed" (#549) (@304NotModified)
- [#570](https://github.com/NLog/NLog.Web/pull/570) ${aspnet-session} - added ValueType to handle integer session values (#570) (@304NotModified)
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 4.9.3.{build}
version: 4.10.0.{build}
clone_folder: c:\projects\nlogweb
configuration: Release
image: Visual Studio 2019
Expand All @@ -22,7 +22,7 @@ skip_tags: true

build_script:
- ps: |
$versionPrefix = "4.9.3"
$versionPrefix = "4.10.0"
$versionSuffix = ""
$versionBuild = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
$versionNuget = $versionPrefix
Expand Down
10 changes: 6 additions & 4 deletions src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ NLog LoggerProvider for Microsoft.Extensions.Logging and ASP.NET Core platform.

Supported platforms:

- For ASP.NET Core 5, .NET 5
- For ASP.NET Core 3, .NET Core 3.0
- For ASP.NET Core 2, .NET Standard 2.0+ and .NET 4.6+
- For ASP.NET Core 1, .NET Standard 1.5+ and .NET 4.5.x
Expand All @@ -20,10 +21,11 @@ Supported platforms:
<PackageId>NLog.Web.AspNetCore</PackageId>
<PackageTags>logging;log;NLog;web;aspnet;aspnetcore;MVC;Microsoft.Extensions.Logging;httpcontext;session</PackageTags>
<PackageReleaseNotes>
- ${aspnet-request-posted-body}: Use Async reading to prevent "Synchronous operations are disallowed" (#549) (@304NotModified)
- ${aspnet-session} - added ValueType to handle integer session values (#570) (@304NotModified)
- LogManager.Setup() - SetupBuilderExtension with LoadConfigurationFromAppSettings (#540) (@snakefoot)
- Bump NLog.Extensions.Logging (#567) (@dependabot-preview[bot])
- 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

See also https://github.com/NLog/NLog.Web/releases
</PackageReleaseNotes>
Expand Down

0 comments on commit 4d93d00

Please sign in to comment.