Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="10.4.0" />
<PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="10.6.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Identity.Web" Version="4.6.0" />
<PackageReference Include="Microsoft.Identity.Web" Version="4.10.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="Testcontainers" Version="4.4.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.6.0" />
<PackageReference Include="Testcontainers" Version="4.12.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,12 @@ namespace HeimdallPower.Api.Client.IntegrationTests.WhenUsingProxy;
[Trait("Category", "ProxyIntegration")]
public class ProxyRouting : IAsyncLifetime, IDisposable
{
private readonly IContainer _proxy = new ContainerBuilder()
.WithImage("ubuntu/squid:latest")
private readonly IContainer _proxy = new ContainerBuilder("ubuntu/squid:latest")
.WithPortBinding(3128, true)
.WithResourceMapping(
"http_port 3128\nacl all src all\nhttp_access allow all\ncache deny all\n"u8.ToArray(),
"/etc/squid/squid.conf")
.WithWaitStrategy(Wait.ForUnixContainer().UntilPortIsAvailable(3128))
.WithWaitStrategy(Wait.ForUnixContainer().UntilExternalTcpPortIsAvailable(3128))
.Build();

private readonly List<string> _envVarsToClean = [];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.6.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
</ItemGroup>
Expand Down
Loading