Skip to content

Commit d0de230

Browse files
committed
Version 5.4
1 parent 2cfb8a1 commit d0de230

File tree

8 files changed

+22
-11
lines changed

8 files changed

+22
-11
lines changed

CHANGELOG.MD

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ See also [releases](https://github.com/NLog/NLog.Web/releases) and [milestones](
44

55
Date format: (year/month/day)
66

7+
### Version 5.4 (2025/02/02)
8+
9+
- **NLog.Web.AspNetCore**
10+
- [#1069](https://github.com/NLog/NLog.Web/pull/1069) AspNetUserClaimLayoutRenderer - Extended with Azure Claims ObjectId + TenantId + AppId (#1069) (@snakefoot)
11+
- [#1070](https://github.com/NLog/NLog.Web/pull/1070) Micro optimization by using is null (#1070) (@snakefoot)
12+
- [#1072](https://github.com/NLog/NLog.Web/pull/1072) Updated dependency NLog.Extensions.Logging v5.4 (#1072) (@snakefoot)
13+
14+
- **NLog.Web**
15+
- [#1069](https://github.com/NLog/NLog.Web/pull/1069) AspNetUserClaimLayoutRenderer - Extended with Azure Claims ObjectId + TenantId + AppId (#1069) (@snakefoot)
16+
- [#1070](https://github.com/NLog/NLog.Web/pull/1070) Micro optimization by using is null (#1070) (@snakefoot)
17+
- [#1072](https://github.com/NLog/NLog.Web/pull/1072) Updated dependency NLog v5.4 (#1072) (@snakefoot)
18+
719
### Version 5.3.15 (2024/11/21)
820

921
- **NLog.Web.AspNetCore**

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ build_script:
2121
deploy:
2222
- provider: NuGet
2323
api_key:
24-
secure: C4wzAE+AWne4TbR54gBDkLImCxsfIp21C16wi4LJ3bVSw/HqwZrMSYJ90kl6eAuf
24+
secure: f6oWebyOFLpuuo2PMd6xgoxwMq+JvXVUmPyBme89zS7UF0zcvLYPSKN/p6B/KaMs
2525
on:
2626
branch: master
2727

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.3.15" # Also update version for minor versions in appveyor.yml
5+
$versionPrefix = "5.4.0" # Also update version for minor versions in appveyor.yml
66
$versionSuffix = ""
77
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
88
if ($env:APPVEYOR_PULL_REQUEST_NUMBER) {

examples/ASP.NET 4.6.1/Visual Studio 2017/ASP.NET 4.6.1 - VS2017/ASP.NET 4.6.1 - VS2017.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<HintPath>..\..\..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
5050
</Reference>
5151
<Reference Include="NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
52-
<HintPath>..\..\..\..\packages\NLog.5.3.4\lib\net46\NLog.dll</HintPath>
52+
<HintPath>..\..\..\..\packages\NLog.5.4.0\lib\net46\NLog.dll</HintPath>
5353
</Reference>
5454
<Reference Include="System" />
5555
<Reference Include="System.Data" />

examples/ASP.NET 4.6.1/Visual Studio 2017/ASP.NET 4.6.1 - VS2017/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
<package id="Microsoft.jQuery.Unobtrusive.Validation" version="3.2.12" targetFramework="net461" />
1212
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net461" />
1313
<package id="Modernizr" version="2.8.3" targetFramework="net461" />
14-
<package id="NLog" version="5.3.4" targetFramework="net461" />
14+
<package id="NLog" version="5.4.0" targetFramework="net461" />
1515
<package id="WebGrease" version="1.6.0" targetFramework="net461" />
1616
</packages>

src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,9 @@ Integrates NLog as provider for Microsoft.Extensions.Logging, and provides NLog
1515
<PackageReleaseNotes>
1616
ChangeLog:
1717

18-
- UseNLog Allow fallback to only EnvironmentName for NLog config (#1066) (@snakefoot)
19-
- Updated dependency NLog.Extensions.Logging v5.3.15 (#1067) (@snakefoot)
20-
21-
List of major changes in NLog 5.0: https://nlog-project.org/2022/05/16/nlog-5-0-finally-ready.html
18+
- AspNetUserClaimLayoutRenderer - Extended with Azure Claims ObjectId + TenantId + AppId (#1069) (@snakefoot)
19+
- Micro optimization by using is null (#1070) (@snakefoot)
20+
- Updated dependency NLog.Extensions.Logging v5.4 (#1072) (@snakefoot)List of major changes in NLog 5.0: https://nlog-project.org/2022/05/16/nlog-5-0-finally-ready.html
2221

2322
Full changelog: https://github.com/NLog/NLog.Web/releases
2423

@@ -73,7 +72,7 @@ List of available Layout Renderers: https://nlog-project.org/config/?tab=layout-
7372
<AssemblyTitle>$(Title)</AssemblyTitle>
7473
</PropertyGroup>
7574
<ItemGroup>
76-
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.15" />
75+
<PackageReference Include="NLog.Extensions.Logging" Version="5.4.0" />
7776
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
7877
</ItemGroup>
7978

src/NLog.Web/NLog.Web.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ List of available Layout Renderers: https://nlog-project.org/config/?tab=layout-
6969
<DownloadFile SourceUrl="https://nlog-project.org/N.png" DestinationFolder="$(MSBuildThisFileDirectory)" />
7070
</Target>
7171
<ItemGroup>
72-
<PackageReference Include="NLog" Version="5.3.4" />
72+
<PackageReference Include="NLog" Version="5.4.0" />
7373
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
7474
</ItemGroup>
7575
<ItemGroup>

tests/NLog.Web.AspNetCore.Tests/NLog.Web.AspNetCore.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="17.11.1" />
2525
<PackageReference Include="NSubstitute" Version="5.3.0" />
2626
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
27-
<PackageReference Include="xunit" Version="2.9.2" />
27+
<PackageReference Include="xunit" Version="2.9.3" />
2828
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
2929
<PrivateAssets>all</PrivateAssets>
3030
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>

0 commit comments

Comments
 (0)