Skip to content

Commit 0ccc6c6

Browse files
Update dependencies (#684)
1 parent 908a6c5 commit 0ccc6c6

18 files changed

Lines changed: 29 additions & 29 deletions

Engine/Internal/GenHTTP.Engine.Internal.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<ProjectReference Include="..\..\Modules\IO\GenHTTP.Modules.IO.csproj" />
1717

18-
<PackageReference Include="System.IO.Pipelines" Version="9.0.7" />
18+
<PackageReference Include="System.IO.Pipelines" Version="9.0.9" />
1919

2020
</ItemGroup>
2121

Modules/Authentication/GenHTTP.Modules.Authentication.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313

1414
<ProjectReference Include="..\Reflection\GenHTTP.Modules.Reflection.csproj" />
1515

16-
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="8.13.0" />
16+
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="8.14.0" />
1717

18-
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.13.0" />
18+
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.14.0" />
1919

2020
</ItemGroup>
2121

Modules/Basics/GenHTTP.Modules.Basics.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<ProjectReference Include="..\..\API\GenHTTP.Api.csproj" />
1313

14-
<PackageReference Include="System.Text.Json" Version="9.0.7" />
14+
<PackageReference Include="System.Text.Json" Version="9.0.9" />
1515

1616
</ItemGroup>
1717

Modules/Caching/GenHTTP.Modules.Caching.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<ProjectReference Include="..\Basics\GenHTTP.Modules.Basics.csproj" />
1515

16-
<PackageReference Include="System.Text.Json" Version="9.0.7" />
16+
<PackageReference Include="System.Text.Json" Version="9.0.9" />
1717

1818
</ItemGroup>
1919

Modules/DependencyInjection/GenHTTP.Modules.DependencyInjection.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</ItemGroup>
2929

3030
<ItemGroup>
31-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
31+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.9" />
3232
</ItemGroup>
3333

3434
</Project>

Modules/OpenApi/GenHTTP.Modules.OpenApi.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515

1616
<ProjectReference Include="..\Reflection\GenHTTP.Modules.Reflection.csproj" />
1717

18-
<PackageReference Include="NSwag.Core" Version="14.4.0" />
18+
<PackageReference Include="NSwag.Core" Version="14.5.0" />
1919

20-
<PackageReference Include="NSwag.Core.Yaml" Version="14.4.0" />
20+
<PackageReference Include="NSwag.Core.Yaml" Version="14.5.0" />
2121

22-
<PackageReference Include="NSwag.Generation" Version="14.4.0" />
22+
<PackageReference Include="NSwag.Generation" Version="14.5.0" />
2323

2424
</ItemGroup>
2525

Modules/Protobuf/GenHTTP.Modules.Protobuf.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<ProjectReference Include="..\Conversion\GenHTTP.Modules.Conversion.csproj" />
1919

20-
<PackageReference Include="protobuf-net" Version="3.2.52" />
20+
<PackageReference Include="protobuf-net" Version="3.2.56" />
2121

2222
</ItemGroup>
2323

Testing/Acceptance/Adapters/AspNetCore/IntegrationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public async Task TestImplicitServer()
100100
{
101101
await r.Server.DisposeAsync(); // nop
102102

103-
await Assert.ThrowsExceptionAsync<InvalidOperationException>(async () => await r.Server.StartAsync());
103+
await Assert.ThrowsExactlyAsync<InvalidOperationException>(async () => await r.Server.StartAsync());
104104

105105
return r.Server;
106106
}));

Testing/Acceptance/Engine/PooledDictionaryTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public void TestNotFound()
2727
{
2828
using var dict = new PooledDictionary<string, string>();
2929

30-
Assert.ThrowsException<KeyNotFoundException>(() => dict["nope"]);
30+
Assert.ThrowsExactly<KeyNotFoundException>(() => dict["nope"]);
3131
}
3232

3333
[TestMethod]
@@ -82,14 +82,14 @@ public void TestNoRemove()
8282
{
8383
using var dict = new PooledDictionary<string, string>();
8484

85-
Assert.ThrowsException<NotSupportedException>(() => dict.Remove(""));
85+
Assert.ThrowsExactly<NotSupportedException>(() => dict.Remove(""));
8686
}
8787

8888
[TestMethod]
8989
public void TestNoRemove2()
9090
{
9191
using var dict = new PooledDictionary<string, string>();
9292

93-
Assert.ThrowsException<NotSupportedException>(() => dict.Remove(new KeyValuePair<string, string>("", "")));
93+
Assert.ThrowsExactly<NotSupportedException>(() => dict.Remove(new KeyValuePair<string, string>("", "")));
9494
}
9595
}

Testing/Acceptance/Engine/RequestPropertyTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Net;
2+
23
using GenHTTP.Api.Protocol;
34
using GenHTTP.Modules.Functional;
4-
using Microsoft.VisualStudio.TestTools.UnitTesting;
55

66
namespace GenHTTP.Testing.Acceptance.Engine;
77

@@ -23,7 +23,7 @@ public async Task TestRequestProperties(TestEngine engine)
2323

2424
Assert.IsFalse(request.Properties.TryGet<string>("my", out _));
2525

26-
Assert.ThrowsException<KeyNotFoundException>(() => request.Properties["my"]);
26+
Assert.ThrowsExactly<KeyNotFoundException>(() => request.Properties["my"]);
2727

2828
return true;
2929
});

0 commit comments

Comments
 (0)