Skip to content

Commit

Permalink
Version 1.4 release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
snakefoot committed Jan 17, 2019
1 parent 8765d24 commit d75b1fe
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Date format: (year/month/day)

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

### v1.3 (2018/09/22)
- [#245](https://github.com/NLog/NLog.Extensions.Logging/pull/245) Added ${configsetting} for appsettings.json and others (@snakefoot, @linmasaki)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static IHostBuilder UseNLog(this IHostBuilder builder, NLogProviderOption
{
ConfigSettingLayoutRenderer.DefaultConfiguration = hostbuilder.Configuration;
if (options == null)
provider.Configure(hostbuilder.Configuration?.GetSection("Logging:NLog"));
provider.Configure(hostbuilder.Configuration.GetSection("Logging:NLog"));
}
return provider;
});
Expand Down
5 changes: 4 additions & 1 deletion src/NLog.Extensions.Hosting/NLog.Extensions.Hosting.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
<RepositoryUrl>https://github.com/NLog/NLog.Extensions.Logging.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>NLog;Microsoft.Extensions.Hosting;log;logfiles;netcore</PackageTags>
<PackageReleaseNotes>1.0: Initial release</PackageReleaseNotes>
<PackageReleaseNotes>
- ${configsetting} layout renderer now uses IHostBuilder.Configuration
- NLogLoggerProvider options now binds to IHostBuilder.Configuration (Using section Logging:NLog)
</PackageReleaseNotes>

<!-- SonarQube needs this -->
<ProjectGuid>{548E65CE-0378-4812-AE00-B173F1251D3C}</ProjectGuid>
Expand Down
9 changes: 4 additions & 5 deletions src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@ For ASP.NET Core, use NLog.Web.AspNetCore: https://www.nuget.org/packages/NLog.W
</Description>
<PackageTags>NLog;Microsoft.Extensions.Logging;log;logfiles;netcore</PackageTags>
<PackageReleaseNotes>

- Added ${configsetting} for appsettings.json and others (@snakefoot)
- Fixing bug throwing ArgumentOutOfRangeException if input is empty list (@thorhalvor)
- BeginScope always return scope-object even on error (@snakefoot)
- Enhancements for .NET Core 2 examples (@bryan5989)
- Updated to Microsoft.Extensions.Logging ver. 2.1.0
- ${configsetting} layout renderer now depends on AddNLog-call to provide IConfiguration-interface
- NLogLoggerProvider options now binds to IConfiguration (Using section Logging:NLog)
- Now builds snupkg packages

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

Expand Down

0 comments on commit d75b1fe

Please sign in to comment.