Skip to content

Commit 9562e60

Browse files
authored
Version 6.1.2 (#832)
1 parent e39a24a commit 9562e60

5 files changed

Lines changed: 10 additions & 11 deletions

File tree

CHANGELOG.MD

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

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

5+
### Version 6.1.2 (2026/03/01)
6+
- [#831](https://github.com/NLog/NLog.Extensions.Logging/pull/831) MicrosoftConsoleJsonLayout - Forward DottedRecursion to State-JsonLayout (@snakefoot)
7+
- [#832](https://github.com/NLog/NLog.Extensions.Logging/pull/832) Updated to NLog v6.1.1 (@snakefoot)
8+
59
### Version 6.1.1 (2026/01/31)
610

711
- [#822](https://github.com/NLog/NLog.Extensions.Logging/pull/822) NLogLogger - Optimize for default EventId capture (@snakefoot)

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ test_script:
4646
deploy:
4747
- provider: NuGet
4848
api_key:
49-
secure: f6oWebyOFLpuuo2PMd6xgoxwMq+JvXVUmPyBme89zS7UF0zcvLYPSKN/p6B/KaMs
49+
secure: cE5JQZ27IbAOdyIw6HCbzcacFiZzcIfhko8/8sZfWUyRnVaDErpVbeZyIyg4302c
5050
on:
5151
branch: master

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.1"
5+
$versionPrefix = "6.1.2"
66
$versionSuffix = ""
77
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
88
$versionProduct = $versionPrefix;

src/NLog.Extensions.Logging/Logging/NLogLoggerFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ protected virtual void Dispose(bool disposing)
109109
/// <summary>
110110
/// Cleanup
111111
/// </summary>
112-
async System.Threading.Tasks.ValueTask IAsyncDisposable.DisposeAsync()
112+
public async System.Threading.Tasks.ValueTask DisposeAsync()
113113
{
114114
await _provider.DisposeAsync();
115115
GC.SuppressFinalize(this);

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

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

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)
21+
- [#831] MicrosoftConsoleJsonLayout - Forward MaxRecursionLimit to State-JsonLayout (@snakefoot)
22+
- [#832] Updated to NLog v6.1.1 (@snakefoot)
2823

2924
Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD
3025

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

8176
<ItemGroup>
82-
<PackageReference Include="NLog" Version="6.1.0" />
77+
<PackageReference Include="NLog" Version="6.1.1" />
8378
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
8479
</ItemGroup>
8580
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' ">

0 commit comments

Comments
 (0)