Skip to content

Commit

Permalink
Version 5.0 preview 2 (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
snakefoot authored Oct 3, 2021
1 parent e8a8db6 commit f2dd89e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 15 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
## Change Log

Date format: (year/month/day)

### v5.0-preview 1 (2021/10/03)
See [Release post for NLog 5](https://nlog-project.org/2021/08/25/nlog-5-0-preview1-ready.html)

#### 👍 Enhancements

- [#529](https://github.com/NLog/NLog.Extensions.Logging/pull/529): NLogLoggerProvider - Always load from appsettings when possible (@snakefoot)
- [#530](https://github.com/NLog/NLog.Extensions.Logging/pull/530): Replaced platform netcoreapp3.0 with netcoreapp3.1 (@snakefoot)
- [#531](https://github.com/NLog/NLog.Extensions.Logging/pull/531): Fix NLogLoggingConfiguration to handle throwConfigExceptions with NLog 5.0 (@snakefoot)
- [#534](https://github.com/NLog/NLog.Extensions.Logging/pull/534): Fixed spelling for IncludeActivityIdsWithBeginScope (@snakefoot)
- [#535](https://github.com/NLog/NLog.Extensions.Logging/pull/535): NLogProviderOptions with support for RegisterServiceProvider (@snakefoot)

### v5.0-preview 1 (2021/08/28)
Version 5 for NLog 5
See [Release post for NLog 5](https://nlog-project.org/2021/08/25/nlog-5-0-preview1-ready.html)

#### 🚀 Features

Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
dotnet --version

$versionPrefix = "5.0.0"
$versionSuffix = "preview.1"
$versionSuffix = "preview.2"
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
$versionProduct = $versionPrefix;

Expand Down
20 changes: 7 additions & 13 deletions src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,16 @@ For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
</Description>
<PackageTags>NLog;Microsoft.Extensions.Logging;log;logging;logfiles;netcore</PackageTags>
<PackageReleaseNotes>

Version 5 for NLog 5

## Features
- Changed LoggingConfigurationSectionName to default NLog (@snakefoot)
- Add support for config variables with JsonLayout (@snakefoot)

## Enhancements
- Reload now fully support KeepVariablesOnReload (@snakefoot)
- Change default value for RemoveLoggerFactoryFilter to true (@snakefoot)
- Replaced platform netcoreapp3.0 with netcoreapp3.1 (@snakefoot)
- NLogLoggerProvider - Always load from appsettings when possible (@snakefoot)
- Fix NLogLoggingConfiguration to handle throwConfigExceptions with NLog 5.0 (@snakefoot)
- Fixed spelling for IncludeActivityIdsWithBeginScope (@snakefoot)
- NLogProviderOptions with support for RegisterServiceProvider (@snakefoot)

## Performance
- Update to NLog 5.0 Preview 1 with ScopeContext instead of MDLC (@snakefoot)
- Remove startup overhead caused by enumerating all assemblies for callsite logic (@snakefoot)
- NLogLogger - Reduce allocation by not boxing EventId when CaptureEntireEventId = false (@snakefoot)
Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD

NLog 5 release post: https://nlog-project.org/2021/08/25/nlog-5-0-preview1-ready.html
</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/NLog/NLog.Extensions.Logging</PackageProjectUrl>
<PackageLicenseExpression>BSD-2-Clause</PackageLicenseExpression>
Expand Down

0 comments on commit f2dd89e

Please sign in to comment.