Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Bump Microsoft.IdentityModel.JsonWebTokens from 7.1.2 to 8.1.2 #141

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samples/WorkerDI/WorkerDI.csproj
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@

<ItemGroup>
<PackageReference Include="Serilog.AspNetCore" Version="8.0.2" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.1.2" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.1.2" />
</ItemGroup>

<ItemGroup>

Unchanged files with check annotations Beta

<h1>Hello, world!</h1>
@if (User != null && User.Identity.IsAuthenticated)

Check warning on line 9 in samples/BlazorServer/Pages/Index.razor

GitHub Actions / macOS-latest

Dereference of a possibly null reference.

Check warning on line 9 in samples/BlazorServer/Pages/Index.razor

GitHub Actions / macOS-latest

Dereference of a possibly null reference.

Check warning on line 9 in samples/BlazorServer/Pages/Index.razor

GitHub Actions / ubuntu-latest

Dereference of a possibly null reference.

Check warning on line 9 in samples/BlazorServer/Pages/Index.razor

GitHub Actions / ubuntu-latest

Dereference of a possibly null reference.

Check warning on line 9 in samples/BlazorServer/Pages/Index.razor

GitHub Actions / windows-latest

Dereference of a possibly null reference.

Check warning on line 9 in samples/BlazorServer/Pages/Index.razor

GitHub Actions / windows-latest

Dereference of a possibly null reference.
{
<p>Welcome, @User.Identity.Name!</p>
}
<SurveyPrompt Title="How is Blazor working for you?"/>
@code {
private ClaimsPrincipal User { get; set; }

Check warning on line 23 in samples/BlazorServer/Pages/Index.razor

GitHub Actions / macOS-latest

Non-nullable property 'User' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.

Check warning on line 23 in samples/BlazorServer/Pages/Index.razor

GitHub Actions / macOS-latest

Non-nullable property 'User' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.

Check warning on line 23 in samples/BlazorServer/Pages/Index.razor

GitHub Actions / ubuntu-latest

Non-nullable property 'User' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.

Check warning on line 23 in samples/BlazorServer/Pages/Index.razor

GitHub Actions / ubuntu-latest

Non-nullable property 'User' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.

Check warning on line 23 in samples/BlazorServer/Pages/Index.razor

GitHub Actions / windows-latest

Non-nullable property 'User' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.

Check warning on line 23 in samples/BlazorServer/Pages/Index.razor

GitHub Actions / windows-latest

Non-nullable property 'User' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.
protected override async Task OnInitializedAsync()
{