Skip to content

Commit 5497fdc

Browse files
update packages
1 parent 12b3752 commit 5497fdc

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

src/IdentityServer4.AccessTokenValidation.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@
3838
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.0.0" />
3939
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01" PrivateAssets="All" />
4040

41-
<PackageReference Include="minver" Version="2.0.0-rc.1">
42-
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
43-
<PrivateAssets>all</PrivateAssets>
44-
</PackageReference>
41+
<PackageReference Include="minver" Version="2.0.0" PrivateAssets="All" />
4542
</ItemGroup>
4643
</Project>

src/IdentityServerAuthenticationDefaults.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ public class IdentityServerAuthenticationDefaults
1313
/// </summary>
1414
public const string AuthenticationScheme = "Bearer";
1515

16+
/// <summary>
17+
/// Value of the JWT typ header (IdentityServer4 v3+ sets this by default)
18+
/// </summary>
19+
public const string JwtAccessTokenTyp = "at+jwt";
20+
1621
internal const string IntrospectionAuthenticationScheme = "IdentityServerAuthenticationIntrospection";
1722
internal const string JwtAuthenticationScheme = "IdentityServerAuthenticationJwt";
1823
internal const string TokenItemsKey = "idsrv4:tokenvalidation:token";

test/Tests.csproj

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

77
<ItemGroup>
8-
<PackageReference Include="FluentAssertions" Version="5.8.0" />
9-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.0.0-preview9.19424.4" />
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0-preview-20190808-03" />
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" />
1111
<PackageReference Include="xunit" Version="2.4.1" />
1212
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
1313
<PrivateAssets>all</PrivateAssets>

0 commit comments

Comments
 (0)