Skip to content

Commit d9939e4

Browse files
authored
Version 6.1.1 (#830)
1 parent 76d82f1 commit d9939e4

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.MD

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
Date format: (year/month/day)
44

5+
### Version 6.1.1 (2026/01/31)
6+
7+
- [#822](https://github.com/NLog/NLog.Extensions.Logging/pull/822) NLogLogger - Optimize for default EventId capture (@snakefoot)
8+
- [#824](https://github.com/NLog/NLog.Extensions.Logging/pull/824) Introduced WriteToJsonConsole for fluent API to match AddJsonConsole (@snakefoot)
9+
- [#825](https://github.com/NLog/NLog.Extensions.Logging/pull/825) NLogLoggerProvider - Implement IAsyncDisposable (@snakefoot)
10+
- [#826](https://github.com/NLog/NLog.Extensions.Logging/pull/826) MicrosoftConsoleJsonLayout - Forward MaxRecursionLimit to State-JsonLayout (@snakefoot)
11+
- [#827](https://github.com/NLog/NLog.Extensions.Logging/pull/827) MicrosoftConsoleLayoutRenderer - Apply Span for EventId (@snakefoot)
12+
- [#828](https://github.com/NLog/NLog.Extensions.Logging/pull/828) Replace NETCOREAPP3_1_OR_GREATER with new NET (@snakefoot)
13+
- [#830](https://github.com/NLog/NLog.Extensions.Logging/pull/830) Updated to NLog v6.1 (@snakefoot)
14+
515
### Version 6.1.0 (2025/11/12)
616

717
- [#818](https://github.com/NLog/NLog.Extensions.Logging/pull/818) Added TargetFramework .NET 10 (@snakefoot)

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
$versionProduct = $versionPrefix;

src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
1818
<PackageReleaseNotes>
1919
ChangeLog:
2020

21-
- [#818] Added TargetFramework .NET 10
21+
- [#822] NLogLogger - Optimize for default EventId capture (@snakefoot)
22+
- [#824] Introduced WriteToJsonConsole for fluent API to match AddJsonConsole (@snakefoot)
23+
- [#825] NLogLoggerProvider - Implement IAsyncDisposable (@snakefoot)
24+
- [#826] MicrosoftConsoleJsonLayout - Forward MaxRecursionLimit to State-JsonLayout (@snakefoot)
25+
- [#827] MicrosoftConsoleLayoutRenderer - Apply Span for EventId (@snakefoot)
26+
- [#828] Replace NETCOREAPP3_1_OR_GREATER with new NET (@snakefoot)
27+
- [#830] Updated to NLog v6.1 (@snakefoot)
2228

2329
Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD
2430

@@ -73,7 +79,7 @@ List of major changes in NLog 6.0: https://nlog-project.org/2025/04/29/nlog-6-0-
7379
</PropertyGroup>
7480

7581
<ItemGroup>
76-
<PackageReference Include="NLog" Version="6.0.6" />
82+
<PackageReference Include="NLog" Version="6.1.0" />
7783
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
7884
</ItemGroup>
7985
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' ">

0 commit comments

Comments
 (0)