Skip to content

Commit

Permalink
Version 5.1.1 (#5135)
Browse files Browse the repository at this point in the history
  • Loading branch information
snakefoot committed Dec 29, 2022
1 parent 0feacbc commit b1175f1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,16 @@ Date format: (year/month/day)

## Change Log

### Version 5.1.1 (2022/12/29)

**Improvements**
- [#5134](https://github.com/NLog/NLog/pull/5134) XmlLayout - Added Layout-option to XmlElement to match XmlAttribute (#5134) (@snakefoot)
- [#5126](https://github.com/NLog/NLog/pull/5126) JsonLayout - Avoid NullReferenceException when JsonAttribute has no Layout (#5126) (@snakefoot)
- [#5122](https://github.com/NLog/NLog/pull/5122) ConfigurationItemFactory - Handle concurrent registration of extensions (#5122) (@snakefoot)
- [#5121](https://github.com/NLog/NLog/pull/5121) LogEventInfo with custom MessageFormatter now generates FormattedMessage upfront (#5121) (@snakefoot)
- [#5118](https://github.com/NLog/NLog/pull/5118) AsyncTargetWrapper - Reduce overhead when scheduling instant background writer thread (#5118) (@snakefoot)
- [#5115](https://github.com/NLog/NLog/pull/5115) ConfigurationItemFactory - Faster scan of NLog types with filter on IsPublic / IsClass (#5115) (@snakefoot)

### Version 5.1.0 (2022/11/27)

**Improvements**
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Expand Up @@ -2,7 +2,7 @@
# creates NuGet package at \artifacts
dotnet --version

$versionPrefix = "5.1.0"
$versionPrefix = "5.1.1"
$versionSuffix = ""
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
$versionProduct = $versionPrefix;
Expand Down
12 changes: 7 additions & 5 deletions src/NLog/NLog.csproj
Expand Up @@ -12,7 +12,7 @@ NLog supports traditional logging, structured logging and the combination of bot

Supported platforms:

- .NET 5 and 6
- .NET 5, 6 and 7
- .NET Core 1, 2 and 3
- .NET Standard 1.3+ and 2.0+
- .NET Framework 3.5 - 4.8
Expand All @@ -29,10 +29,12 @@ For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
<Copyright>Copyright (c) 2004-$(CurrentYear) NLog Project - https://nlog-project.org/ </Copyright>

<PackageReleaseNotes>
- MessageTemplates ValueFormatter with support for ISpanFormattable (#5102) (@snakefoot)
- Add LogEventDropped handler to the NetworkTarget (#5101) (@ShadowDancer)
- Improving InternalLogger output when adding NLog targets to configuration (#5108) (@snakefoot)
- ObjectPathRendererWrapper - Added public method TryGetPropertyValue (#5110) (@snakefoot)
- XmlLayout - Added Layout-option to XmlElement to match XmlAttribute (#5134) (@snakefoot)
- JsonLayout - Avoid NullReferenceException when JsonAttribute has no Layout (#5126) (@snakefoot)
- ConfigurationItemFactory - Handle concurrent registration of extensions (#5122) (@snakefoot)
- LogEventInfo with custom MessageFormatter now generates FormattedMessage upfront (#5121) (@snakefoot)
- AsyncTargetWrapper - Reduce overhead when scheduling instant background writer thread (#5118) (@snakefoot)
- ConfigurationItemFactory - Faster scan of NLog types with filter on IsPublic / IsClass (#5115) (@snakefoot)

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

Expand Down

0 comments on commit b1175f1

Please sign in to comment.