Skip to content

Commit dcbc933

Browse files
committed
Update packages
1 parent 8126239 commit dcbc933

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

src/IdentityServer4.AccessTokenValidation.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@
3333
</ItemGroup>
3434

3535
<ItemGroup>
36-
<PackageReference Include="IdentityModel.AspNetCore.OAuth2Introspection" Version="4.0.1" />
36+
<PackageReference Include="IdentityModel.AspNetCore.OAuth2Introspection" Version="6.1.0" />
3737

38-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.0.0" />
39-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01" PrivateAssets="All" />
38+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.0" />
39+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
4040

41-
<PackageReference Include="minver" Version="2.2.0" PrivateAssets="All" />
41+
<PackageReference Include="minver" Version="4.2.0" PrivateAssets="All" />
4242
</ItemGroup>
4343
</Project>

test/PipelineFactory.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static TestServer CreateServer(Action<IdentityServerAuthenticationOptions
2727
{
2828
app.UseAuthentication();
2929

30-
app.Use((context, next) =>
30+
app.Use(async (context, next) =>
3131
{
3232
var user = context.User;
3333

@@ -40,7 +40,7 @@ public static TestServer CreateServer(Action<IdentityServerAuthenticationOptions
4040
context.Response.StatusCode = 401;
4141
}
4242

43-
return Task.CompletedTask;
43+
await next();
4444
});
4545
}));
4646
}

test/Tests.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="FluentAssertions" Version="5.9.0" />
9-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.0.0" />
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
11-
<PackageReference Include="xunit" Version="2.4.1" />
12-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
8+
<PackageReference Include="FluentAssertions" Version="6.8.0" />
9+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="7.0.0" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
11+
<PackageReference Include="xunit" Version="2.4.2" />
12+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
1313
<PrivateAssets>all</PrivateAssets>
1414
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
1515
</PackageReference>

0 commit comments

Comments
 (0)