Skip to content

Commit

Permalink
fix(deps): update all dependencies (#932)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssedlmaier authored Oct 28, 2024
1 parent eb7490f commit d8a9615
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 14 deletions.
22 changes: 11 additions & 11 deletions src/Zitadel/Zitadel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,29 +17,29 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BouncyCastle.Cryptography" Version="2.2.1"/>
<PackageReference Include="Google.Protobuf" Version="3.25.2"/>
<PackageReference Include="BouncyCastle.Cryptography" Version="2.4.0" />
<PackageReference Include="Google.Protobuf" Version="3.28.2" />
<PackageReference Include="Grpc" Version="2.46.6"/>
<PackageReference Include="Grpc.Net.ClientFactory" Version="2.60.0"/>
<PackageReference Include="Grpc.Net.Common" Version="2.60.0"/>
<PackageReference Include="Grpc.Net.ClientFactory" Version="2.66.0" />
<PackageReference Include="Grpc.Net.Common" Version="2.66.0" />
<PackageReference Include="IdentityModel.AspNetCore.OAuth2Introspection" Version="6.2.0"/>
<PackageReference Include="jose-jwt" Version="4.1.0"/>
<PackageReference Include="jose-jwt" Version="5.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.2.0"/>
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.26"/>
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="6.0.26"/>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.35"/>
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="6.0.35"/>
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.15"/>
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="7.0.15"/>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.20"/>
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="7.0.20"/>
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.1"/>
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.1"/>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.10"/>
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.10"/>
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion tests/Zitadel.Test/Credentials/ServiceAccount.Test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ public async Task Should_Throw_With_Meaningful_Error()
var sa = await ServiceAccount.LoadFromJsonStringAsync(TestData.InvalidServiceAccountJson);
var ex = await Assert.ThrowsAsync<HttpRequestException>(() => sa.AuthenticateAsync(TestData.ApiUrl));

ex.Message.Should().Contain("invalid signature");
ex.Message.Should().Contain("Errors.Internal");
}
}
15 changes: 13 additions & 2 deletions tests/Zitadel.Test/Zitadel.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.1"/>
<PackageReference Include="Moq" Version="4.20.70"/>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.10" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Update="FluentAssertions" Version="6.12.1" />
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Update="xunit" Version="2.9.2" />
<PackageReference Update="xunit.runner.visualstudio" Version="2.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Update="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit d8a9615

Please sign in to comment.