Skip to content

Commit

Permalink
Version 5.2.3 (#929)
Browse files Browse the repository at this point in the history
  • Loading branch information
snakefoot authored Mar 28, 2023
1 parent 36f16c9 commit 05c0d8b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ See also [releases](https://github.com/NLog/NLog.Web/releases) and [milestones](

Date format: (year/month/day)

### Version 5.2.3 (2023/03/28)

- **NLog.Web.AspNetCore**
- [#929](https://github.com/NLog/NLog.Web/pull/929) Updated dependency NLog.Extensions.Logging v5.2.3 (#929) (@snakefoot)

- **NLog.Web**
- [#929](https://github.com/NLog/NLog.Web/pull/929) Updated dependency NLog v5.1.3 (#929) (@snakefoot)

### Version 5.2.2 (2023/02/17)

- **NLog.Web.AspNetCore**
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# creates NuGet package at \artifacts
dotnet --version

$versionPrefix = "5.2.2" # Also update version for minor versions in appveyor.yml
$versionPrefix = "5.2.3" # Also update version for minor versions in appveyor.yml
$versionSuffix = ""
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
if ($env:APPVEYOR_PULL_REQUEST_NUMBER) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<package id="Microsoft.jQuery.Unobtrusive.Validation" version="3.1.2" targetFramework="net461" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net461" />
<package id="Modernizr" version="2.8.3" targetFramework="net461" />
<package id="NLog" version="5.1.2" targetFramework="net461" />
<package id="NLog" version="5.1.3" targetFramework="net461" />
<package id="System.Diagnostics.DiagnosticSource" version="4.4.1" targetFramework="net461" />
<package id="WebGrease" version="1.6.0" targetFramework="net461" />
</packages>
9 changes: 2 additions & 7 deletions src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,7 @@ Integrates NLog as provider for Microsoft.Extensions.Logging, and provides NLog
<PackageReleaseNotes>
ChangeLog:

- AspNetQueryStringLayoutRenderer - Added Exclude-option for consistency (#917) (@snakefoot)
- AspNetRequestFormLayoutRenderer - Added Items-option for consistency (#918) (@snakefoot)
- AspNet Response HttpStatusCode LayoutRenderer as Enum.ToString (#921) (@bakgerman)
- AspNet Request-Ip with support for CheckForwardedForHeaderOffset (#923) (@bakgerman)
- AspNetBufferingTargetWrapper - BufferGrowLimit cealing BufferSize (#924) (@snakefoot)
- Updated dependency NLog.Extensions.Logging v5.2.2 (#927) (@snakefoot)
- Updated dependency NLog.Extensions.Logging v5.2.3 (#929) (@snakefoot)

List of major changes in NLog 5.0: https://nlog-project.org/2022/05/16/nlog-5-0-finally-ready.html

Expand Down Expand Up @@ -76,7 +71,7 @@ List of available Layout Renderers: https://nlog-project.org/config/?tab=layout-
<DefineConstants>$(DefineConstants);ASP_NET_CORE;ASP_NET_CORE3</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.2" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.3" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'net461' ">
<!-- Fixed to 2.1.0 as 2.1 is Long Term Supported (LTS) and only supported version for .NET Framework 4.6.1 -->
Expand Down
2 changes: 1 addition & 1 deletion src/NLog.Web/NLog.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ List of available Layout Renderers: https://nlog-project.org/config/?tab=layout-
<DownloadFile SourceUrl="https://nlog-project.org/N.png" DestinationFolder="$(MSBuildThisFileDirectory)" />
</Target>
<ItemGroup>
<PackageReference Include="NLog" Version="5.1.2" />
<PackageReference Include="NLog" Version="5.1.3" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit 05c0d8b

Please sign in to comment.