Skip to content

Commit ffbea2a

Browse files
authored
Version 6.1.1 (#1115)
1 parent a2362b4 commit ffbea2a

8 files changed

Lines changed: 18 additions & 9 deletions

File tree

CHANGELOG.MD

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ See also [releases](https://github.com/NLog/NLog.Web/releases) and [milestones](
44

55
Date format: (year/month/day)
66

7+
### Version 6.1.1 (2026/01/31)
8+
9+
- **NLog.Web.AspNetCore**
10+
- [#1113](https://github.com/NLog/NLog.Web/pull/1113) Skip HttpRequest duration check when DurationThresholdMs = Zero (@snakefoot)
11+
- [#1115](https://github.com/NLog/NLog.Web/pull/1115) Updated dependency NLog v6.1 (@snakefoot)
12+
13+
- **NLog.Web**
14+
- [#1113](https://github.com/NLog/NLog.Web/pull/1113) Skip HttpRequest duration check when DurationThresholdMs = Zero (@snakefoot)
15+
- [#1115](https://github.com/NLog/NLog.Web/pull/1115) Updated dependency NLog v6.1 (@snakefoot)
16+
717
### Version 6.1.0 (2025/11/12)
818

919
- **NLog.Web.AspNetCore**

NLog.Web.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio Version 18
3-
VisualStudioVersion = 18.0.11205.157 d18.0
3+
VisualStudioVersion = 18.0.11205.157
44
MinimumVisualStudioVersion = 10.0.40219.1
55
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{52CA242D-DB20-41D9-8B79-A5A965ECA105}"
66
ProjectSection(SolutionItems) = preProject

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# creates NuGet package at \artifacts
33
dotnet --version
44

5-
$versionPrefix = "6.1.0"
5+
$versionPrefix = "6.1.1"
66
$versionSuffix = ""
77
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
88
if ($env:APPVEYOR_PULL_REQUEST_NUMBER) {

examples/ASP.NET 4.6.1/Visual Studio 2017/ASP.NET 4.6.1 - VS2017/ASP.NET 4.6.1 - VS2017.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<HintPath>..\..\..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
5050
</Reference>
5151
<Reference Include="NLog, Version=6.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
52-
<HintPath>..\..\..\..\packages\NLog.6.0.6\lib\net46\NLog.dll</HintPath>
52+
<HintPath>..\..\..\..\packages\NLog.6.1.0\lib\net46\NLog.dll</HintPath>
5353
</Reference>
5454
<Reference Include="System" />
5555
<Reference Include="System.Data" />

examples/ASP.NET 4.6.1/Visual Studio 2017/ASP.NET 4.6.1 - VS2017/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
<package id="Microsoft.jQuery.Unobtrusive.Validation" version="3.2.12" targetFramework="net461" />
1212
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net461" />
1313
<package id="Modernizr" version="2.8.3" targetFramework="net461" />
14-
<package id="NLog" version="6.0.6" targetFramework="net461" />
14+
<package id="NLog" version="6.1.0" targetFramework="net461" />
1515
<package id="WebGrease" version="1.6.0" targetFramework="net461" />
1616
</packages>

src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ Integrates NLog as provider for Microsoft.Extensions.Logging, and provides NLog
1616
<PackageReleaseNotes>
1717
ChangeLog:
1818

19-
- [#1110] Added NET10 targetframework (@snakefoot)
20-
- [#1110] aspnet-request-tls-handshake supporting NegotiatedCipherSuite + HostName (@snakefoot)
19+
- [#1113] Skip HttpRequest duration check when DurationThresholdMs = Zero (@snakefoot)
20+
- [#1115] Updated dependency NLog v6.1 (@snakefoot)
2121

2222
List of major changes in NLog v6.0: https://nlog-project.org/2025/04/29/nlog-6-0-major-changes.html
2323

@@ -72,7 +72,7 @@ List of available Layout Renderers: https://nlog-project.org/config/?tab=layout-
7272
<AssemblyTitle>$(Title)</AssemblyTitle>
7373
</PropertyGroup>
7474
<ItemGroup>
75-
<PackageReference Include="NLog.Extensions.Logging" Version="6.1.0" />
75+
<PackageReference Include="NLog.Extensions.Logging" Version="6.1.1" />
7676
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
7777
</ItemGroup>
7878

src/NLog.Web.AspNetCore/NLogRequestLoggingOptions.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System;
22
using System.Collections.Generic;
3-
using System.Threading.Tasks;
43
using Microsoft.AspNetCore.Http;
54
using Microsoft.AspNetCore.Http.Features;
65
using NLog.Web.Internal;

src/NLog.Web/NLog.Web.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ List of available Layout Renderers: https://nlog-project.org/config/?tab=layout-
7171
<DownloadFile SourceUrl="https://nlog-project.org/N.png" DestinationFolder="$(MSBuildThisFileDirectory)" />
7272
</Target>
7373
<ItemGroup>
74-
<PackageReference Include="NLog" Version="6.0.6" />
74+
<PackageReference Include="NLog" Version="6.1.0" />
7575
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
7676
</ItemGroup>
7777
<ItemGroup>

0 commit comments

Comments
 (0)