Skip to content

Commit 2560e6d

Browse files
snakefoot304NotModified
authored andcommitted
Version 1.5 release notes (#287)
1 parent 1e5180d commit 2560e6d

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

CHANGELOG.MD

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

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

5+
### V1.5
6+
- [#263](https://github.com/NLog/NLog.Extensions.Logging/pull/263) Support for loading NLog config from appsettings.json
7+
- [#263](https://github.com/NLog/NLog.Extensions.Logging/pull/263) Improved performance and reduced allocation for ILogger.BeginScope
8+
- [#260](https://github.com/NLog/NLog.Extensions.Logging/pull/260) Introduced MicrosoftILoggerTarget for logging in Azure Lambda
9+
- [#272](https://github.com/NLog/NLog.Extensions.Logging/pull/272) Better handling of IndexOutOfRangeException when invalid log-message format
10+
511
### V1.5 RC
612

713
See https://github.com/NLog/NLog.Extensions.Logging/milestone/24?closed=1
814

9-
1015
### v1.4 (2019/01/17)
1116
- [#257](https://github.com/NLog/NLog.Extensions.Logging/pull/257) Updated to Microsoft.Extensions.Logging ver. 2.1.0 with support for ${configsetting}
1217
- [#248](https://github.com/NLog/NLog.Extensions.Logging/pull/248) Configure NLogProviderOptions from appsettings.json

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
dotnet --version
44

55
$versionPrefix = "1.5.0"
6-
$versionSuffix = "rc1"
6+
$versionSuffix = ""
77
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
88
$versionProduct = $versionPrefix;
99
if (-Not $versionSuffix.Equals(""))

src/NLog.Extensions.Hosting/NLog.Extensions.Hosting.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919
<RepositoryType>git</RepositoryType>
2020
<PackageTags>NLog;Microsoft.Extensions.Hosting;log;logfiles;netcore</PackageTags>
2121
<PackageReleaseNotes>
22-
- ${configsetting} layout renderer now uses IHostBuilder.Configuration
23-
- NLogLoggerProvider options now binds to IHostBuilder.Configuration (Using section Logging:NLog)
22+
Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD
2423
</PackageReleaseNotes>
2524

2625
<!-- SonarQube needs this -->

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

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,12 @@ For ASP.NET Core, use NLog.Web.AspNetCore: https://www.nuget.org/packages/NLog.W
1818
</Description>
1919
<PackageTags>NLog;Microsoft.Extensions.Logging;log;logfiles;netcore</PackageTags>
2020
<PackageReleaseNotes>
21-
See changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD
21+
- Support for loading NLog config from appsettings.json
22+
- Improved performance and reduced allocation for ILogger.BeginScope
23+
- Introduced MicrosoftILoggerTarget for logging in Azure Lambda
24+
- Better handling of IndexOutOfRangeException when invalid log-message format
25+
26+
Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD
2227
</PackageReleaseNotes>
2328
<PackageProjectUrl>https://github.com/NLog/NLog.Extensions.Logging</PackageProjectUrl>
2429
<PackageLicenseUrl>https://github.com/NLog/NLog.Extensions.Logging/blob/master/LICENSE</PackageLicenseUrl>
@@ -56,7 +61,7 @@ See changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANG
5661
<DefineConstants>$(DefineConstants);NETSTANDARD</DefineConstants>
5762
</PropertyGroup>
5863
<ItemGroup>
59-
<PackageReference Include="NLog" Version="[4.6.2,5.0.0-beta01)" />
64+
<PackageReference Include="NLog" Version="[4.6.3,5.0.0-beta01)" />
6065
</ItemGroup>
6166
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
6267
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="1.0.0" />

0 commit comments

Comments
 (0)