Skip to content

Commit b127d73

Browse files
authored
Version 5.0.1 (#600)
1 parent 40028b8 commit b127d73

3 files changed

Lines changed: 13 additions & 44 deletions

File tree

CHANGELOG.MD

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

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

5+
### v5.0.1 (2022/06/23)
6+
7+
#### 🔧 Maintenance
8+
9+
- [#599](https://github.com/NLog/NLog.Extensions.Logging/pull/599): Fixed MissingMethodException for HostBuilderContext.get_HostingEnvironment() (@snakefoot)
10+
- [#595](https://github.com/NLog/NLog.Extensions.Logging/pull/595): Added AddNLog-extension-method with custom options and serviceprovider-functor (@dependabot)
11+
- [#486](https://github.com/NLog/NLog.Extensions.Logging/pull/486): Bump NLog from 5.0.0 to 5.0.1 (@dependabot)
12+
513
### v5.0 (2022/05/17)
614

715
#### 🔧 Maintenance

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

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

Lines changed: 4 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -16,50 +16,11 @@ For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
1616
</Description>
1717
<PackageTags>NLog;Microsoft.Extensions.Logging;log;logging;logfiles;netcore</PackageTags>
1818
<PackageReleaseNotes>
19-
### v5.0 (2022/05/17)
19+
#### 🔧 Improvements
2020

21-
#### 🚀 Features
22-
23-
- [#465] Add support for config variables with JsonLayout (@snakefoot)
24-
- [#520] Changed LoggingConfigurationSectionName to default NLog (@snakefoot)
25-
- [#529] NLogLoggerProvider - Always load NLog config from appsettings when possible (@snakefoot)
26-
- [#554] NLogProviderOptions with support for CaptureEventId.EventId + EventName (@snakefoot)
27-
- [#555] MicrosoftConsoleJsonLayout - Simulates Microsoft AddJsonConsole Formatter (@snakefoot)
28-
29-
#### 👍 Enhancements
30-
31-
- [#522] Reload now fully support KeepVariablesOnReload (@snakefoot)
32-
- [#521] Change default value for RemoveLoggerFactoryFilter to true (@snakefoot)
33-
- [#535] NLogProviderOptions with support for RegisterServiceProvider (@snakefoot)
34-
- [#531] Fix NLogLoggingConfiguration to handle throwConfigExceptions with NLog 5.0 (@snakefoot)
35-
- [#564] NLog.ExtensionsHosting includes ContentRootPath when scanning for NLog.config candidate (@snakefoot)
36-
- [#565] NLogProviderOptions ShutdownOnDispose = true disables LogFactory.AutoShutdown (@snakefoot)
37-
- [#583] NLogBeginScopeParser - Improve parsing of custom KeyValuePair as scope-properties (@snakefoot)
38-
- [#581] Support RemoveLoggerFactoryFilter and ReplaceLoggerFactory in appsettings.json (@snakefoot)
39-
40-
#### ⏩ Performance
41-
42-
- [#319] NLogLogger - Reduce allocation by not boxing EventId unless CaptureEventId = Legacy (@snakefoot)
43-
- [#485] Remove startup overhead caused by enumerating all assemblies for callsite logic (@snakefoot)
44-
- [#519] Update to NLog 5.0 with ScopeContext instead of MDLC (@snakefoot)
45-
46-
#### 🔧 Maintenance
47-
48-
- [#486] Removed platform .NET 4.5.1 (@snakefoot)
49-
- [#530] Replaced platform netcoreapp3.0 with netcoreapp3.1 (@snakefoot)
50-
- [#534] Fixed spelling for IncludeActivityIdsWithBeginScope (@snakefoot)
51-
- [#539] NLogLogger refactoring to reduce code-path-navigations (@snakefoot)
52-
- [#541] NLogLogger refactoring for faster EventId-property capture (@snakefoot)
53-
- [#546] NLogLogger refactoring for faster EventId-property capture (@snakefoot)
54-
- [#547] NLogLogger refactoring for faster EventId-property capture (@snakefoot)
55-
- [#552] Bump Microsoft.SourceLink.GitHub from 1.0.0 to 1.1.1 (@dependabot[bot])
56-
- [#558] Bump to Visual Studio 2022 on AppVeyor (@snakefoot)
57-
- [#559] NLogLogger - Reduce complexity of CreateLogEventInfo (@snakefoot)
58-
- [#570] MicrosoftConsoleLayoutRenderer - Fixed IndexOutOfRangeException when large EventID (@mickelsonmichael)
59-
- [#571] MicrosoftConsoleJsonLayout - Fixed IndexOutOfRangeException when large EventID (@snakefoot)
60-
- [#572] MicrosoftConsoleLayoutRenderer - Skip string-allocation for EventId when possible on platform (@snakefoot)
61-
- [#579] ConfigSettingLayoutRenderer - Improve support for RegisterServiceProvider (@snakefoot)
62-
- [#590] Added nuget-dependency Microsoft.Extensions.Configuration.Abstractions for all platforms (@snakefoot)
21+
- [#599] Fixed MissingMethodException for HostBuilderContext.get_HostingEnvironment() (@snakefoot)
22+
- [#595] Added AddNLog-extension-method with custom options and serviceprovider-functor (@dependabot)
23+
- [#486] Bump NLog from 5.0.0 to 5.0.1 (@dependabot)
6324

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

0 commit comments

Comments
 (0)