Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

Date format: (year/month/day)

### Version 5.5 (2025/05/29)

**Improvements**
- [#780](https://github.com/NLog/NLog.Extensions.Logging/pull/780): Added UseNLog extension method for IHostApplicationBuilder (#780) (@mikezw)
- [#782](https://github.com/NLog/NLog.Extensions.Logging/pull/782): Added UseNLog extension method with isolated LogFactory support (#782) (@snakefoot)
- [#783](https://github.com/NLog/NLog.Extensions.Logging/pull/783): Added AddNLog extension method for IServiceCollection (#783) (@snakefoot)
- [#785](https://github.com/NLog/NLog.Extensions.Logging/pull/785): Updated to NLog v5.5 (#785) (@snakefoot)

### Version 5.4 (2025/02/02)

**Improvements**
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.4.0"
$versionPrefix = "5.5.0"
$versionSuffix = ""
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
$versionProduct = $versionPrefix;
Expand Down
9 changes: 5 additions & 4 deletions src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
<PackageReleaseNotes>
ChangeLog:

- MicrosoftConsoleJsonLayout - TimestampLayout replaced by DateLayoutRenderer (#775) (@snakefoot)
- NLogLoggerFactory - New constructor with isolated NLog LogFactory as input parameter (#778) (@snakefoot)
- Updated to NLog v5.4 (#778) (@snakefoot)
- Added UseNLog extension method for IHostApplicationBuilder (#780) (@mikezw)
- Added UseNLog extension method with isolated LogFactory support (#782) (@snakefoot)
- Added AddNLog extension method for IServiceCollection (#783) (@snakefoot)
- Updated to NLog v5.5 (#785) (@snakefoot)

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

Expand Down Expand Up @@ -85,7 +86,7 @@ List of major changes in NLog 5.0: https://nlog-project.org/2021/08/25/nlog-5-0-
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NLog" Version="5.4.0" />
<PackageReference Include="NLog" Version="5.5.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
Expand Down