Skip to content

Commit 5b99255

Browse files
authored
Release 1.7.3 (#512)
1 parent 87007d8 commit 5b99255

3 files changed

Lines changed: 15 additions & 7 deletions

File tree

CHANGELOG.MD

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

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

5+
### v1.7.3 (2021/06/15)
6+
- [#510](https://github.com/NLog/NLog.Extensions.Logging/pull/510) Reduced code complexity of MicrosoftILoggerTarget (@snakefoot)
7+
- [#509](https://github.com/NLog/NLog.Extensions.Logging/pull/509) Faster checking if LogLevel IsEnabled (#509) (@snakefoot)
8+
- [#507](https://github.com/NLog/NLog.Extensions.Logging/pull/507) Bump NLog from 4.7.9 to 4.7.10 (#507) (@dependabot[bot])
9+
- [#501](https://github.com/NLog/NLog.Extensions.Logging/pull/501) Extended NLogProviderOptions with the option LoggingConfigurationSectionName (#501) (@snakefoot)
10+
- [#500](https://github.com/NLog/NLog.Extensions.Logging/pull/500) Support TargetDefaultWrapper and TargetDefaultParameters in appsettings.json (#500) (@snakefoot)
11+
- [#494](https://github.com/NLog/NLog.Extensions.Logging/pull/494) Fix SonarQube Scanning (#494) (@304NotModified)
12+
513
### v1.7.2 (2021/03/26)
614
- [#495](https://github.com/NLog/NLog.Extensions.Logging/pull/495) Bump NLog from 4.7.8 to 4.7.9 (#495) (@dependabot[bot])
715
- [#490](https://github.com/NLog/NLog.Extensions.Logging/pull/490) MicrosoftConsoleLayoutRenderer - For Hosting Lifetime Startup Messages (#490) (@snakefoot)
@@ -10,7 +18,6 @@ Date format: (year/month/day)
1018
- [#479](https://github.com/NLog/NLog.Extensions.Logging/pull/479) Enable deterministic build (#479) (@304NotModified)
1119

1220
### v1.7.1 (2021/02/26)
13-
1421
- [#476](https://github.com/NLog/NLog.Extensions.Logging/pull/476) MicrosoftILoggerTarget - Add support for override LoggerName when using ILoggerFactory (#476) (@snakefoot)
1522
- [#470](https://github.com/NLog/NLog.Extensions.Logging/pull/470) MicrosoftILoggerTarget - Reduce chance of deadlock in ILoggerFactory by caching created loggers (#470) (@snakefoot)
1623
- [#468](https://github.com/NLog/NLog.Extensions.Logging/pull/468) MicrosoftILoggerTarget - With ILoggerFactory as constructor parameter (#468) (@snakefoot)

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

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@ For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
1919
<PackageTags>NLog;Microsoft.Extensions.Logging;log;logging;logfiles;netcore</PackageTags>
2020
<PackageReleaseNotes>
2121

22-
- Bump NLog from 4.7.8 to 4.7.9 (#495) (@dependabot[bot])
23-
- MicrosoftConsoleLayoutRenderer - For Hosting Lifetime Startup Messages (#490) (@snakefoot)
24-
- NLogLoggingConfiguration support custom section names (#488) (@anellomancante)
25-
- NLogProviderOptions - Added ReplaceLoggerFactory and RemoveLoggerFactoryFilter (#482) (@snakefoot)
26-
- Enable deterministic build (#479) (@304NotModified)
22+
- Reduced code complexity of MicrosoftILoggerTarget (@snakefoot)
23+
- Faster checking if LogLevel IsEnabled (#509) (@snakefoot)
24+
- Bump NLog from 4.7.9 to 4.7.10 (#507) (@dependabot[bot])
25+
- Extended NLogProviderOptions with the option LoggingConfigurationSectionName (#501) (@snakefoot)
26+
- Support TargetDefaultWrapper and TargetDefaultParameters in appsettings.json (#500) (@snakefoot)
27+
- Fix SonarQube Scanning (#494) (@304NotModified)
2728

2829
Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD
2930
</PackageReleaseNotes>

0 commit comments

Comments
 (0)