Skip to content

Commit ecbae84

Browse files
authored
Version 5.0 preview 3 (#542)
1 parent 179baa1 commit ecbae84

5 files changed

Lines changed: 26 additions & 12 deletions

File tree

CHANGELOG.MD

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,19 @@
22

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

5-
### v5.0-preview 1 (2021/10/03)
5+
### v5.0-preview 3 (2021/10/26)
6+
See [Release post for NLog 5](https://nlog-project.org/2021/08/25/nlog-5-0-preview1-ready.html)
7+
8+
## 🚀 Features
9+
10+
- [#538](https://github.com/NLog/NLog.Extensions.Logging/pull/538): NLogProviderOptions with support for CaptureEventId (@snakefoot)
11+
12+
## 🔧 Maintenance
13+
14+
- [#541](https://github.com/NLog/NLog.Extensions.Logging/pull/541): NLogLogger refactoring for faster EventId-property capture (@snakefoot)
15+
- [#539](https://github.com/NLog/NLog.Extensions.Logging/pull/539): NLogLogger refactoring to reduce code-path-navigations (@snakefoot)
16+
17+
### v5.0-preview 2 (2021/10/03)
618
See [Release post for NLog 5](https://nlog-project.org/2021/08/25/nlog-5-0-preview1-ready.html)
719

820
#### 👍 Enhancements

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 = "5.0.0"
6-
$versionSuffix = "preview.2"
6+
$versionSuffix = "preview.3"
77
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
88
$versionProduct = $versionPrefix;
99

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

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
1818
</Description>
1919
<PackageTags>NLog;Microsoft.Extensions.Logging;log;logging;logfiles;netcore</PackageTags>
2020
<PackageReleaseNotes>
21-
## Enhancements
22-
- Replaced platform netcoreapp3.0 with netcoreapp3.1 (@snakefoot)
23-
- NLogLoggerProvider - Always load from appsettings when possible (@snakefoot)
24-
- Fix NLogLoggingConfiguration to handle throwConfigExceptions with NLog 5.0 (@snakefoot)
25-
- Fixed spelling for IncludeActivityIdsWithBeginScope (@snakefoot)
26-
- NLogProviderOptions with support for RegisterServiceProvider (@snakefoot)
21+
## Features
22+
23+
- [#538](https://github.com/NLog/NLog.Extensions.Logging/pull/538): NLogProviderOptions with support for CaptureEventId (@snakefoot)
24+
25+
## Maintenance
26+
27+
- [#541](https://github.com/NLog/NLog.Extensions.Logging/pull/541): NLogLogger refactoring for faster EventId-property capture (@snakefoot)
28+
- [#539](https://github.com/NLog/NLog.Extensions.Logging/pull/539): NLogLogger refactoring to reduce code-path-navigations (@snakefoot)
2729

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

@@ -75,7 +77,7 @@ NLog 5 release post: https://nlog-project.org/2021/08/25/nlog-5-0-preview1-ready
7577
<DefineConstants>$(DefineConstants);NETSTANDARD</DefineConstants>
7678
</PropertyGroup>
7779
<ItemGroup>
78-
<PackageReference Include="NLog" Version="5.0.0-preview.2" />
80+
<PackageReference Include="NLog" Version="5.0.0-preview.3" />
7981
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
8082
</ItemGroup>
8183
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">

test/NLog.Extensions.Hosting.Tests/NLog.Extensions.Hosting.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>
1717
</PropertyGroup>
1818

19-
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">
19+
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">
2020
<PackageReference Include="Microsoft.Extensions.Hosting" Version="2.1.0" />
2121
</ItemGroup>
2222

@@ -31,7 +31,7 @@
3131
<ItemGroup>
3232
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
3333
<PackageReference Include="xunit" Version="2.4.1" />
34-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
34+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
3535
</ItemGroup>
3636
<ItemGroup>
3737
<ProjectReference Include="..\..\src\NLog.Extensions.Hosting\NLog.Extensions.Hosting.csproj" />

test/NLog.Extensions.Logging.Tests/NLog.Extensions.Logging.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
2525
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
2626
<PackageReference Include="xunit" Version="2.4.1" />
27-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
27+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
2828
</ItemGroup>
2929

3030
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.1' ">

0 commit comments

Comments
 (0)